Question

We have to install Windows SDK along with .NET Framework. Why do we need the SDK if we have the framework?

EDIT:

This isn't just the case for .net development. Also, if you want to develop Silverlight apps, you have to install additional sdk. Why?

Was it helpful?

Solution

Basically .NET framework includes most of tools required for basic development - compilers, msbuild engine for projects. However, some specific tasks - assmebly linking, code generation for COM and webservices, CIL analysis etc. - require additional set of tools, which are included into Windows SDK.

IMHO .NET framework distribution is already large as it is, it won't be good if it grows yet more because of these tools.

OTHER TIPS

the .NET framework only covers managed application and is a subset of windows API. The Windows SDK (or whatever its called today) is a larger set of API which includes API which has not been wrapped by managed code yet.

Are you talking about Windows SDK being installed along with .NET framework when one installs Visual Studio?

If yes, this is because Windows SDK is (majorly) required for unmanaged development.

Also in the C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin folder you have tools like mt.exe which can be used to embed manifest externally into exes & dlls.(for managed apps too)

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top