Skip to content

Commit dff9f61

Browse files
committed
update lib to 8.0.0 in samples
1 parent 8856e97 commit dff9f61

File tree

4 files changed

+18
-8
lines changed

4 files changed

+18
-8
lines changed

.vscode/tasks.json

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,21 @@
11
{
2-
"version": "0.1.0",
2+
"version": "2.0.0",
33
"command": "dotnet",
4-
"isShellCommand": true,
54
"args": [],
65
"tasks": [
76
{
8-
"taskName": "build",
7+
"label": "build",
8+
"type": "shell",
9+
"command": "dotnet",
910
"args": [
11+
"build",
1012
"${workspaceRoot}/sample/NToastNotify.Web/NToastNotify.Web.csproj"
1113
],
12-
"isBuildCommand": true,
13-
"problemMatcher": "$msCompile"
14+
"problemMatcher": "$msCompile",
15+
"group": {
16+
"_id": "build",
17+
"isDefault": false
18+
}
1419
}
1520
]
1621
}

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,12 @@ public class HomeController : Controller
226226
**FIX** If you are using CookieTempDataProvider (this is the default) you need to accept cookie policy prompt.
227227

228228
## Running the repo locally
229-
229+
- `npm install`
230+
- `npm build`
231+
- `dotnet restore`
232+
- `dotnet build`
233+
234+
Run any sample project using `dotnet run` from sample project dir
230235

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

samples/Noty/Noty.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="NToastNotify" Version="7.0.0" />
11+
<PackageReference Include="NToastNotify" Version="8.0.0" />
1212
</ItemGroup>
1313

1414
<!--Comment before pushing changes-->

samples/Toastr/Toastr.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="NToastNotify" Version="7.0.0" />
11+
<PackageReference Include="NToastNotify" Version="8.0.0" />
1212
</ItemGroup>
1313

1414
<!--Comment before pushing changes-->

0 commit comments

Comments
 (0)