1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net5.0-windows</TargetFramework>
- <IsPackable>false</IsPackable>
- <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
- <Platforms>AnyCPU;x64;x86</Platforms>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <DebugType>full</DebugType>
- <DebugSymbols>true</DebugSymbols>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
- <DebugType>full</DebugType>
- <DebugSymbols>true</DebugSymbols>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
- <DebugType>full</DebugType>
- <DebugSymbols>true</DebugSymbols>
- </PropertyGroup>
- <ItemGroup>
- <None Remove="ModelsTests\IO\CorruptedFile.xaml" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="Codecov" Version="1.12.4" />
- <PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="3.3.2">
- <PrivateAssets>all</PrivateAssets>
- <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
- </PackageReference>
- <PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="5.0.1" />
- <PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="5.0.0" />
- <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
- <PackageReference Include="Moq" Version="4.16.1" />
- <PackageReference Include="OpenCover" Version="4.7.922" />
- <PackageReference Include="xunit" Version="2.4.1" />
- <PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
- <PrivateAssets>all</PrivateAssets>
- <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
- </PackageReference>
- <PackageReference Include="Xunit.StaFact" Version="1.0.37" />
- </ItemGroup>
- <ItemGroup>
- <Page Include="ModelsTests\IO\CorruptedFile.xaml">
- <Generator>MSBuild:Compile</Generator>
- </Page>
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\PixiEditor.UpdateModule\PixiEditor.UpdateModule.csproj" />
- <ProjectReference Include="..\PixiEditor\PixiEditor.csproj" />
- </ItemGroup>
- </Project>
|