Using .NET Framework for Add-in Applications
Many versions of .NET Framework may be installed with your Windows operating
system or Visual Studio. See
https://msdn.microsoft.com/en-us/library/bb822049(v=vs.110).aspx.
SOLIDWORKS
PDM Professional supports one or more versions of .NET Framework.
SOLIDWORKS
PDM Professional versions... |
Support
.NET Framework... |
2013 and
later |
4.0 and later |
2009 - 2012 |
3.5, 3.0, and 2.0 |
2008 and
earlier |
2.0 |
If your SOLIDWORKS PDM Professional 2012 or earlier version add-in application
is compiled using Microsoft Visual Studio 2010 and a .NET Framework version
other than version 2.0, then SOLIDWORKS PDM Professional may show the following message when you
try to load the
add-in:
“The Archive Server could not open the Windows Registry.”
- Right-click the project in the Solution Explorer.
- Select Properties.
- Click Compile > Advanced Compile Options.
- Select .NET Framework 2.0.
- Click OK.
After changing your project’s target framework to .NET Framework 2.0, you might
no longer be able to reference the SOLIDWORKS PDM Professional
nnnn
Type Library (EdmInterface.dll), because Visual Studio created the DLL using the latest version of .NET Framework,
but you just changed the
project to target an earlier version of .NET Framework (2.0). If you encounter this
problem, you can generate a compatible SOLIDWORKS PDM Professional primary interop
assembly by using the Microsoft's Type Library Importer (TlbImp.exe) that is
included in an earlier
version of the Microsoft .NET Framework SDK.
- Download and install a version of .NET Framework SDK that is
compatible with your add-in project's version.
- Open a Windows Command Prompt.
- Navigate to C:\Program Files\Microsoft SDKs\Windows\vx.x\Bin
in which the earlier .NET Framework version of TlbImp.exe is
installed.
- Type TlbImp.exe install_dir\EdmInterface.dll /sysarray /out:Interop.EdmLib.dll /namespace:EdmLib.
- C++
This problem can occur at runtime if the add-in failed to register its DLL
during the build process. To solve this problem, ensure that your add-in
registers the DLL:
- Open your C++ add-in project.
- Right-click the project in the Solution Explorer.
- Select Properties.
- Click Linker > Input.
- Configure Module Definition File to point to the add-in's
project_name.def.
- Save the project.
- Click Build > Clean Solution.
- Click Build > Build Solution.
See Also
Using .NET Framework in
Stand-alone Applications