mirror of
https://github.com/github/codeql.git
synced 2026-03-22 23:49:43 +01:00
28 lines
801 B
XML
28 lines
801 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp2.0</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="15.8.166" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Semmle.Util\Semmle.Util.csproj" />
|
|
<ProjectReference Include="..\Semmle.Extraction.CSharp\Semmle.Extraction.CSharp.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|