Using Microsoft Visual Studio I received an error message

Asked By 0 points N/A Posted on -
qa-featured

While I was using Microsoft Visual Studio I received an error message like this. Some suggestions?

Microsoft Visual Studio to be able to target your test project to .Net framework 3.5

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.

SHARE
Answered By 10 points N/A #175305

Using Microsoft Visual Studio I received an error message

qa-featured

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.

Related Questions