-
Notifications
You must be signed in to change notification settings - Fork 7
/
CustomUsage.csproj
24 lines (21 loc) · 1003 Bytes
/
CustomUsage.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Description>Command line parsing sample for Ookii.CommandLine, using customized usage help.</Description>
<Copyright>Copyright (c) Sven Groot (Ookii.org)
This is sample code, so you can use it freely.</Copyright>
</PropertyGroup>
<!--
These two project references are for the library and the source generator. When using NuGet
instead, the <PackageReference> for Ookii.CommandLine will replace both of these.
-->
<ItemGroup>
<ProjectReference Include="..\..\Ookii.CommandLine\Ookii.CommandLine.csproj" />
<ProjectReference Include="..\..\Ookii.CommandLine.Generator\Ookii.CommandLine.Generator.csproj"
OutputItemType="Analyzer"
ReferenceOutputAssembly="false" />
</ItemGroup>
</Project>