Tarscher
Tarscher

Reputation: 1933

.Net version needed

I want to know what the prerequisites are for my application. One is the installed .Net version. How can I know the minimum .NET number necessary to run my application.

I use Visual Studio 2005.

Thanks

Upvotes: 1

Views: 210

Answers (4)

invert
invert

Reputation: 2076

In Visual Studio, go to your Project Properties page, on the "Publish" tab use the "Application files" button to view all the prerequisites your application needs, this will include third party components and other dependencies too.

The "References" page shows the list of dependencies too, use the "Unused references" button to remove any unused ones.

Upvotes: 1

Hun1Ahpu
Hun1Ahpu

Reputation: 3355

Go to Properties of your project, then Publish -> Prerequisites. There will be a list of all possible prerequisites. Yours will be checked.

Upvotes: 3

NibblyPig
NibblyPig

Reputation: 52932

You can view the version of .NET your application uses (and also change it) in the Project Properties window (Project menu > MyProject properties). Examine the Target Framework dropdown to see which version of the framework your application uses.

Upvotes: 3

yassin
yassin

Reputation: 6707

Visual Studio 2005 compiles for .NET 2.0

Upvotes: 2

Related Questions