21 lines
886 B
XML
21 lines
886 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Platforms>AnyCPU;x64</Platforms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.PowerShell.Commands.Diagnostics" Version="7.2.10" />
|
|
<PackageReference Include="Microsoft.PowerShell.Commands.Management" Version="7.2.10" />
|
|
<PackageReference Include="Microsoft.PowerShell.Commands.Utility" Version="7.2.10" />
|
|
<PackageReference Include="Microsoft.PowerShell.ConsoleHost" Version="7.2.10" />
|
|
<PackageReference Include="Microsoft.WSMan.Management" Version="7.2.10" />
|
|
<PackageReference Include="System.Management.Automation" Version="7.2.10" />
|
|
</ItemGroup>
|
|
|
|
</Project> |