зеркало из
1
0
Форкнуть 0

Merge pull request #48 from suchja/update-sdk

update devcontainer to .net 8
This commit is contained in:
Samruddhi Khandale 2024-06-12 11:09:32 -07:00 коммит произвёл GitHub
Родитель 73f6fb6697 6ee44da483
Коммит ca7ad4d921
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
3 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -3,7 +3,7 @@
{
"name": "C# (.NET)",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/dotnet:1-7.0",
"image": "mcr.microsoft.com/devcontainers/dotnet:1-8.0",
// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},

2
.vscode/launch.json поставляемый
Просмотреть файл

@ -10,7 +10,7 @@
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/bin/Debug/net7.0/vscode-remote-try-dotnet.dll",
"program": "${workspaceFolder}/bin/Debug/net8.0/vscode-remote-try-dotnet.dll",
"args": [],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,

Просмотреть файл

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>vscode_remote_try_dotnet</RootNamespace>