What files are stored in the reference builds \ Microsoft \ Framework \ .NETFramework \ v4.0?

I would like to know which files are stored in

C: \ Program Files (x86) \ Reference Assemblies \ Microsoft \ Framework.NETFramework \ v4.0 \

Are these files for WPF / Silverlight?

And which installer installs the files in this folder?

I would like to know this because we have developed a winforms application with custom WPF controls. When we deploy the application on a bare system, the application crashes when these controls are used ...

+6
source share
1 answer
  • WPF is part of the .NET Framework since version 3.0
  • Silverlight is different from WPF and has a separate download SDK
  • Files located in the Reference Assemblies folder are usually installed by Visual Studio when installing the SDK and (in your case) are part of the Windows 7 and .NET 4 Framework SDKs .
  • Winforms and WPF are completely different technologies. In short, Winforms are wrappers over the Windows C ++ MFC library, and WPFs are wrappers over the DirectX library.
  • You should check the difference between the client profile and the full map , because most of the time your application should target the client profile and in only a few scenarios, it should Full structure. By the way, if you use the .NET Framework 4.5 or higher , the client profile has been interrupted . This simplifies the deployment process.
  • Check link properties in a C # project if Copy Local set to True . It will copy the specified library to the project output directory.
0
source

Source: https://habr.com/ru/post/905919/


All Articles