mirror of
https://github.com/github/codeql.git
synced 2025-12-16 08:43:11 +01:00
13 lines
308 B
XML
13 lines
308 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<Target Name="DeleteBinObjFolders" BeforeTargets="Clean">
|
|
<RemoveDir Directories=".\bin" />
|
|
<RemoveDir Directories=".\obj" />
|
|
</Target>
|
|
</Project>
|