Visual Studio delay between multiple startup projects?

前端 未结 9 1307
暖寄归人
暖寄归人 2021-02-06 23:31

how to add some delay between startup projects in solution?

\"enter

I want Client

9条回答
  •  无人及你
    2021-02-06 23:53

    In case of multiple start-up projects, they are loaded in the order they are specified neither simultaneously nor randomly. enter image description here http://msdn.microsoft.com/en-us/library/09138bex(v=vs.90).aspx

    So ,may be if you specify "client" after "window service", then it may workout fine. And if you don't want to got the coded way suggested above, then (for testing only) you can manually attach the "client" process to you solution from a different solution after your desired delay. http://msdn.microsoft.com/en-us/library/c6wf8e4z(v=vs.100).aspx

提交回复
热议问题