mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
31 lines
1.0 KiB
XML
31 lines
1.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<AssemblyName>Semmle.Autobuild.CSharp</AssemblyName>
|
|
<RootNamespace>Semmle.Autobuild.CSharp</RootNamespace>
|
|
<ApplicationIcon />
|
|
<OutputType>Exe</OutputType>
|
|
<StartupObject />
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
|
|
<Nullable>enable</Nullable>
|
|
</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" />
|
|
<ProjectReference Include="..\Semmle.Autobuild.Shared\Semmle.Autobuild.Shared.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|