|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | | - |
3 | 2 | <PropertyGroup> |
4 | 3 | <TargetFramework>net5.0</TargetFramework> |
| 4 | + <LangVersion>latest</LangVersion> |
5 | 5 | <Nullable>enable</Nullable> |
6 | 6 | <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
| 7 | + |
| 8 | + <Authors>Darth Affe</Authors> |
| 9 | + <Company>Wyrez</Company> |
| 10 | + <Language>en-US</Language> |
| 11 | + <NeutralLanguage>en-US</NeutralLanguage> |
| 12 | + <Title>ScreenCapture</Title> |
| 13 | + <AssemblyName>ScreenCapture</AssemblyName> |
| 14 | + <AssemblyTitle>ScreenCapture</AssemblyTitle> |
| 15 | + <PackageId>ScreenCapture</PackageId> |
| 16 | + <RootNamespace>ScreenCapture</RootNamespace> |
| 17 | + <Description>Vortice based Screen-Capturing</Description> |
| 18 | + <Summary>Vortice based Screen-Capturing using Desktop Duplication</Summary> |
| 19 | + <Copyright>Copyright © Darth Affe 2021</Copyright> |
| 20 | + <PackageCopyright>Copyright © Darth Affe 2021</PackageCopyright> |
| 21 | + <PackageIcon>icon.png</PackageIcon> |
| 22 | + <PackageProjectUrl>https://github.com/DarthAffe/ScreenCapture</PackageProjectUrl> |
| 23 | + <PackageLicenseUrl>LGPL-2.1-only</PackageLicenseUrl> |
| 24 | + <RepositoryType>Github</RepositoryType> |
| 25 | + <RepositoryUrl>https://github.com/DarthAffe/ScreenCapture</RepositoryUrl> |
| 26 | + <GeneratePackageOnBuild>True</GeneratePackageOnBuild> |
| 27 | + |
| 28 | + <PackageReleaseNotes>Initial release</PackageReleaseNotes> |
| 29 | + |
| 30 | + <Version>1.0.0</Version> |
| 31 | + <AssemblyVersion>1.0.0</AssemblyVersion> |
| 32 | + <FileVersion>1.0.0</FileVersion> |
| 33 | + |
| 34 | + <OutputPath>..\bin\</OutputPath> |
| 35 | + <GenerateDocumentationFile>true</GenerateDocumentationFile> |
| 36 | + <IncludeSource>True</IncludeSource> |
| 37 | + <IncludeSymbols>True</IncludeSymbols> |
7 | 38 | </PropertyGroup> |
8 | 39 |
|
9 | 40 | <PropertyGroup Condition="'$(Configuration)'=='Debug'"> |
|
21 | 52 | </PropertyGroup> |
22 | 53 |
|
23 | 54 | <ItemGroup> |
24 | | - <PackageReference Include="Vortice.Direct3D11" Version="1.9.41" /> |
| 55 | + <None Include="Resources\icon.png"> |
| 56 | + <Pack>True</Pack> |
| 57 | + <PackagePath></PackagePath> |
| 58 | + </None> |
| 59 | + </ItemGroup> |
| 60 | + |
| 61 | + <ItemGroup> |
| 62 | + <PackageReference Include="Vortice.Direct3D11" Version="1.9.65" /> |
25 | 63 | </ItemGroup> |
26 | 64 |
|
27 | 65 | </Project> |
0 commit comments