Skip to content

Commit

Permalink
Fix nuget package information (license, readme, changelog...)
Browse files Browse the repository at this point in the history
  • Loading branch information
spouliot committed Feb 8, 2022
1 parent 80db355 commit 0fb1597
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
bin/
obj/
.vscode/
artifacts-dotnet-releaser/
1 change: 1 addition & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- Fix `ArgumentNullException` if no directories are provided from the command-line
- Show the [Gist](https://github.com/spouliot/appcompare/wiki/Gist) documentation if an error occurs while gisting
- Correctly compare directories ending (or not) with a slash
- Fix nuget package information (license, readme, changelog...)

## 2.0.0 (7 Feb 2022)

Expand Down
15 changes: 14 additions & 1 deletion appcompare.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,20 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<NoWarn>1591</NoWarn>
<VersionPrefix>2.0.0</VersionPrefix>
<PackAsTool>true</PackAsTool>
<VersionPrefix>2.0.1</VersionPrefix>
</PropertyGroup>

<PropertyGroup>
<Copyright>Sebastien Pouliot</Copyright>
<NeutralLanguage>en-US</NeutralLanguage>
<Authors>Sebastien Pouliot</Authors>
<PackageTags>tool;comparer;appbundle</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>https://github.com/spouliot/appcompare/blob/master/ChangeLog.md</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/spouliot/appcompare</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
</PropertyGroup>

<ItemGroup>
Expand Down
14 changes: 14 additions & 0 deletions dotnet-releaser.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# configuration file for dotnet-releaser

# Disable default packs - It will only publish NuGet and the Changelog
profile = "custom"

[msbuild]
project = "appcompare.csproj"

[github]
user = "spouliot"
repo = "appcompare"

[changelog]
path = "./ChangeLog.md"

0 comments on commit 0fb1597

Please sign in to comment.