From 0d1fc699e6efbbe8dba187e84cceb21386652e64 Mon Sep 17 00:00:00 2001 From: Luiz Henrique Cassettari Date: Wed, 29 Nov 2023 13:57:16 -0300 Subject: [PATCH] Update CI to support net8 --- .github/workflows/Build.yml | 4 +++- README.md | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Build.yml b/.github/workflows/Build.yml index 290cf5c..a063633 100644 --- a/.github/workflows/Build.yml +++ b/.github/workflows/Build.yml @@ -22,7 +22,9 @@ jobs: - name: NuGet Setup uses: actions/setup-dotnet@v2 with: - dotnet-version: 7.0.x + dotnet-version: | + 7.0.x + 8.0.x - name: "NuGet Add Source Organization" run: if ("${{ secrets.ORGANIZATION_SOURCE_PACKAGE_PASSWORD }}" -ne "") { dotnet nuget add source --username ${{ secrets.ORGANIZATION_SOURCE_PACKAGE_USERNAME }} --password ${{ secrets.ORGANIZATION_SOURCE_PACKAGE_PASSWORD }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/${{github.repository_owner}}/index.json" } diff --git a/README.md b/README.md index a3edaaa..fa78a7e 100644 --- a/README.md +++ b/README.md @@ -312,7 +312,7 @@ BitmapSource bitmapSource = imageAsResourceString.GetBitmapSource(); ``` ### Drawing Bitmap Extension -The `GetBitmapSource()` method transform `Bitmap`, `Icon`, `Image` in `BitmapSource`. The extension is located in the namespace `ricaun.Revit.Ui.Drawing`. +The `GetBitmapSource()` method transform `Bitmap`, `Icon`, `Image` in `BitmapSource`. The extension is located in the namespace `ricaun.Revit.UI.Drawing`. ```C# System.Drawing.Bitmap bitmap;