Skip to content

Commit

Permalink
Merge branch 'main' into missing-layer-error
Browse files Browse the repository at this point in the history
  • Loading branch information
tschumpr authored Dec 12, 2024
2 parents 12f5a33 + 5835360 commit 40b2df5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ jobs:
strategy:
fail-fast: false
matrix:
language: ["csharp"]
include:
- language: csharp
build-mode: manual

steps:
- name: Checkout repository
Expand All @@ -30,9 +32,14 @@ jobs:
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}

- name: Autobuild
uses: github/codeql-action/autobuild@v3
- if: matrix.build-mode == 'manual'
shell: bash
run: |
echo 'Building the project using dotnet commands'
dotnet restore Geodatenbezug/Geodatenbezug.csproj
dotnet build Geodatenbezug/Geodatenbezug.csproj --no-restore
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
4 changes: 2 additions & 2 deletions Geodatenbezug/Geodatenbezug.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<AzureFunctionsVersion>v4</AzureFunctionsVersion>
Expand Down Expand Up @@ -35,4 +35,4 @@
<ItemGroup>
<InternalsVisibleTo Include="Geodatenbezug.Test" />
</ItemGroup>
</Project>
</Project>

0 comments on commit 40b2df5

Please sign in to comment.