diff --git a/src/Publisher/.gitignore b/src/Publisher/.gitignore
index 029efc9..245536f 100644
--- a/src/Publisher/.gitignore
+++ b/src/Publisher/.gitignore
@@ -24,6 +24,7 @@ bld/
[Oo]bj/
[Ll]og/
.app/
+Output/
# Visual Studio 2015 cache/options directory
.vs/
diff --git a/src/Publisher/CommandsSpecific/Chocolatey/ChocolateyCommand.cs b/src/Publisher/CommandsSpecific/Chocolatey/ChocolateyCommand.cs
index e554c5a..1df4f1b 100644
--- a/src/Publisher/CommandsSpecific/Chocolatey/ChocolateyCommand.cs
+++ b/src/Publisher/CommandsSpecific/Chocolatey/ChocolateyCommand.cs
@@ -16,7 +16,7 @@ private DirectoryInfo ToolsPath
{
get
{
- return new DirectoryInfo(Path.Combine(PathCommand.RootDirectory, "CommandsSpecifics", "Chocolatey", "Nuspec", "tools"));
+ return new DirectoryInfo(Path.Combine(PathCommand.RootDirectory, "CommandsSpecific", "Chocolatey", "Nuspec", "tools"));
}
}
@@ -87,7 +87,7 @@ public string ChocolateyProjectUrl
var appInfo = AppInfo.GetAppInfo();
if (string.IsNullOrWhiteSpace(appInfo.ChocolateyProjectUrl))
{
- appInfo.ChocolateyProjectUrl = App.Console.Read("Chocolatey.ProjectUrl: ");
+ appInfo.ChocolateyProjectUrl = App.Console.Read("Chocolatey.ProjectUrl (use '{version}' placeholder): ");
AppInfo.SaveAppInfo(appInfo);
}
return appInfo.ChocolateyProjectUrl;
diff --git a/src/Publisher/Publisher.csproj b/src/Publisher/Publisher.csproj
index 50c7959..1509f65 100644
--- a/src/Publisher/Publisher.csproj
+++ b/src/Publisher/Publisher.csproj
@@ -113,8 +113,10 @@
+
+