We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45a82a1 commit 54fa5b6Copy full SHA for 54fa5b6
.devcontainer/Dockerfile
@@ -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
@@ -0,0 +1,16 @@
+// For format details, see https://aka.ms/vscode-remote/devcontainer.json
+{
+ "name": "C# (.NET 8.0)",
+ "dockerFile": "Dockerfile",
+ "customizations": {
+ "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