Skip to content

Commit

Permalink
Update CI to support net8
Browse files Browse the repository at this point in the history
  • Loading branch information
ricaun committed Nov 29, 2023
1 parent 9189ba2 commit 0d1fc69
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 0d1fc69

Please sign in to comment.