Skip to content

Commit

Permalink
Merge pull request #923 from SMI/fix/global-json-rollforward
Browse files Browse the repository at this point in the history
allow newer minor sdk versions
  • Loading branch information
rkm authored Oct 9, 2021
2 parents 5866419 + e11fff7 commit 233cb22
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,9 @@ Apart from the Microservices (documented above) the following library classes ar

### Building the C# Projects

Building requires the [.NET Core 3.1 SDK](https://dotnet.microsoft.com/download/dotnet-core/3.1)
Building requires a [.NET Core SDK](https://dotnet.microsoft.com/download/dotnet-core), at a compatible version as specified in the [`global.json`](/global.json) file.

To build the entire solution from the project root, run:

```bash
$ dotnet build [-r RID]
Expand Down
3 changes: 2 additions & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"sdk": {
"version": "5.0.302"
"version": "5.0.302",
"rollForward": "minor"
}
}
1 change: 1 addition & 0 deletions news/923-meta.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Allow newer minor SDK versions to build the sln. global.json specifies the minimum version which will be used in the CI.

0 comments on commit 233cb22

Please # to comment.