Is it possible to use Web Compiler (developed by Mads Kristensen) in a CI pipeline in Azure DevOps?
We have the Web Compiler Visual Studio tool installed on our development computers. Building and publishing will compile the .scss
files into .css
and everything works great.
Recently we've created CI pipelines in Azure DevOps and we found that our .scss
files are no longer being compiled.
We've searched for a way to compile this in the pipeline but with no success.
Can we use the Web Compiler referenced above for this? Maybe installing it using the dotnet tool install command and then manually calling another command to build the files? We didn't find any commands for this Web Compiler.
Our project is a .Net 6
Razor Pages
project and we use Visual Studio 2022
.
If this is not possible, are there any alternatives?