feat(Samples): replace DrivelutionSample with directory-scan quick-install sample #286
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: .NET | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup .NET 8 | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: 8.0.x | |
| - name: Setup .NET 10 | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: 10.0.x | |
| - name: Build ServerSample | |
| run: dotnet build ./src/Server/ServerSample.sln | |
| # Hub build requires local DLLs (libs/) or matching NuGet packages. | |
| # Enable when NuGet packages are published from latest GeneralUpdate source. | |
| # - name: Build Hub (NuGet mode) | |
| # run: dotnet build ./src/Hub/Hub.csproj -p:UseNuGet=true |