12345678910111213141516171819202122232425262728293031323334353637383940 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net9.0</TargetFramework>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
- <Platforms>x64;arm64</Platforms>
- <LangVersion>preview</LangVersion>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <IsAotCompatible>True</IsAotCompatible>
- <IsTrimmable>True</IsTrimmable>
- <AllowUnsafeBlocks>False</AllowUnsafeBlocks>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <IsAotCompatible>True</IsAotCompatible>
- <IsTrimmable>True</IsTrimmable>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <DebugType>none</DebugType>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Platform)' == 'x64'">
- <PlatformTarget>x64</PlatformTarget>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Platform)' == 'arm64'">
- <PlatformTarget>ARM64</PlatformTarget>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Magick.NET-Q8-OpenMP-x64" Version="14.3.0" />
- <PackageReference Include="ReactiveUI" Version="20.2.45" />
- <PackageReference Include="SharpCompress" Version="0.39.0" />
- <PackageReference Include="ZString" Version="2.6.0" />
- </ItemGroup>
- <ItemGroup>
- <None Update="Config\Languages\*.json">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- <ItemGroup>
- <InternalsVisibleTo Include="PicView.Tests" />
- </ItemGroup>
- </Project>
|