diff --git a/nuspec/chocolatey/GitReleaseManager.Portable.nuspec b/nuspec/chocolatey/GitReleaseManager.Portable.nuspec
index f75df282..e58df3aa 100644
--- a/nuspec/chocolatey/GitReleaseManager.Portable.nuspec
+++ b/nuspec/chocolatey/GitReleaseManager.Portable.nuspec
@@ -24,5 +24,7 @@
+
+
-
\ No newline at end of file
+
diff --git a/nuspec/chocolatey/LICENSE.TXT b/nuspec/chocolatey/LICENSE.TXT
new file mode 100644
index 00000000..77236cbf
--- /dev/null
+++ b/nuspec/chocolatey/LICENSE.TXT
@@ -0,0 +1,20 @@
+The MIT License (MIT)
+
+Copyright (c) 2015 - Present - GitTools Contributors
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/nuspec/chocolatey/VERIFICATION.TXT b/nuspec/chocolatey/VERIFICATION.TXT
new file mode 100644
index 00000000..12ea00ef
--- /dev/null
+++ b/nuspec/chocolatey/VERIFICATION.TXT
@@ -0,0 +1,14 @@
+VERIFICATION
+Verification is intended to assist the Chocolatey moderators and community in verifying that this package's contents are trustworthy.
+
+This package is owned and updated by the members of the GitTools Organisation on GitHub:
+
+https://github.com/GitTools
+
+The files contained within this Chocolatey Package are the same as those that are hosted on our releases page:
+
+https://github.com/GitTools/GitReleaseManager/releases
+
+If you have any concerns about the contents of this package, please raise am issue here:
+
+https://github.com/GitTools/GitReleaseManager/releases
diff --git a/setup.cake b/setup.cake
index 15134970..bb74ea4c 100644
--- a/setup.cake
+++ b/setup.cake
@@ -2,21 +2,22 @@
Environment.SetVariableNames();
-BuildParameters.SetParameters(context: Context,
+BuildParameters.SetParameters(context: Context,
buildSystem: BuildSystem,
sourceDirectoryPath: "./Source",
title: "GitReleaseManager",
repositoryOwner: "GitTools",
repositoryName: "GitReleaseManager",
appVeyorAccountName: "GitTools",
- testFilePattern: "/**/*.Tests.dll");
+ testFilePattern: "/**/*.Tests.dll",
+ shouldRunGitVersion: true);
BuildParameters.PrintParameters(Context);
ToolSettings.SetToolSettings(context: Context,
- dupFinderExcludePattern: new string[] {
+ dupFinderExcludePattern: new string[] {
BuildParameters.RootDirectoryPath + "/Source/GitReleaseManager.Tests/*.cs" },
testCoverageFilter: "+[*]* -[xunit.*]* -[Cake.Core]* -[Cake.Testing]* -[*.Tests]* -[Octokit]* -[YamlDotNet]*",
testCoverageExcludeByAttribute: "*.ExcludeFromCodeCoverage*",
testCoverageExcludeByFile: "*/*Designer.cs;*/*.g.cs;*/*.g.i.cs");
-Build.Run();
\ No newline at end of file
+Build.Run();