While I was using Microsoft Visual Studio I received an error message like this. Some suggestions?
Microsoft Visual Studio
Attempted re-targeting of the project has been canceled to be able to target your test project to .Net framework 3.5, you must use the steps documented at the following Microsoft web site:
http://go.microsoft.com/fwlinkId=201405.
Using Microsoft Visual Studio I received an error message
Dear Thomas,
This problem may happen when you try changing your test project target framework and you get this dialog box.
So here is how to re-target the test project for .NET4 platform:
1. Right click on the test project then chooses unload project.
2. Then right click on the unloaded and choose edit (name of project)
3. Change the target framework version into version 4.0.1
<TargetFrameworkVersion>v4.0.1</TargetFrameworkVersion>
4. Reload the project.