Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What do these Web Essentials options do?

I see these menu options for my asp.net project beneath the Web Essentials menu:

Create solution settings
Create color palette
Create markdown stylesheet

The official site for Web Essentials doesn't seem to be too forthcoming about just what these options do, or why. Can somebody give me the skinny?

like image 663
B. Clay Shannon-B. Crow Raven Avatar asked Jul 04 '13 22:07

B. Clay Shannon-B. Crow Raven


1 Answers

Create solution settings - sets the settings file per solution. Reason: Many of the options affect the generation of code. Those options should be able to be shared alongside the solution file so all members of a team automatically use the same settings. Also, if the settings are stored alongside the solution, they can be checked into version control.

Create color palette - WE reads and generates UI that shows your site's color pallete, from there you could just pick the colors instead of having to try to remember what the color codes are.

Create markdown stylesheet - I think this one is used for code samples, allows to specify a custom CSS file for the Markdown preview pane

like image 195
tatigo Avatar answered Oct 04 '22 06:10

tatigo