Vicky
Vicky

Reputation: 1117

Can I make Rehsharper run a custom command before running any unit tests instead of the build

The build in my team is a custom bat file, and not default visual studio build. If I want to build before running a unit test from resharper, I have run the bat file manually and then run unit test in resharper. The resharper setting has been set to "Never Build" so that it doesn't attempt to build it as well.

Can I make resharper also run the custom bat file for building instead of the default build ?

Upvotes: 1

Views: 93

Answers (1)

citizenmatt
citizenmatt

Reputation: 18573

No, there are no settings for this in ReSharper. Could you add a pre-build step in the Visual Studio project that runs your .bat file?

Upvotes: 1

Related Questions