TrilonIO / aspnetcore-Vue-starter

*NEW* Asp.net Core & Vue.js (ES6) SPA Starter kit - Vuex, webpack, Web API, Docker, and more! By @TrilonIO
https://www.trilon.io
MIT License
1.22k stars 266 forks source link

Can't "easily" edit vue based assets in Visual Studio #53

Closed WillFM closed 7 years ago

WillFM commented 7 years ago

In VS2017, I don't see the ClientApp folder in The solution browser, making it difficult to work with the vue components.

I'm assuming because the ClientApp folder is marked for removal in the .csproj file:

  <Content Remove="ClientApp\**" />

Any suggestions (outside of toggling "show all files") on making them visible?

MarkPieszak commented 7 years ago

This seems like something strange that dotnet core 2.0 introduced (in combination with VS2017) as these were all working before.

If you get rid of that line in csproj, does it fix the issue?

elucidsoft commented 7 years ago

I see the ClientApp folder just fine, I have VS 2017 15.3.2 installed.

WillFM commented 7 years ago

Looks like I jumped the gun on opining the bug. It appears the reason why the folder was not shown was because the folder contents was empty. (I had cleared it out, to replace it with my own files).

Sorry for the confusion.