-
Notifications
You must be signed in to change notification settings - Fork 19
35 lines (30 loc) · 1.08 KB
/
dotnet.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: .NET
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '8.0'
include-prerelease: True
- name: Build AngularMicrosoftEntraIDMultipleApis
run: dotnet build ./AngularMicrosoftEntraIDMultipleApis/ApiWithMutlipleApis.sln
- name: Build BlazorWithApis
run: dotnet build ./BlazorWithApis/BlazorApis.sln
- name: Build ConfidentialClientCredentialsCertificate
run: dotnet build ./ConfidentialClientCredentialsCertificate/ConfidentialClientCredentialsCertificate.sln
- name: Build DecryptionCertificates
run: dotnet build ./DecryptionCertificates/DecryptionCertificates.sln
- name: Build DeviceFlowWeb
run: dotnet build ./DeviceFlowWeb/DeviceFlowWeb.sln
- name: Build DownstreamApis
run: dotnet build ./DownstreamApis/DownstreamApis.sln
- name: Build TokenManagement
run: dotnet build ./TokenManagement/TokenManagement.sln