Registering the Typemock Isolator License
The TypeMockRegister task registers the Typemock Isolator license.
To register the Typemock Isolator license:
•Add the TypeMockRegister task to the project file with the following optional parameters:
|
Parameter |
Description |
Type |
Mandatory/Optional |
|
Company |
The company name as defined in your license |
String |
Mandatory |
|
License |
The activation key as defined in your license |
String |
Mandatory |
|
Specifies whether to run Typemock Isolator tests without installation on the server |
Boolean |
Optional |
For example:
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<TypeMockLocation>C:\Sources\TypeMock</TypeMockLocation>
</PropertyGroup>
<Import Project ="$(TypeMockLocation)\TypeMock.MSBuild.Tasks"/>
<Target Name="RegisterTypeMock">
<TypeMockRegister Company="CompanyName" License="LicenseNumber" AutoDeploy=”True”/>
</Target>
</Project>