mirror of
https://github.com/github/codeql.git
synced 2025-12-16 08:43:11 +01:00
20 lines
649 B
XML
20 lines
649 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFrameworks>net10.0;net6.0;netcoreapp3.1;netstandard2.0;net48</TargetFrameworks>
|
|
</PropertyGroup>
|
|
|
|
<Target Name="DeleteBinObjFolders" BeforeTargets="Clean">
|
|
<RemoveDir Directories=".\bin" />
|
|
<RemoveDir Directories=".\obj" />
|
|
</Target>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="8.0.0" />
|
|
<!-- The below causes DB-CHECK errors: -->
|
|
<!-- <PackageReference Include="NUnit" Version="3.10.1" /> -->
|
|
<PackageReference Include="Avalara.AvaTax" Version="23.11.0" />
|
|
</ItemGroup>
|
|
</Project>
|