DistinctCharsTest.csproj 755 B

123456789101112131415161718192021222324
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>enable</Nullable>
  6. <IsPackable>false</IsPackable>
  7. <IsTestProject>true</IsTestProject>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0" />
  11. <PackageReference Include="MSTest.TestAdapter" Version="2.2.10" />
  12. <PackageReference Include="MSTest.TestFramework" Version="2.2.10" />
  13. <PackageReference Include="coverlet.collector" Version="3.2.0" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <ProjectReference Include="..\DistinctChars\DistinctChars.csproj" />
  17. <ProjectReference Include="..\Z3\Z3.csproj" />
  18. </ItemGroup>
  19. </Project>