-
Notifications
You must be signed in to change notification settings - Fork 21
Migration from alpha03 to alpha04
As the release note indicates, there is not compatibility between alpha03 and alpha04. Also, installation specification is changed, note that choco upgrade
command can not be used. You have to migrate the *.sln
by the following steps:
Open the target *.sln
that you want to migrate, and execute the following command in the Package Manager Console:
PM> Uninstall-Package NUnitTestAdapterForPrig
Continuously, execute the following command in the Package Manager Console:
PM> Uninstall-Package Prig
Right click the target project in the Solution Explorer, and select Unload Project
:
Right click the unloaded project, and select Edit *.csproj
:
Remove all line that matches to the regular expression (\.prig)|(urasandesu)
:
Reload the project and save all. By modifying the *.csproj
manually, you can continuously use the indirection settings in alpha04. Then, exit Visual Studio for now.
Run Developer Command Prompt for VS2013 as Administrator. To uninstall alpha03 completely, execute the following command:
CMD C:\> choco uninstall prig -y -f
Execute the normal installation steps that are in README. If you executed the above steps, you can get the indirection settings that are same as used in alpha03.
In addition, if you use a delegate that IndirectionDelegate is applied like this example, add the namespace Urasandesu.Prig.Delegates
like this.
-
Home
- QUICK TOUR [SRC]
- FEATURES
- CHEAT SHEET
- PACKAGE MANAGER CONSOLE POWERSHELL REFERENCE
- COMMAND LINE REFERENCE
- APPVEYOR SUPPORT
- MIGRATION
- From Microsoft Research Moles [SRC]
- From Microsoft Fakes [SRC]
- From Telerik JustMock [SRC]
- From Typemock Isolator [SRC]