mirror of
https://github.com/KingKDot/PowerCrypt
synced 2026-06-06 16:04:30 +00:00
20 lines
598 B
XML
20 lines
598 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<PublishAot>True</PublishAot>
|
|
<PublishTrimmed>true</PublishTrimmed>
|
|
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
|
|
<InvariantGlobalization>true</InvariantGlobalization>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Spectre.Console" Version="0.49.1" />
|
|
<PackageReference Include="System.Management.Automation" Version="7.4.6" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|