mirror of
https://github.com/github/codeql.git
synced 2026-03-30 20:28:15 +02:00
28 lines
828 B
XML
28 lines
828 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
|
<AssemblyName>Semmle.Autobuild</AssemblyName>
|
|
<RootNamespace>Semmle.Autobuild</RootNamespace>
|
|
<ApplicationIcon />
|
|
<OutputType>Exe</OutputType>
|
|
<StartupObject />
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Properties\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Build" Version="16.0.461" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\extractor\Semmle.Util\Semmle.Util.csproj" />
|
|
<ProjectReference Include="..\..\extractor\Semmle.Extraction.CSharp\Semmle.Extraction.CSharp.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|