mirror of
https://github.com/DarthAffe/ScreenCapture.NET.git
synced 2025-12-12 13:28:35 +00:00
70 lines
2.5 KiB
XML
70 lines
2.5 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net8.0;net7.0;net6.0</TargetFrameworks>
|
|
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
|
|
<LangVersion>latest</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
<Authors>Darth Affe</Authors>
|
|
<Company>Wyrez</Company>
|
|
<Language>en-US</Language>
|
|
<NeutralLanguage>en-US</NeutralLanguage>
|
|
<Title>ScreenCapture.NET.X11</Title>
|
|
<AssemblyName>ScreenCapture.NET.X11</AssemblyName>
|
|
<AssemblyTitle>ScreenCapture.NET.X11</AssemblyTitle>
|
|
<PackageId>ScreenCapture.NET.X11</PackageId>
|
|
<RootNamespace>ScreenCapture.NET</RootNamespace>
|
|
<Description>libX11 based Screen-Capturing</Description>
|
|
<Summary>libX11 based Screen-Capturing</Summary>
|
|
<Copyright>Copyright © Darth Affe 2023</Copyright>
|
|
<PackageCopyright>Copyright © Darth Affe 2023</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>
|
|
- Added .net8 build-target
|
|
</PackageReleaseNotes>
|
|
|
|
<Version>2.0.3</Version>
|
|
<AssemblyVersion>2.0.3</AssemblyVersion>
|
|
<FileVersion>2.0.3</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>
|
|
<None Include="Resources\icon.png">
|
|
<Pack>True</Pack>
|
|
<PackagePath></PackagePath>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ScreenCapture.NET\ScreenCapture.NET.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|