Skip to content

Set package-ecosystem to 'nuget' in dependabot config #1

Set package-ecosystem to 'nuget' in dependabot config

Set package-ecosystem to 'nuget' in dependabot config #1

Workflow file for this run

name: .NET Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
# Install the .NET Core workload
- name: Install .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.x
- name: restore
run: dotnet restore
- name: build
run: dotnet build