.net-framework-version

What .NET Framework version should I ship with; 2, 3, 3.5?

My application uses 2.0. At some point in the future I may want to start using newer features added in later framework versions. Should I wait until then? Or are there advantages to updating to the latest .NET 3.5 now? I suppose by the time I am ready for next spring's release 4.0 will be out. Perhaps I should stick with 2.0 for my ...

Which .NET framework version will be included in Windows 7?

Does anybody know if Microsoft has already decided which version of the .NET framework will be shipped in Windows 7 next year (2009)? Will it .NET 3.5 (SP 1) or maybe 4.0? ...

What is meant by ASP.net Version 2.0 ?

What precisely do we mean by ASP.NET version 2.0 ? Is it the version lined with .net CLR version 2.0 ? What about aspnet_isapi.dll and aspnet_wp.exe ? How do they fit in with respect to the versions 1.1 / 2.0 / 3.5 of the .net framework? .NET 3.5 uses CLR 2.0. Does that mean nothing changes in ASP.NET 3.5 except for additions to the ...

ASP.NET 2.0 or 3.5?

There was a time that I thought the current non-beta ASP.NET claimed the version number of the current .NET CLR (2.0), even though the .NET Framework was version 3.5. Whenever I saw "ASP.NET 3.5", I felt that whomever had written it was incorrect. However, I'm starting to feel that I'm incorrect. Has the official ASP.NET version number ...

Deploying a Hello Word Silverlight app to IIS5, Win XP

Besides adding these File Types to IIS and installing the .NET framework 4.0 to the Web Server, what else do I need to do to get a Hello Word Silver Light web app to work? is there a separate Silverlight installation needed? Though the web site works when I deploy locally, I am getting the following error after deploying to a remote web...

Runtime problems for ASP.Net website in IIS7/Win7 .Net 4.0

In VS2010 the project's target framework is 4.0. In IIS7, localhost's .Net version is 4.0. But for my application's App Pool, there's no 4.0 framework available to choose from. And after I deploy the site and browse a file from it, I get this error: Parser Error Message: Unrecognized attribute 'targetFramework'. Note that attribute name...

Determine .NET Framework version for dll

I have an old dll that was compiled against the .NET framework and deployed. I am not sure which version of the .NET framework it was compiled against. I am wondering how I can determine which version of the .NET framework this dll was compiled against? I cannot trust the source code because I believe it has been upgraded to Visual St...

Diffrances in Localized Versions of the .NET Framework

I am wondering what the differences are in localised versions of the.net frameworks running under application the same culture code (i.e. application is not localised). So far I understand that: Exception Messages are localised so appear in foreign language The Names of countries in the framework are localised is there anything els...

What package of .Net framework is required on target client machine in order to run .Net winforms application?

I'm Trying to deploy my winforms project using installshield in order to make is available to be installed on other computers. My project is written under .net framework 3.5. My question is : What version of .net package should be installed on the target machine in order to be able to run my project? One thing to notice is that target...

How do I make the MSBuild task in Mono's xbuild use the .NET 3.5 framework?

I'm trying to build a MonoTouch project using xbuild (on a Mac, clearly). Here's my xbuild project: <Project DefaultTargets="Application" ToolsVersion="3.5" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"&gt; <PropertyGroup> <ApplicationProjectFilePath>..\TestApp\TestApp.csproj</ApplicationProjectFilePath> ...