cs-util-com/cscore

View on GitHub
CsCore/xUnitTests/xUnitTests.csproj

Summary

Maintainability
Test Coverage
<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <TargetFramework>net6.0</TargetFramework>
    <LangVersion>8.0</LangVersion>
    <IsPackable>false</IsPackable>
  </PropertyGroup>

  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  </PropertyGroup>

  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  </PropertyGroup>

  <ItemGroup>
    <Compile Remove="src\Plugins\CsCoreXUnitTests\com\csutil\tests\logging\http\**" />
    <EmbeddedResource Remove="src\Plugins\CsCoreXUnitTests\com\csutil\tests\logging\http\**" />
    <None Remove="src\Plugins\CsCoreXUnitTests\com\csutil\tests\logging\http\**" />
    <Compile Remove="StrykerOutput\**" />
    <EmbeddedResource Remove="StrykerOutput\**" />
    <None Remove="StrykerOutput\**" />
  </ItemGroup>

  <ItemGroup>
    <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" />
    <PackageReference Include="xunit" Version="2.4.1" />
    <PackageReference Include="xunit.runner.visualstudio" Version="2.4.5" />
    <DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />
  </ItemGroup>

  <ItemGroup>
    <ProjectReference Include="..\PlainNetClassLib\PlainNetClassLib.csproj" />
  </ItemGroup>

  <!-- Hide all .meta files from the pure C# project -->
  <ItemGroup>
    <None Remove="**\*.meta" />
  </ItemGroup>

</Project>