This repository was archived by the owner on Dec 24, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed
Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 11<Project >
22
33 <PropertyGroup >
4- <Version >5.13.0 </Version >
4+ <Version >5.13.1 </Version >
55 <Authors >ServiceStack</Authors >
66 <Company >ServiceStack, Inc.</Company >
77 <Copyright >© 2008-2022 ServiceStack, Inc</Copyright >
Original file line number Diff line number Diff line change @@ -108,14 +108,15 @@ static Env()
108108 + PclExport . Instance . PlatformName
109109 + ( IsMono ? "/Mono" : "" )
110110 + ( 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" : "" ) ;
112113
113114 __releaseDate = new DateTime ( 2001 , 01 , 01 ) ;
114115 }
115116
116117 public static string VersionString { get ; set ; }
117118
118- public static decimal ServiceStackVersion = 5.130m ;
119+ public static decimal ServiceStackVersion = 5.131m ;
119120
120121 public static bool IsLinux { get ; set ; }
121122
@@ -271,7 +272,7 @@ private static bool IsInAppContainer
271272 break ;
272273 case 0 : // ERROR_SUCCESS
273274 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
275276 // not NO_APPLICATION and we're not actually giving a buffer here. The
276277 // API will always return NO_APPLICATION if we're not running under a
277278 // WinRT process, no matter what size the buffer is.
Original file line number Diff line number Diff line change 11<Project >
22
33 <PropertyGroup >
4- <Version >5.13.0 </Version >
4+ <Version >5.13.1 </Version >
55 <LangVersion >latest</LangVersion >
66 <GenerateAssemblyVersionAttribute >false</GenerateAssemblyVersionAttribute >
77 </PropertyGroup >
You can’t perform that action at this time.
0 commit comments