mirror of
https://github.com/github/codeql.git
synced 2025-12-21 03:06:31 +01:00
We are no longer bound to the platform-specific directories, so simplify the test organization. If you don't want this change, just skip merging this PR. It's purely optional. This is not very invasive for C#, I'm just dropping the `only` suffix. You could also merge all the platform-specific test dirs, or all test dirs into the top-level directory. I'll leave that up to you.
22 lines
687 B
XML
22 lines
687 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
|
|
<PackageReference Include="NUnit" Version="3.14.0" />
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
|
|
<PackageReference Include="coverlet.collector" Version="6.0.0" />
|
|
</ItemGroup>
|
|
|
|
<Target Name="DeleteBinObjFolders" BeforeTargets="Clean">
|
|
<RemoveDir Directories=".\bin" />
|
|
<RemoveDir Directories=".\obj" />
|
|
<RemoveDir Directories=".\myout" />
|
|
</Target>
|
|
</Project>
|