Build another project by prebuild event without adding reference

后端 未结 2 1870
醉酒成梦
醉酒成梦 2020-12-19 01:06

I am copying .exe file form a separate to my main project\'s folder on prebuild event but I need to build that project before build my main project so i want to build that p

2条回答
  •  再見小時候
    2020-12-19 01:34

    Not that this is the best solution, but it will definitely work for what you want to do: Put the below into your pre-build event

    "$(VS100COMNTOOLS)..\IDE\devenv" "csproj location OR sln location" /Rebuild "configuration required if you have more than configuration ex: Debug|x64"

提交回复
热议问题