-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathLess.cs
65 lines (55 loc) · 2.78 KB
/
Less.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
using Microsoft.VisualStudio.Shell;
using System.ComponentModel;
namespace MadsKristensen.EditorExtensions
{
class LessOptions : DialogPage
{
public LessOptions()
{
Settings.Updated += delegate { LoadSettingsFromStorage(); };
}
public override void SaveSettingsToStorage()
{
Settings.SetValue(WESettings.Keys.GenerateCssFileFromLess, GenerateCssFileFromLess);
Settings.SetValue(WESettings.Keys.ShowLessPreviewWindow, ShowLessPreviewWindow);
Settings.SetValue(WESettings.Keys.LessMinify, LessMinify);
Settings.SetValue(WESettings.Keys.LessCompileOnBuild, LessCompileOnBuild);
Settings.SetValue(WESettings.Keys.LessCompileToFolder, LessCompileToFolder);
Settings.SetValue(WESettings.Keys.LessStrictMath, LessStrictMath);
Settings.Save();
}
public override void LoadSettingsFromStorage()
{
GenerateCssFileFromLess = WESettings.GetBoolean(WESettings.Keys.GenerateCssFileFromLess);
ShowLessPreviewWindow = WESettings.GetBoolean(WESettings.Keys.ShowLessPreviewWindow);
LessMinify = WESettings.GetBoolean(WESettings.Keys.LessMinify);
LessCompileOnBuild = WESettings.GetBoolean(WESettings.Keys.LessCompileOnBuild);
LessCompileToFolder = WESettings.GetBoolean(WESettings.Keys.LessCompileToFolder);
LessStrictMath = WESettings.GetBoolean(WESettings.Keys.LessStrictMath);
}
[LocDisplayName("Generate CSS file on save")]
[Description("Generate CSS file when LESS file is saved")]
[Category("LESS")]
public bool GenerateCssFileFromLess { get; set; }
[LocDisplayName("Generate min file on save")]
[Description("Creates a minified version of the compiled CSS file (file.min.css)")]
[Category("LESS")]
public bool LessMinify { get; set; }
[LocDisplayName("Show preview window")]
[Description("Show the preview window when editing a LESS file.")]
[Category("LESS")]
public bool ShowLessPreviewWindow { get; set; }
[LocDisplayName("Compile on build")]
[Description("Compiles all LESS files in the project that has a corresponding .css file.")]
[Category("LESS")]
public bool LessCompileOnBuild { get; set; }
[LocDisplayName("Compile to 'css' folder")]
[Description("Compiles all LESS files into a folder called 'css' in the same directory as the .less file")]
[Category("LESS")]
public bool LessCompileToFolder { get; set; }
[LocDisplayName("Use strict math")]
[Description("Set's the strictMath option to true when compiling LESS to CSS")]
[Category("LESS")]
public bool LessStrictMath { get; set; }
}
}