Reputation: 724
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
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
Reputation: 2251
You can specify the required .NET version in the project settings!
Upvotes: 0
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