16 lines
437 B
XML
16 lines
437 B
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|
|||
|
|
<PropertyGroup>
|
|||
|
|
<OutputType>Exe</OutputType>
|
|||
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
|
<Nullable>enable</Nullable>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.5.1" />
|
|||
|
|
<PackageReference Include="System.Management.Automation" Version="7.4.12" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
</Project>
|