Weaken minimum dotnet version (#3418)

# Description of Changes

Relax the patch version requirement in `global.json`, because `8.0.400`
isn't available on Linux.

# API and ABI breaking changes

No.

# Expected complexity level and risk

1

# Testing

I've been using this modification for a long time and we've never had
people complain about bad C# DLLs or anything.

---------

Co-authored-by: Zeke Foppa <bfops@users.noreply.github.com>
This commit is contained in:
Zeke Foppa
2025-10-20 10:17:36 -07:00
committed by GitHub
parent 6a94092032
commit 1b3545361d
+1 -1
View File
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "8.0.400",
"version": "8.0.100",
"rollForward": "latestMinor"
}
}