We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4817904 commit 7cddce6Copy full SHA for 7cddce6
build/Helpers.lua
@@ -73,7 +73,8 @@ end
73
74
local function target_framework()
75
local value = _OPTIONS["target-framework"]
76
- return string.isempty(value) and "net6.0" or value
+ local default_framework = _ACTION <= "vs2019" and "net5.0" or "net6.0"
77
+ return string.isempty(value) and default_framework or value
78
end
79
80
targetframework = target_framework()
0 commit comments