This repository was archived by the owner on Dec 24, 2022. It is now read-only.
File tree 3 files changed +6
-5
lines changed
3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 1
1
<Project >
2
2
3
3
<PropertyGroup >
4
- <Version >5.13.0 </Version >
4
+ <Version >5.13.1 </Version >
5
5
<Authors >ServiceStack</Authors >
6
6
<Company >ServiceStack, Inc.</Company >
7
7
<Copyright >© 2008-2022 ServiceStack, Inc</Copyright >
Original file line number Diff line number Diff line change @@ -108,14 +108,15 @@ static Env()
108
108
+ PclExport . Instance . PlatformName
109
109
+ ( IsMono ? "/Mono" : "" )
110
110
+ ( IsLinux ? "/Linux" : IsOSX ? "/OSX" : IsUnix ? "/Unix" : IsWindows ? "/Windows" : "/UnknownOS" )
111
- + ( IsIOS ? "/iOS" : IsAndroid ? "/Android" : IsUWP ? "/UWP" : "" ) ;
111
+ + ( IsIOS ? "/iOS" : IsAndroid ? "/Android" : IsUWP ? "/UWP" : "" )
112
+ + ( IsNet6 ? "/net6" : IsNetStandard20 ? "/std2.0" : IsNetFramework ? "netfx" : "" ) ;
112
113
113
114
__releaseDate = new DateTime ( 2001 , 01 , 01 ) ;
114
115
}
115
116
116
117
public static string VersionString { get ; set ; }
117
118
118
- public static decimal ServiceStackVersion = 5.130m ;
119
+ public static decimal ServiceStackVersion = 5.131m ;
119
120
120
121
public static bool IsLinux { get ; set ; }
121
122
@@ -271,7 +272,7 @@ private static bool IsInAppContainer
271
272
break ;
272
273
case 0 : // ERROR_SUCCESS
273
274
case 122 : // ERROR_INSUFFICIENT_BUFFER
274
- // Success is actually insufficent buffer as we're really only looking for
275
+ // Success is actually insufficient buffer as we're really only looking for
275
276
// not NO_APPLICATION and we're not actually giving a buffer here. The
276
277
// API will always return NO_APPLICATION if we're not running under a
277
278
// WinRT process, no matter what size the buffer is.
Original file line number Diff line number Diff line change 1
1
<Project >
2
2
3
3
<PropertyGroup >
4
- <Version >5.13.0 </Version >
4
+ <Version >5.13.1 </Version >
5
5
<LangVersion >latest</LangVersion >
6
6
<GenerateAssemblyVersionAttribute >false</GenerateAssemblyVersionAttribute >
7
7
</PropertyGroup >
You can’t perform that action at this time.
0 commit comments