From 3bb453d8a6fda55664555d4660dc8b9c412840fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=B6tz=20G=C3=B6risch?= Date: Fri, 12 Apr 2024 11:58:02 +0000 Subject: [PATCH] feat: add gitpod dev environment --- .gitpod.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitpod.yml diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000..4f824a8 --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,17 @@ +--- +image: gitpod/workspace-dotnet-8:latest + +tasks: + - name: Init workspace + init: | + dotnet restore "./UA-CloudPublisher.csproj" + command: | + # Installs renovate to validate renovate.json by running `renovate-config-validator` + npm install --location=global renovate && pip install --user yamllint + dotnet build "./UA-CloudPublisher.csproj" + +vscode: + extensions: + - muhammad-sammy.csharp + - mhutchie.git-graph + - ms-dotnettools.vscode-dotnet-runtime \ No newline at end of file