-
-
Save justinyoo/58517ef66c766311edd0faca86a4800a to your computer and use it in GitHub Desktop.
Running Vue.js on ASP.NET Core Web Application
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"dependencies": { | |
"Microsoft.NETCore.App": { | |
"version": "1.1.0", // Version up | |
"type": "platform" | |
}, | |
... | |
}, | |
... | |
"frameworks": { | |
"netcoreapp1.1": { // Version up | |
"imports": [ | |
"dotnet5.6", | |
"dnxcore50", | |
"portable-net45+win8" | |
] | |
} | |
}, | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment