mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
24 lines
793 B
XML
24 lines
793 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<AssemblyName>Semmle.Extraction.PowerShell</AssemblyName>
|
|
<RootNamespace>Semmle.Extraction.PowerShell</RootNamespace>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
|
|
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
|
|
<Nullable>enable</Nullable>
|
|
<LangVersion>10.0</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Semmle.Extraction\Semmle.Extraction.csproj" />
|
|
<ProjectReference Include="..\Semmle.Util\Semmle.Util.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Management.Automation" Version="7.5.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|