Skip to content

Update dotnet-storedprocsgen.csproj #8

Update dotnet-storedprocsgen.csproj

Update dotnet-storedprocsgen.csproj #8

Workflow file for this run

name: Build
on:
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build:
env:
BUILD_CONFIG: 'Release'
SOLUTION: 'dotnet-storedprocsgen.sln'
MAIN_PROJECT: 'dotnet-storedprocsgen.csproj'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup NuGet
uses: NuGet/setup-nuget@v1.0.5
with:
nuget-version: latest
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.*
- name: Restore dependencies
working-directory: ./Source/dotnet-storedprocsgen
run: dotnet restore $MAIN_PROJECT
- name: Build
working-directory: ./Source/dotnet-storedprocsgen
run: dotnet build $MAIN_PROJECT --configuration $BUILD_CONFIG --no-restore