Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit e285687

Browse files
committed
bump to v5.12
1 parent 5fd5217 commit e285687

File tree

4 files changed

+18
-10
lines changed

4 files changed

+18
-10
lines changed

.vscode/tasks.json

+15-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
{
22
// See https://go.microsoft.com/fwlink/?LinkId=733558
33
// for the documentation about the tasks.json format
4-
"version": "0.1.0",
4+
"version": "2.0.0",
55
"command": "dotnet",
6-
"isShellCommand": true,
76
"args": [],
87
"options": {
98
"env": {
@@ -12,11 +11,20 @@
1211
},
1312
"tasks": [
1413
{
15-
"taskName": "build",
16-
"args": [ "src/ServiceStack.Text.sln", "-v", "m" ],
17-
"isBuildCommand": true,
18-
"showOutput": "silent",
19-
"problemMatcher": "$msCompile"
14+
"label": "build",
15+
"type": "shell",
16+
"command": "dotnet",
17+
"args": [
18+
"build",
19+
"src/ServiceStack.Text.sln",
20+
"-v",
21+
"m"
22+
],
23+
"problemMatcher": "$msCompile",
24+
"group": {
25+
"_id": "build",
26+
"isDefault": false
27+
}
2028
}
2129
]
2230
}

src/Directory.Build.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22

33
<PropertyGroup>
4-
<Version>5.11.1</Version>
4+
<Version>5.12.0</Version>
55
<Authors>ServiceStack</Authors>
66
<Company>ServiceStack, Inc.</Company>
77
<Copyright>&#169; 2008-2018 ServiceStack, Inc</Copyright>

src/ServiceStack.Text/Env.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ static Env()
113113

114114
public static string VersionString { get; set; }
115115

116-
public static decimal ServiceStackVersion = 5.111m;
116+
public static decimal ServiceStackVersion = 5.12m;
117117

118118
public static bool IsLinux { get; set; }
119119

tests/Directory.Build.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22

33
<PropertyGroup>
4-
<Version>5.11.1</Version>
4+
<Version>5.12.0</Version>
55
<LangVersion>latest</LangVersion>
66
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
77
</PropertyGroup>

0 commit comments

Comments
 (0)