Sawyer
Sawyer

Reputation: 241

Trying to target a specific .NET version in Visual Studio 2015

I am trying to change the target version to .NET 3.5.

The project I'm using was created by Unity, the game engine. I'm doing this so I can install nuget dependencies

But when I try to open the properties menu, either the screen flashes white and nothing happens, or a window appears which looks significantly different than the one pictured in the instructions. This is the properties menu I'm seeing:

properties

This is what I'm clicking on to get the properties not found dialogue:

where I'm clicking

Thanks!

Upvotes: 1

Views: 277

Answers (2)

mituw16
mituw16

Reputation: 5250

You aren't changing the project properties, you are looking at one individual class properties page.

You need to right click on the Project, and select properties as demonstrated below. enter image description here

That will open up this page.

enter image description here

Upvotes: 4

Adam
Adam

Reputation: 2440

Right Click your project and click properties or in visual studio Project->ProjectName Properties... at the bottom. Then on the Application tag or tab, there will be Target Framework: Change this to .NET Framework 3.5.

Upvotes: 0

Related Questions