From 29b7e8a1d4725d7bef258b1f639043ce53f63de1 Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Tue, 27 Feb 2024 12:35:37 +0000 Subject: [PATCH] add dotnet setup from ms instructions --- .gitea/workflows/msbuild.yaml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/msbuild.yaml b/.gitea/workflows/msbuild.yaml index 9f52132..67c379b 100644 --- a/.gitea/workflows/msbuild.yaml +++ b/.gitea/workflows/msbuild.yaml @@ -13,11 +13,19 @@ jobs: run: echo "${LOCIP} gitea.comnenos" >> /etc/hosts - uses: actions/checkout@v2 + - name: Setup .NET 7.0 + uses: actions/setup-dotnet@v3 + with: + dotnet-version: '7.0.x' + - name: Where Am I shell: bash working-directory: ${{runner.workspace}} - run: pwd && ls -l && env - + run: pwd && ls -l && dotnet --info + +# - name: Install dependencies +# run: dotnet add package Newtonsoft.Json --version 12.0.1 + - name: Start Web shell: bash working-directory: ${{runner.workspace}}