21 lines
803 B
XML
21 lines
803 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<!-- not for choosing a file extension, just designating as executable item -->
|
|
<OutputType>exe</OutputType>
|
|
<PublishSingleFile>true</PublishSingleFile>
|
|
<SelfContained>true</SelfContained>
|
|
<PublishReadyToRun>true</PublishReadyToRun>
|
|
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
|
|
<PublishTrimmed>true</PublishTrimmed>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="ResXResourceReader.NetStandard" Version="1.1.0" />
|
|
<PackageReference Include="System.CommandLine" Version="2.0.0-beta3.22114.1" />
|
|
</ItemGroup>
|
|
|
|
</Project> |