Browse Source
Merge pull request #22861 from abpframework/CliUrls
Change the way of initializing static strings
pull/22862/head
Engincan VESKE
9 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
18 additions and
3 deletions
-
framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/CliUrls.cs
|
|
|
@ -5,9 +5,24 @@ namespace Volo.Abp.Cli; |
|
|
|
|
|
|
|
public static class CliUrls |
|
|
|
{ |
|
|
|
public static string WwwAbpIo = WwwAbpIoProduction; |
|
|
|
public static string AccountAbpIo = AccountAbpIoProduction; |
|
|
|
public static string NuGetRootPath = NuGetRootPathProduction; |
|
|
|
public static string WwwAbpIo |
|
|
|
{ |
|
|
|
get => WwwAbpIoProduction; |
|
|
|
set => WwwAbpIoProduction = value; |
|
|
|
} |
|
|
|
|
|
|
|
public static string AccountAbpIo |
|
|
|
{ |
|
|
|
get => AccountAbpIoProduction; |
|
|
|
set => AccountAbpIoProduction = value; |
|
|
|
} |
|
|
|
|
|
|
|
public static string NuGetRootPath |
|
|
|
{ |
|
|
|
get => NuGetRootPathProduction; |
|
|
|
set => NuGetRootPathProduction = value; |
|
|
|
} |
|
|
|
|
|
|
|
public static string LatestVersionCheckFullPath = "https://raw.githubusercontent.com/abpframework/abp/dev/latest-versions.json"; |
|
|
|
|
|
|
|
public static string WwwAbpIoProduction = "https://abp.io/"; |
|
|
|
|