I've installed Web Essentials 2.5.1 and typescript 0.8.3; however, now Visual Studio 2012 Ultimate immediately crashes upon builds. The crashes stop if I uninstall Web Essentials. Does anyone have any suggestions to remedy the crashes? Thanks.
It could be the error we just encountered when pulling in Wordpress/PHP project. If BOTH the .css and .less files are Include in project, the build will crash. If this happens
At this point the .css file and .min.css files will be generated and added to the project as dependent files like they would have been in a normal project.
If you're looking at the project's .csproj file, it goes from looking like this:
<ItemGroup>
<Content Include="test.less" />
<Content Include="test.css" />
</ItemGroup>
to this:
<ItemGroup>
<Content Include="test.less" />
<Content Include="test.css">
<DependentUpon>test.less</DependentUpon>
</Content>
<Content Include="test.min.css">
<DependentUpon>test.less</DependentUpon>
</Content>
</ItemGroup>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With