Skip to content

Commit

Permalink
update lib to 8.0.0 in samples
Browse files Browse the repository at this point in the history
  • Loading branch information
nabinked committed Mar 30, 2022
1 parent 8856e97 commit dff9f61
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 8 deletions.
15 changes: 10 additions & 5 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
{
"version": "0.1.0",
"version": "2.0.0",
"command": "dotnet",
"isShellCommand": true,
"args": [],
"tasks": [
{
"taskName": "build",
"label": "build",
"type": "shell",
"command": "dotnet",
"args": [
"build",
"${workspaceRoot}/sample/NToastNotify.Web/NToastNotify.Web.csproj"
],
"isBuildCommand": true,
"problemMatcher": "$msCompile"
"problemMatcher": "$msCompile",
"group": {
"_id": "build",
"isDefault": false
}
}
]
}
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,12 @@ public class HomeController : Controller
**FIX** If you are using CookieTempDataProvider (this is the default) you need to accept cookie policy prompt.

## Running the repo locally

- `npm install`
- `npm build`
- `dotnet restore`
- `dotnet build`

Run any sample project using `dotnet run` from sample project dir

# [Become a patreon](https://www.patreon.com/nabinkt)

Expand Down
2 changes: 1 addition & 1 deletion samples/Noty/Noty.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="NToastNotify" Version="7.0.0" />
<PackageReference Include="NToastNotify" Version="8.0.0" />
</ItemGroup>

<!--Comment before pushing changes-->
Expand Down
2 changes: 1 addition & 1 deletion samples/Toastr/Toastr.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="NToastNotify" Version="7.0.0" />
<PackageReference Include="NToastNotify" Version="8.0.0" />
</ItemGroup>

<!--Comment before pushing changes-->
Expand Down

0 comments on commit dff9f61

Please sign in to comment.