Skip to content

Commit 2a2ef99

Browse files
committed
publish(nuget): update dotnet template to 1.0.2
1 parent 8f655e9 commit 2a2ef99

File tree

5 files changed

+63
-2
lines changed

5 files changed

+63
-2
lines changed

.vscode/launch.json

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
// Use IntelliSense to find out which attributes exist for C# debugging
3+
// Use hover for the description of the existing attributes
4+
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": ".NET Core Launch (web)",
9+
"type": "coreclr",
10+
"request": "launch",
11+
"preLaunchTask": "build",
12+
// If you have changed target frameworks, make sure to update the program path.
13+
"program": "${workspaceFolder}/content/bin/Debug/netcoreapp2.1/Vue2Spa.dll",
14+
"args": [],
15+
"cwd": "${workspaceFolder}/content",
16+
"stopAtEntry": false,
17+
"internalConsoleOptions": "openOnSessionStart",
18+
"launchBrowser": {
19+
"enabled": true,
20+
"args": "${auto-detect-url}",
21+
"windows": {
22+
"command": "cmd.exe",
23+
"args": "/C start ${auto-detect-url}"
24+
},
25+
"osx": {
26+
"command": "open"
27+
},
28+
"linux": {
29+
"command": "xdg-open"
30+
}
31+
},
32+
"env": {
33+
"ASPNETCORE_ENVIRONMENT": "Development"
34+
},
35+
"sourceFileMap": {
36+
"/Views": "${workspaceFolder}/Views"
37+
}
38+
},
39+
{
40+
"name": ".NET Core Attach",
41+
"type": "coreclr",
42+
"request": "attach",
43+
"processId": "${command:pickProcess}"
44+
}
45+
,]
46+
}

.vscode/tasks.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "build",
6+
"command": "dotnet",
7+
"type": "process",
8+
"args": [
9+
"build",
10+
"${workspaceFolder}/content/Vue2Spa.csproj"
11+
],
12+
"problemMatcher": "$msCompile"
13+
}
14+
]
15+
}

aspnetcore-vuejs.1.0.0.nupkg

-23.4 KB
Binary file not shown.

aspnetcore-vuejs.1.0.2.nupkg

26.5 KB
Binary file not shown.

aspnetcore-vuejs.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
33
<metadata>
44
<id>aspnetcore-vuejs</id>
5-
<version>1.0.1</version>
5+
<version>1.0.2</version>
66
<description>
7-
Template for ASP.Net Core 2 WebApi and Vue.js 2 Client app with webpack and hot reloading
7+
Template for ASP.NET Core 2 WebApi and Vue.js 2 Client app with webpack and hot reloading
88
</description>
99
<authors>Mark Pieszak, Mladen Mihajlovic</authors>
1010
<projectUrl>https://github.com/MarkPieszak/aspnetcore-Vue-starter</projectUrl>

0 commit comments

Comments
 (0)