ArgumentsReflector.csproj 752 B

12345678910111213141516171819202122
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>$(ToolsetTargetFramework)</TargetFramework>
  4. <OutputType>Exe</OutputType>
  5. </PropertyGroup>
  6. <!-- Global usings removal -->
  7. <!-- See: https://learn.microsoft.com/dotnet/core/project-sdk/msbuild-props#using -->
  8. <ItemGroup>
  9. <Using Remove="FluentAssertions" />
  10. <Using Remove="Microsoft.NET.TestFramework" />
  11. <Using Remove="Microsoft.NET.TestFramework.Assertions" />
  12. <Using Remove="Microsoft.NET.TestFramework.Commands" />
  13. <Using Remove="Microsoft.NET.TestFramework.ProjectConstruction" />
  14. <Using Remove="Microsoft.NET.TestFramework.Utilities" />
  15. <Using Remove="Xunit" />
  16. <Using Remove="Xunit.Abstractions" />
  17. </ItemGroup>
  18. </Project>