Skip to content

Commit 5ee33e2

Browse files
committed
got a valid package name
1 parent bf92066 commit 5ee33e2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/dotnet-core.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Package
2828
run: dotnet pack /p:Version="${{ steps.get_version.outputs.VERSION }}" --configuration Release --no-restore src/BlazorDB/BlazorDB.csproj
2929
- name: Publish NuGet
30-
run: dotnet nuget push ${{ github.workspace }}/src/BlazorDB/bin/Release/BlazorDB.${{ steps.get_version.outputs.VERSION }}.nupkg -k ${{ secrets.NUGET_KEY }} -s https://api.nuget.org/v3/index.json
30+
run: dotnet nuget push ${{ github.workspace }}/src/BlazorDB/bin/Release/BlazorIndexedDB.${{ steps.get_version.outputs.VERSION }}.nupkg -k ${{ secrets.NUGET_KEY }} -s https://api.nuget.org/v3/index.json
3131
- name: Create Release
3232
id: create_release
3333
uses: actions/create-release@latest

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Forked from (https://github.com/Reshiru/Blazor.IndexedDB.Framework)[https://gith
55
An easy, fast way to use IndexedDB in a Blazor application.
66

77
### How to Use (WASM)
8-
- Install `dotnet add package BlazorDB`
8+
- Install `dotnet add package BlazorIndexedDB`
99
- Add `.js` files to `index.html`
1010
```js
1111
<script src="_content/BlazorDB/dexie.min.js"></script>

src/BlazorDB/BlazorDB.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<Copyright>Nathan Westfall</Copyright>
1717
<licenseUrl>https://github.com/nwestfall/BlazorDB/blob/master/LICENSE</licenseUrl>
1818
<PackageLicenseExpression>MIT</PackageLicenseExpression>
19-
<PackageId>BlazorDB</PackageId>
19+
<PackageId>BlazorIndexedDB</PackageId>
2020
<PackageIconUrl>https://github.com/nwestfall/BlazorDB/blob/master/logo.png?raw=true</PackageIconUrl>
2121
</PropertyGroup>
2222

0 commit comments

Comments
 (0)