Skip to content

Commit cf85b11

Browse files
committed
Change the way of initializing static strings
1 parent f5a9126 commit cf85b11

File tree

1 file changed

+3
-3
lines changed
  • framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli

1 file changed

+3
-3
lines changed

framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/CliUrls.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ namespace Volo.Abp.Cli;
55

66
public static class CliUrls
77
{
8-
public static string WwwAbpIo = WwwAbpIoProduction;
9-
public static string AccountAbpIo = AccountAbpIoProduction;
10-
public static string NuGetRootPath = NuGetRootPathProduction;
8+
public static string WwwAbpIo => WwwAbpIoProduction;
9+
public static string AccountAbpIo => AccountAbpIoProduction;
10+
public static string NuGetRootPath => NuGetRootPathProduction;
1111
public static string LatestVersionCheckFullPath = "https://raw.githubusercontent.com/abpframework/abp/dev/latest-versions.json";
1212

1313
public static string WwwAbpIoProduction = "https://abp.io/";

0 commit comments

Comments
 (0)