Strong Name in VS2010 versioning
-
Tuesday, July 10, 2012 5:08 PM
I strongly named a third party assembly with .Net 4.x. My VS project is using 3.5 and cannot be upgraded. How do I strongly name the third party assemblies with .Net 3.5? I pulled down the 3.5 SDK, but Ilasm.exe is not included. Is there a way to target 3.5, ith Ilasm 4.0?
All Replies
-
Thursday, July 12, 2012 5:49 AMModerator
Hi Rizle,
Welcome to the MSDN Forum.
So far there is no way to achieve this goal.
You can ask for the 3.5 version third party DLL or upgrade your project to 4.0.
Best regards,
Mike Feng
MSDN Community Support | Feedback to us
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
- Proposed As Answer by Kris444 Thursday, July 12, 2012 5:18 PM
- Marked As Answer by Mike FengMicrosoft Contingent Staff, Moderator Thursday, July 19, 2012 3:31 AM
-
Tuesday, July 17, 2012 4:58 AMModerator
ilasm.exe is part of .NET Framework redist itself, not part of its SDK:
%WINDIR%\Microsoft.NET\Framework\v2.0.50727\ilasm.exe (2.0, 3.0 or 3.5 version as .NET 3.x versions are in-place updates of CLR where ilasm lives)
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\ilasm.exe-Karel
- Proposed As Answer by Karel ZikmundMicrosoft Employee, Moderator Tuesday, July 17, 2012 4:58 AM
- Marked As Answer by Mike FengMicrosoft Contingent Staff, Moderator Thursday, July 19, 2012 3:31 AM
-
Wednesday, August 01, 2012 9:56 PM
Mike, Karel,
Thanks for the reply. I pretty much figured out what you described, over time. I forgot check up on the forum. In the end I dumped the Strong Name stuff and reverted back to .Net 2.x versions of the dlls. It seems most developement systems work best when one develops new code in the current version. Upgrades are always an issue. We have the same problem with our applications. But it keeps us busy.
Thanks
rizle

