-
Notifications
You must be signed in to change notification settings - Fork 8
/
Directory.Build.props
28 lines (23 loc) · 1.07 KB
/
Directory.Build.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<Project>
<PropertyGroup>
<LegalAuthor>Jarl Gullberg</LegalAuthor>
<LegalEmail>[email protected]</LegalEmail>
</PropertyGroup>
<!-- NuGet-related properties -->
<PropertyGroup>
<RepositoryUrl>https://github.com/Remora/Remora.Commands</RepositoryUrl>
<RepositoryBranch>main</RepositoryBranch>
<PackageOutputPath>$(MSBuildThisFileDirectory)/nuget</PackageOutputPath>
<PackageProjectUrl>https://github.com/Remora/Remora.Commands</PackageProjectUrl>
<PackageTags>remora;commands;parsing;span;performance;getopts;command-line;</PackageTags>
<BaseDescription>
Remora.Commands is a platform-agnostic command library that handles parsing and dispatch of typical *nix getopts-style command invocations.
</BaseDescription>
</PropertyGroup>
<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Remora.Results.Analyzers" PrivateAssets="all" />
</ItemGroup>
</Project>