SharpScss icon indicating copy to clipboard operation
SharpScss copied to clipboard

A portable cross-platform pinvoke .NET wrapper around libsass to convert SCSS to CSS

Results 4 SharpScss issues
Sort by recently updated
recently updated
newest added

Are there plans for Arm64 support (e.g. Apple Silicon)?

question

Hello! When compiling [my project](https://github.com/MadeByEmil/Pigmeat), which makes use of this library, to a native binary using CoreRT, I get the following stack trace: ``` System.Exception: Method '[SharpScss]SharpScss.LibSass.sass_make_data_context(string)' requires marshalling that...

Repro with this Powershell ``` Add-Type -AssemblyName (Join-Path $runFolder "SharpScss.dll") $options = new-object SharpScss.ScssOptions $options.OutputStyle = [SharpScss.ScssOutputStyle] "Expanded" $r1= [SharpScss.Scss]::ConvertFileToCss("file1.css", $options) # the next line does NOT compile file2.css. It...

bug

When testing 3rd party application which referring to the SharpScss nuget package with the latest .NET 9 build, it stops working after accessing page. It is caused by SharpScss.dll when...