Skip to content

Update LICENSE

Update LICENSE #79

Workflow file for this run

name: .NET Core
env:
AZURE_WEBAPP_NAME: aspnet-core-sample-deploy
AZURE_WEBAPP_PACKAGE_PATH: './AudioLibrary/AudioWaveOut'
NETCORE_VERSION: '3.1.101'
on: [push, pull_request]
jobs:
build:
name: Initialize build on .NET Core
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.x
- name: Install dependencies
run: dotnet restore ${{ env.AZURE_WEBAPP_PACKAGE_PATH }}
- name: Build
run: dotnet build --no-restore ${{ env.AZURE_WEBAPP_PACKAGE_PATH }}