/// <summary>
 /// Sets the output style to compressed.
 /// </summary>
 /// <returns>The current instance.</returns>
 public CompileSass WithCompressedOutputStyle()
 {
     _outputStyle = ScssOutputStyle.Compressed;
     return(this);
 }
 /// <summary>
 /// Sets the output style to expanded.
 /// </summary>
 /// <returns>The current instance.</returns>
 public CompileSass WithExpandedOutputStyle()
 {
     _outputStyle = ScssOutputStyle.Expanded;
     return(this);
 }
 /// <summary>
 /// Sets the output style to nested.
 /// </summary>
 /// <returns>The current instance.</returns>
 public CompileSass WithNestedOutputStyle()
 {
     _outputStyle = ScssOutputStyle.Nested;
     return(this);
 }
 /// <summary>
 /// Sets the output style to compact.
 /// </summary>
 /// <returns>The current instance.</returns>
 public CompileSass WithCompactOutputStyle()
 {
     _outputStyle = ScssOutputStyle.Compact;
     return(this);
 }
示例#5
0
 [DllImport(LibSassDll, CallingConvention = CallingConvention.Cdecl)] public static extern void sass_option_set_output_style(Sass_Options options, ScssOutputStyle output_style);