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,
Copyright © 2021 Jogjafile Inc.
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.