Skip to content

Commit 54fa5b6

Browse files
committed
Bring back Codespaces
1 parent 45a82a1 commit 54fa5b6

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

.devcontainer/Dockerfile

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Copyright (c) Microsoft Corporation. All rights reserved.
2+
# Licensed under the MIT License.
3+
4+
FROM mcr.microsoft.com/dotnet/sdk:8.0
5+
6+
RUN pwsh --command Install-Module platyPS,Pester -Force

.devcontainer/devcontainer.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// For format details, see https://aka.ms/vscode-remote/devcontainer.json
2+
{
3+
"name": "C# (.NET 8.0)",
4+
"dockerFile": "Dockerfile",
5+
"customizations": {
6+
"vscode": {
7+
"settings": {
8+
"terminal.integrated.defaultProfile.linux": "pwsh"
9+
},
10+
"extensions": [
11+
"ms-dotnettools.csharp",
12+
"ms-vscode.powershell"
13+
]
14+
}
15+
}
16+
}

0 commit comments

Comments
 (0)