Skip to content

Commit 97b7962

Browse files
authored
Pin SDK to .net 8 (#88)
This commit pins the SDK version used for compilation to .net 8 to match the build and test projects. There is an issue with `dotnet format` command when building with certain versions of .net 9 SDK that results in: ``` Unhandled exception: System.Exception: source text did not have an identifiable encoding ``` Looks related to dotnet/sdk#46780, which is fixed in later .net 9 versions. The build doesn't need .net 9, so best to pin to .net 8.
1 parent 054d714 commit 97b7962

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
33
"version": "8.0.100",
4-
"rollForward": "latestMajor"
4+
"rollForward": "latestMinor"
55
}
66
}

0 commit comments

Comments
 (0)