Updating project to compile and run with Visual Code Studio 1.92.2 and .NET 8.0

This commit is contained in:
John Pavlick 2024-08-18 10:41:30 +03:00
parent c74692c097
commit e977bad595
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

4
.vscode/launch.json vendored
View File

@ -6,7 +6,7 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/src/UFiber.Configurator/bin/Debug/net5.0/UFiber.Configurator.dll",
"program": "${workspaceFolder}/src/UFiber.Configurator/bin/Debug/net8.0/UFiber.Configurator.dll",
"args": [
"--host",
"192.168.200.2",
@ -23,4 +23,4 @@
"stopAtEntry": false
}
]
}
}

View File

@ -2,7 +2,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>