-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathThatCapture.csproj
More file actions
36 lines (31 loc) · 1.43 KB
/
Copy pathThatCapture.csproj
File metadata and controls
36 lines (31 loc) · 1.43 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net9.0;net9.0-windows;net10.0;net10.0-windows</TargetFrameworks>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<PackageId>ThatCapture</PackageId>
<PackageIcon>icon.png</PackageIcon>
<Version>1.0.3</Version>
<Authors>Slava.In</Authors>
<Description>Cross-platform screen capture library for .NET. Supports Windows, macOS, Linux X11 and Linux Wayland.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/Slava-Ini/ThatCapture</RepositoryUrl>
<PackageTags>screen;capture;screenshot;windows;macos;linux;wayland;x11</PackageTags>
</PropertyGroup>
<ItemGroup Condition="!$(TargetFramework.Contains('-windows'))">
<Compile Remove="Platforms/WindowsScreenCapture.cs" />
</ItemGroup>
<ItemGroup>
<Compile Remove="scripts/**/*.cs" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
<None Include="icon.png" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.12" />
<PackageReference Include="System.Drawing.Common" Version="10.0.5" Condition="$(TargetFramework.Contains('-windows'))" />
<PackageReference Include="Tmds.DBus.Protocol" Version="0.92.0" />
</ItemGroup>
</Project>