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

Commit

Permalink
bump to v5.12
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Aug 17, 2021
1 parent 5fd5217 commit e285687
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 10 deletions.
22 changes: 15 additions & 7 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"version": "2.0.0",
"command": "dotnet",
"isShellCommand": true,
"args": [],
"options": {
"env": {
Expand All @@ -12,11 +11,20 @@
},
"tasks": [
{
"taskName": "build",
"args": [ "src/ServiceStack.Text.sln", "-v", "m" ],
"isBuildCommand": true,
"showOutput": "silent",
"problemMatcher": "$msCompile"
"label": "build",
"type": "shell",
"command": "dotnet",
"args": [
"build",
"src/ServiceStack.Text.sln",
"-v",
"m"
],
"problemMatcher": "$msCompile",
"group": {
"_id": "build",
"isDefault": false
}
}
]
}
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>

<PropertyGroup>
<Version>5.11.1</Version>
<Version>5.12.0</Version>
<Authors>ServiceStack</Authors>
<Company>ServiceStack, Inc.</Company>
<Copyright>&#169; 2008-2018 ServiceStack, Inc</Copyright>
Expand Down
2 changes: 1 addition & 1 deletion src/ServiceStack.Text/Env.cs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ static Env()

public static string VersionString { get; set; }

public static decimal ServiceStackVersion = 5.111m;
public static decimal ServiceStackVersion = 5.12m;

public static bool IsLinux { get; set; }

Expand Down
2 changes: 1 addition & 1 deletion tests/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>

<PropertyGroup>
<Version>5.11.1</Version>
<Version>5.12.0</Version>
<LangVersion>latest</LangVersion>
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
</PropertyGroup>
Expand Down

0 comments on commit e285687

Please sign in to comment.