Setup debug settings

This commit is contained in:
Serghei Cebotari 2024-11-06 22:45:23 +03:00
parent 5c50e6bc8e
commit 06e47d3135
2 changed files with 4 additions and 3 deletions

3
.vscode/launch.json vendored
View File

@ -15,7 +15,8 @@
], ],
"cwd": "${workspaceFolder}", "cwd": "${workspaceFolder}",
"console": "internalConsole", "console": "internalConsole",
"stopAtEntry": false "stopAtEntry": false,
"requireExactSource": false
}, },
{ {
"name": ".NET Core Attach", "name": ".NET Core Attach",

View File

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<TargetFrameworks>net472</TargetFrameworks> <TargetFrameworks>net472;net6.0-windows</TargetFrameworks>
<LangVersion>10</LangVersion> <LangVersion>10</LangVersion>
<OutputType>Library</OutputType> <OutputType>Library</OutputType>
<RootNamespace>RhSolutions</RootNamespace> <RootNamespace>RhSolutions</RootNamespace>