March 2024

Features

Command line scripts for vuejs and VsCode support

VueJs targets now make available powershell scripts that allow you to build and run the generated application without the need to open Visual Studio IDE:

  • build.ps1
    • builds the server and client side in place (faster) in debug mode
  • run.ps1
    • launches 2 console processes in paralel one running Vite frontend, the other the AspCore backend, just like F5 in VS (without debug).
    • You can terminate each process by doing CTRL+C
  • publish.ps1
    • builds the solution in release mode and creates de publish directory.
  • setupiis.ps1
    • Creates an AppPool and Website pointing directly to the publish directory.
    • Only needs to be done once
    • Requires Admin permissions

You can alternatively open the solution with VsCode, that has a much faster load time than VS, and call these same scripts with its build and debug tasks.