davmszd
davmszd

Reputation: 91

how to test Windows service

i have a windows service which is writen in vb.net in order to be sure about the performance i want to test it before instalation how can i do the job in vs2010 is there any special tool in vs2010 or an extension

any idea ?

Regards,

Upvotes: 4

Views: 3998

Answers (1)

marc_s
marc_s

Reputation: 754963

I already told you in my answer to your other question - you might want to check out some "hybrid" approaches, that would allow you to write your code as a command-line app first (which can be easily debugged), and once it works okay, you can then install it as a service:

Upvotes: 4

Related Questions