1234567891011121314151617181920212223242526272829303132333435 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net7.0-windows</TargetFramework>
- <Nullable>enable</Nullable>
- <UseWPF>true</UseWPF>
- <WarningsAsErrors>Nullable</WarningsAsErrors>
- <Configurations>Debug;Release;Steam;DevRelease</Configurations>
- <Platforms>AnyCPU;x64;x86</Platforms>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Steam|AnyCPU'">
- <Optimize>True</Optimize>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Steam|x64'">
- <Optimize>True</Optimize>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Steam|x86'">
- <Optimize>True</Optimize>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\ChunkyImageLib\ChunkyImageLib.csproj" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Update="StyleCop.Analyzers" Version="1.2.0-beta.435">
- <PrivateAssets>all</PrivateAssets>
- <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
- </PackageReference>
- </ItemGroup>
- </Project>
|