Skip to content

Commit ca91f42

Browse files
committed
Adds global.json file for .NET SDK configuration
Adds a global.json file to specify the .NET SDK version and rollForward policy. This ensures consistent builds and development environments by pinning the SDK version.
1 parent 5a82516 commit ca91f42

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

FASTER.sln

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1212
azure-pipelines.yml = azure-pipelines.yml
1313
.github\workflows\codeql-analysis.yml = .github\workflows\codeql-analysis.yml
1414
FASTER_Version.xml = FASTER_Version.xml
15+
global.json = global.json
1516
NuGet.Config = NuGet.Config
1617
.github\workflows\publish.yml = .github\workflows\publish.yml
1718
README.md = README.md

global.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"sdk": {
3+
"rollForward": "latestFeature",
4+
"version": "9.0.0"
5+
}
6+
}

0 commit comments

Comments
 (0)