You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+28-9Lines changed: 28 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -41,22 +41,41 @@ _Looking for ASP.NET Core & Angular 7.x+ Universal starter? [click here](https:/
41
41
42
42
# Installation:
43
43
44
-
Download the template right from **Nuget**.
44
+
### Nuget | Dotnet Templates
45
+
46
+
Find the template through NuGet package manager inside Visual Studio or [here](https://www.nuget.org/packages/aspnetcore-vuejs)
47
+
48
+
> Or download it via dotnet templates
45
49
46
50
```ts
51
+
// Make a directory where you want the project
52
+
mkdirmy-vue-starter&&cdmy-vue-starter
53
+
54
+
// Download the dotnet template
47
55
dotnetnew-iaspnetcore-vuejs
56
+
57
+
// Run and install the template
58
+
dotnetnewvuejs
59
+
60
+
// Make sure you install the dependencies
61
+
npminstall
48
62
```
49
63
50
-
# Getting Started:
51
-
* Create folder from template: `dotnet new vuejs` ([Official documentation](https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-new?tabs=netcore2x))
52
-
* This will automatically run `dotnet restore` unless you install with `dotnet new vuejs --skipRestore`
53
-
* Restore Node dependencies by running `npm install`
64
+
Now you can open the project via Visual Studio or VSCode, press F5 to run the application!
54
65
55
-
- or -
66
+
Note:
67
+
68
+
* This will automatically run `dotnet restore` unless you install with `dotnet new vuejs --skipRestore`
0 commit comments