📄 Colors/tests/Mosaic.Colors.Tests.csproj
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<Project Sdk="Microsoft.NET.Sdk">
  <PropertyGroup>
    <RootNamespace>Mosaic.Colors.Tests</RootNamespace>
    <AssemblyName>Mosaic.Colors.Tests</AssemblyName>
    <EnableMSTestRunner>true</EnableMSTestRunner>
    <OutputType>Exe</OutputType>
    <TestingPlatformDotnetTestSupport>true</TestingPlatformDotnetTestSupport>
    <TestingPlatformShowTestsFailure>true</TestingPlatformShowTestsFailure>
  </PropertyGroup>
  <ItemGroup>
    <ProjectReference Include="..\src\Mosaic.Colors.csproj" />
  </ItemGroup>
  <ItemGroup>
    <PackageReference Include="MSTest" />
    <PackageReference Include="Shouldly" />
  </ItemGroup>
</Project>