0
deltavision created
Hi,
Version: 9.0.1, ASP NET CORE, MVC
With reference to #7666
Started using VS2022.
- and the "old" Web Compiler from Mads Kristensen (less -> css) is no longer supported. https://marketplace.visualstudio.com/items?itemName=MadsKristensen.WebCompiler
But is continued by Jason Moore at: https://marketplace.visualstudio.com/items?itemName=Failwyn.WebCompiler64&ssr=false#overview
Is that also what you are using / recommend?
Regarding Bundler & Minifier - is that used anymore? https://marketplace.visualstudio.com/items?itemName=MadsKristensen.BundlerMinifier
Is that not handled by "gulp" ?
6 Answer(s)
-
0
Hi @ismcagdas,
I can not see that gulp transforms any new less files to css. Do I have to set something up on new files (less) ?
Any changes to the build scripts?
For Development (create-bundles)
set projectDir= [....path...] set workingDir=C:\Program Files\Microsoft Visual Studio\2022\Professional\Common7\Tools\ set vs=VsDevCmd.bat cd %workingDir% start /b %vs% :: your commands go here, such as: d: cd %projectDir% npm run create-bundles
For Production (build)
set projectDir=[....path...] set workingDir=C:\Program Files\Microsoft Visual Studio\2022\Professional\Common7\Tools\ set vs=VsDevCmd.bat cd %workingDir% start /b %vs% :: your commands go here, such as: d: cd %projectDir% npm run build
Have an answer to this question?
Log in
and write your answer.