| 12345678910111213141516171819202122232425262728293031 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net6.0</TargetFramework>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
- <IsPackable>false</IsPackable>
- <RootNamespace>Quadarax.Application.QLiberace.Common.Tests</RootNamespace>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.1" />
- <PackageReference Include="NUnit" Version="3.13.3" />
- <PackageReference Include="NUnit3TestAdapter" Version="4.2.1" />
- <PackageReference Include="NUnit.Analyzers" Version="3.3.0" />
- <PackageReference Include="coverlet.collector" Version="3.1.2" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\common\qdr.app.qlbrc.common\qdr.app.qlbrc.common.csproj" />
- </ItemGroup>
- <ItemGroup>
- <None Update="qlbrc.test.json">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- </Project>
|