Update project configuration to target .NET 6.0 and enable Windows Forms support

This commit is contained in:
vista-man
2025-01-27 19:01:52 +01:00
parent 718626c83c
commit c4b64f4b50
37 changed files with 309 additions and 25 deletions

View File

@@ -1,11 +1,11 @@
{
"version": 3,
"targets": {
"net9.0": {}
"net6.0-windows7.0": {}
},
"libraries": {},
"projectFileDependencyGroups": {
"net9.0": []
"net6.0-windows7.0": []
},
"packageFolders": {
"C:\\Users\\steen\\.nuget\\packages\\": {},
@@ -28,14 +28,14 @@
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config"
],
"originalTargetFrameworks": [
"net9.0"
"net6.0-windows"
],
"sources": {
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net9.0": {
"targetAlias": "net9.0",
"net6.0-windows7.0": {
"targetAlias": "net6.0-windows",
"projectReferences": {}
}
},
@@ -52,8 +52,8 @@
"SdkAnalysisLevel": "9.0.100"
},
"frameworks": {
"net9.0": {
"targetAlias": "net9.0",
"net6.0-windows7.0": {
"targetAlias": "net6.0-windows",
"imports": [
"net461",
"net462",
@@ -65,12 +65,33 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Ref",
"version": "[6.0.36, 6.0.36]"
},
{
"name": "Microsoft.NETCore.App.Host.win-x64",
"version": "[6.0.36, 6.0.36]"
},
{
"name": "Microsoft.NETCore.App.Ref",
"version": "[6.0.36, 6.0.36]"
},
{
"name": "Microsoft.WindowsDesktop.App.Ref",
"version": "[6.0.36, 6.0.36]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
},
"Microsoft.WindowsDesktop.App.WindowsForms": {
"privateAssets": "none"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.102/PortableRuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.102\\RuntimeIdentifierGraph.json"
}
}
}