From 55b53dd85517e846851f8ef0fa072aa619f562e5 Mon Sep 17 00:00:00 2001 From: Rob Reynolds Date: Thu, 22 Jan 2015 00:27:53 -0600 Subject: [PATCH] (GH-14) add source runner to applicationparameters --- src/chocolatey/infrastructure.app/ApplicationParameters.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/chocolatey/infrastructure.app/ApplicationParameters.cs b/src/chocolatey/infrastructure.app/ApplicationParameters.cs index 984266a7b8..e87dae0ab1 100644 --- a/src/chocolatey/infrastructure.app/ApplicationParameters.cs +++ b/src/chocolatey/infrastructure.app/ApplicationParameters.cs @@ -46,6 +46,7 @@ public static class ApplicationParameters public static string ShimsLocation = _fileSystem.combine_paths(InstallLocation, "bin"); public static string ChocolateyPackageInfoStoreLocation = _fileSystem.combine_paths(InstallLocation, ".chocolatey"); public static readonly string ChocolateyCommunityFeedPushSource = "https://chocolatey.org/"; + public static readonly string ChocolateyCommunityFeedSource = "https://chocolatey.org/api/v2/"; public static readonly string UserAgent = "Chocolatey Command Line"; public static readonly string RegistryValueInstallLocation = "InstallLocation"; @@ -73,6 +74,11 @@ public static class Messages public static readonly string NugetEventActionHeader = "Nuget called an event"; } + public static class SourceRunner + { + public static readonly string WebPiPackage = "webpicmd"; + } + public static class OutputParser { //todo: This becomes the WebPI parsing stuff instead