C# ease of life

Just wanted to share a little ease of life tip with my fellow comrads.
For quick building of the CitizenFX.Template sqript, you can go to project-properties -> build events
And add to both the .Client and .Server.

if $(ConfigurationName) == Debug (
  cd ..
  start build.cmd
) ELSE (
  echo "Ignoring build.cmd"
)

Just like this.

And now when you build the project in debug it will automaticly trigger the build.cmd to publish the changes