Browse Source
Refactor properties in CliUrls to use explicit getters and setters
pull/22861/head
maliming
1 year ago
No known key found for this signature in database
GPG Key ID: A646B9CB645ECEA4
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/"; |
|
|
|
|