I want to stop msbuild default "build" target to stop building my code instead, i want to define my custom target which will build my application. how to achieve this?
Thanks,
I want to stop msbuild default "build" target to stop building my code instead, i want to define my custom target which will build my application. how to achieve this?
Thanks,
Just open the
csprojfile of your project.And add these at the bottom of the file:
It will overwrite the default build and use yours.