diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..7a0f395 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,31 @@ +name: Build + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + + workflow_dispatch: + +jobs: + build: + runs-on: windows-2022 + + env: + Solution_Path: Sample\Auth0MauiApp.sln + + steps: + - uses: actions/checkout@v3 + + - name: Install .NET Core + uses: actions/setup-dotnet@v3 + with: + dotnet-version: '7.0.402' + + - name: Install .NET Workloads + run: dotnet workload install maui + + - name: Build + run: dotnet build $env:Solution_Path --configuration Release + diff --git a/Sample/.gitignore b/Sample/.gitignore index 79864b7..35faeda 100644 --- a/Sample/.gitignore +++ b/Sample/.gitignore @@ -151,7 +151,7 @@ publish/ PublishScripts/ # NuGet Packages -*.nupkg +# *.nupkg # The packages folder can be ignored because of Package Restore **/packages/* # except build/, which is used as an MSBuild target. diff --git a/Sample/LocalPackages/Auth0.OidcClient.MAUI.1.0.0-beta.0.nupkg b/Sample/LocalPackages/Auth0.OidcClient.MAUI.1.0.0-beta.0.nupkg new file mode 100644 index 0000000..0add9f8 Binary files /dev/null and b/Sample/LocalPackages/Auth0.OidcClient.MAUI.1.0.0-beta.0.nupkg differ diff --git a/Sample/Nuget.config b/Sample/Nuget.config new file mode 100644 index 0000000..a269a85 --- /dev/null +++ b/Sample/Nuget.config @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file