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", "type": "coreclr",
"request": "launch", "request": "launch",
"preLaunchTask": "build", "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": [ "args": [
"--host", "--host",
"192.168.200.2", "192.168.200.2",
@ -23,4 +23,4 @@
"stopAtEntry": false "stopAtEntry": false
} }
] ]
} }

View File

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