mirror of
https://github.com/github/codeql.git
synced 2025-12-16 08:43:11 +01:00
17 lines
412 B
XML
17 lines
412 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="Avalara.AvaTax" Version="23.11.0" />
|
|
</ItemGroup>
|
|
</Project>
|