mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2025-05-06 03:32:57 +00:00
24 lines
551 B
XML
24 lines
551 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
|
|
<PackAsTool>true</PackAsTool>
|
|
<ToolCommandName>esiur</ToolCommandName>
|
|
<PackageOutputPath>./nupkg</PackageOutputPath>
|
|
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="CommandLineParser" Version="2.9.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Esiur\Esiur.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|