mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
17 lines
425 B
XML
17 lines
425 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFrameworks>net10.0</TargetFrameworks>
|
|
</PropertyGroup>
|
|
|
|
<Target Name="DeleteBinObjFolders" BeforeTargets="Clean">
|
|
<RemoveDir Directories=".\bin" />
|
|
<RemoveDir Directories=".\obj" />
|
|
</Target>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="8.0.0" />
|
|
</ItemGroup>
|
|
</Project>
|