Skip to content

Bootstrap 5

Bootstrap 5 #62

Workflow file for this run

name: .NET
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.0'
include-prerelease: True
- name: Build CertificateManager
run: dotnet build ./src/CertificateManager.sln
- name: Build AspNetCoreCertificateAuth
run: dotnet build ./examplesUsingCertificateAuthentication/AspNetCoreChained/AspNetCoreCertificateAuth.sln
- name: Build AzureCertAuth
run: dotnet build ./examplesUsingCertificateAuthentication/AzureCertAuth/AzureCertAuth.sln
- name: Build GrpcCertAuthChainedCertificate
run: dotnet build ./examplesUsingCertificateAuthentication/GrpcCertAuthChainedCertificate/GrpcCertAuthChainedCertificate.sln
- name: Build SigningCertificate
run: dotnet build ./examplesUsingCertificateAuthentication/SigningCertificate/SigningCertificate.csproj
- name: Build SimulateAzureIoTDevice
run: dotnet build ./examplesUsingCertificateAuthentication/SimulateAzureIoTDevice/SimulateAzureIoTDevice.sln