Skip to content

Commit d171f94

Browse files
committed
(GH-11) Basic nuspec file for DLL
- So that we can ship both a Chocolatey Package and Nuget package, let's have a nuspec file for the DLL and a nuspec file for the exe.
1 parent 15662ea commit d171f94

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

Packaging/nuget/GitHubReleaseManager.Cli.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<version>$version$</version>
77
<authors>gep13</authors>
88
<owners>gep13</owners>
9-
<projectUrl>https://github.com/Particular/GitHubReleaseNotes</projectUrl>
9+
<projectUrl></projectUrl>
1010
<description>Create release notes in markdown given a GH milestone</description>
1111
<tags>github release notes</tags>
1212
</metadata>
1313
<files>
14-
<file src="..\..\BuildArtifacts\*.exe" target="tools" />
14+
<file src="..\..\BuildArtifacts\GitHubReleaseManager.exe" target="tools" />
1515
</files>
1616
</package>
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<package xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3+
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
4+
<id>GitHubReleaseManager</id>
5+
<title>Generates release notes</title>
6+
<version>$version$</version>
7+
<authors>gep13</authors>
8+
<owners>gep13</owners>
9+
<projectUrl></projectUrl>
10+
<description>Create release notes in markdown given a GH milestone</description>
11+
<tags>github release notes</tags>
12+
</metadata>
13+
<files>
14+
<file src="..\..\BuildArtifacts\GitHubReleaseManager.dll" target="tools" />
15+
</files>
16+
</package>

0 commit comments

Comments
 (0)