-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWindowCapture.csproj
More file actions
32 lines (27 loc) · 1.13 KB
/
WindowCapture.csproj
File metadata and controls
32 lines (27 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<SupportedOSPlatform>windows</SupportedOSPlatform>
<NoWarn>CA1416</NoWarn>
<!-- dotnet tool packaging -->
<PackAsTool>true</PackAsTool>
<ToolCommandName>windowcapture</ToolCommandName>
<PackageId>WindowCapture</PackageId>
<Version>1.0.0</Version>
<Description>Captures screenshots of windows and browser tabs without bringing them to focus</Description>
<Authors>Hymma</Authors>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/Hymma/WindowCapture</PackageProjectUrl>
<RepositoryUrl>https://github.com/Hymma/WindowCapture</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.WindowsDesktop.App.WindowsForms" />
</ItemGroup>
</Project>