-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathScreenCapture.NET.SCK.csproj
More file actions
63 lines (55 loc) · 2.38 KB
/
ScreenCapture.NET.SCK.csproj
File metadata and controls
63 lines (55 loc) · 2.38 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0-macos</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Authors>Kaitoukid93</Authors>
<Company>Ambino</Company>
<Language>en-US</Language>
<NeutralLanguage>en-US</NeutralLanguage>
<Title>ScreenCapture.NET.SCK</Title>
<AssemblyName>ScreenCapture.NET.SCK</AssemblyName>
<AssemblyTitle>ScreenCapture.NET.SCK</AssemblyTitle>
<PackageId>ScreenCapture.NET.SCK</PackageId>
<RootNamespace>ScreenCapture.NET</RootNamespace>
<Description>Screen Capture Kit based Screen-Capturing</Description>
<Summary>Screen Capture Kit based Screen-Capturing</Summary>
<Copyright>Copyright © Le Hoang Anh 2025</Copyright>
<PackageCopyright>Copyright © Le Hoang Anh 2025</PackageCopyright>
<!-- <PackageIcon>icon.png</PackageIcon> -->
<PackageProjectUrl>https://github.com/DarthAffe/ScreenCapture.NET</PackageProjectUrl>
<PackageLicenseExpression>LGPL-2.1-only</PackageLicenseExpression>
<RepositoryType>Github</RepositoryType>
<RepositoryUrl>https://github.com/DarthAffe/ScreenCapture.NET</RepositoryUrl>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageReleaseNotes>
</PackageReleaseNotes>
<Version>3.0.0</Version>
<AssemblyVersion>3.0.0</AssemblyVersion>
<FileVersion>3.0.0</FileVersion>
<OutputPath>..\bin\</OutputPath>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<IncludeSource>True</IncludeSource>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
<DefineConstants>$(DefineConstants);TRACE;DEBUG</DefineConstants>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<DebugType>portable</DebugType>
<Optimize>true</Optimize>
<NoWarn>$(NoWarn);CS1591;CS1572;CS1573</NoWarn>
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="../ScreenCapture.NET/ScreenCapture.NET.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Serilog" Version="4.0.1" />
</ItemGroup>
</Project>