SharpScss
SharpScss copied to clipboard
A portable cross-platform pinvoke .NET wrapper around libsass to convert SCSS to CSS
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...
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...