Browse Source
Merge pull request #11145 from abpframework/fix-cliurls
Cli: Always use production urls
pull/11147/head
Ahmet Çotur
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
9 deletions
-
framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/CliUrls.cs
|
|
|
@ -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/"; |
|
|
|
|