views:

70

answers:

4

Hi all,

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

+2  A: 

Visual Studio 2005 compiles for .NET 2.0

Yassin
+3  A: 

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.

SLC
+3  A: 

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

Hun1Ahpu
+1  A: 

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.

Wez