mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
35 lines
1.3 KiB
XML
35 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
|
<AssemblyName>Semmle.Extraction.CSharp.Standalone</AssemblyName>
|
|
<RootNamespace>Semmle.Extraction.CSharp.Standalone</RootNamespace>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
|
<WarningsAsErrors />
|
|
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Semmle.Extraction.CSharp\Semmle.Extraction.CSharp.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Properties\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Build" Version="16.0.461">
|
|
<ExcludeAssets></ExcludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="3.4.0" />
|
|
<PackageReference Include="Microsoft.Win32.Primitives" Version="4.3.0" />
|
|
<PackageReference Include="System.Net.Primitives" Version="4.3.1" />
|
|
<PackageReference Include="System.Security.Principal" Version="4.3.0" />
|
|
<PackageReference Include="System.Threading.ThreadPool" Version="4.3.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|