Cli: Always use production urls

pull/11145/head
Yunus Emre Kalkan 4 years ago
parent 8e5b2e05a1
commit 3da384c7ee

@ -4,15 +4,9 @@ namespace Volo.Abp.Cli;
public static class CliUrls
{
#if DEBUG
public const string WwwAbpIo = WwwAbpIoDevelopment;
public const string AccountAbpIo = AccountAbpIoDevelopment;
public const string NuGetRootPath = NuGetRootPathDevelopment;
#else
public const string WwwAbpIo = WwwAbpIoProduction;
public const string AccountAbpIo = AccountAbpIoProduction;
public const string NuGetRootPath = NuGetRootPathProduction;
#endif
public const string WwwAbpIo = WwwAbpIoProduction;
public const string AccountAbpIo = AccountAbpIoProduction;
public const string NuGetRootPath = NuGetRootPathProduction;
public const string WwwAbpIoProduction = "https://abp.io/";
public const string AccountAbpIoProduction = "https://account.abp.io/";

Loading…
Cancel
Save