Browse Source
Change the way of initializing static strings
pull/22861/head
maliming
9 months ago
No known key found for this signature in database
GPG Key ID: A646B9CB645ECEA4
1 changed files with
3 additions and
3 deletions
-
framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/CliUrls.cs
|
|
|
@ -5,9 +5,9 @@ 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 => WwwAbpIoProduction; |
|
|
|
public static string AccountAbpIo => AccountAbpIoProduction; |
|
|
|
public static string NuGetRootPath => NuGetRootPathProduction; |
|
|
|
public static string LatestVersionCheckFullPath = "https://raw.githubusercontent.com/abpframework/abp/dev/latest-versions.json"; |
|
|
|
|
|
|
|
public static string WwwAbpIoProduction = "https://abp.io/"; |
|
|
|
|