PS: Copy extractor and various scripts from internal repo to public repo.

This commit is contained in:
Mathias Vorreiter Pedersen
2024-08-13 19:56:20 +01:00
parent d4c0c4059d
commit 58fc649657
192 changed files with 15205 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.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.3.3" />
</ItemGroup>
</Project>