user257412
user257412

Reputation: 724

C# Which .net version does my app require

Sorry if its a stupid question. But I just wrote a tiny c# application and want to know which exact version of .net does my application requires . Is there a way of knowing this , other than to uninstall and reinstalling all the .net versions on my PC.

my app btw is : http://www.ziddu.com/download/11874881/PerfectUpload.exe.html ( 14kb)

Thanks

Upvotes: 0

Views: 348

Answers (3)

Kamran Khan
Kamran Khan

Reputation: 9986

In the VS IDE, right click on yourProjectName-->Properties-->Application-->Target Framework, and you will most likely see the framework version 3.5.

Upvotes: 4

Tobias Schittkowski
Tobias Schittkowski

Reputation: 2251

You can specify the required .NET version in the project settings!

Upvotes: 0

Darin Dimitrov
Darin Dimitrov

Reputation: 1039408

This application requires .NET 3.5 to run as it references System.Xml.Linq assembly and more specifically the XDocument class in the PostToImgur method.

Upvotes: 2

Related Questions