-
Type:
Improvement
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: cordova-cli, cordova-plugman, cordova-windows, cordova-wp8 (DEPRECATED)
-
Labels:
Every time, when you trigger `cordova prepare/build` or `plugman install/uninstall/prepare` (this also `include cordova plugin add/rm`), cordova removes all references to www/* files from .jsproj file and then adds tags like
<ItemGroup> <Content Include="www\index.html" /> </ItemGroup>
to .jsproj file.
Proposal: We can use one entry like
<ItemGroup> <Content Include="www\**" /> </ItemGroup>
for all files in www folder including static assets and plugins' .js modules (like described here)