chevron-thin-right chevron-thin-left brand cancel-circle search youtube-icon google-plus-icon linkedin-icon facebook-icon twitter-icon toolbox download check linkedin phone twitter-old google-plus facebook profile-male chat calendar profile-male
Welcome to Typemock Community! Here you can ask and receive answers from other community members. If you liked or disliked an answer or thread: react with an up- or downvote.
0 votes
Hi,

Im currently trying to auto deploy TypeMock (and other tools) within my buildscript.

I have many different builds running on the same build server at the same time, and all of them are going to auto-deploying/undeploying typemock.

What I am wondering about is:

Does the auto-deploy register typemock on the server or path to typemock? So that I can have TypeMock version 4.0.3.0 running in one product and version 4.1 running in a different product at the same time?
asked by Findulias (1.8k points)

1 Answer

0 votes
You can only have one version of TypeMock active at any given time. What that means is if you have two different projects that rely on two different versions of TypeMock, you can use the auto-deploy feature to switch which version is active at any given time, but you can't run both simultaneously.

This is more of an issue in a build server environment where you might want to build the two projects in a multi-threaded format so they run at the same time - in this case, you can't. You'd need to figure out how to serialize the builds of the two projects so the version of TypeMock that's registered isn't switched during the point at which it's being used.
answered by tillig (6.7k points)
...