Wrox Programmer Forums
|
Visual Studio 2005 For discussing Visual Studio 2005. Please post code questions about a specific language (C#, VB, ASP.NET, etc) in the correct language forum instead.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Visual Studio 2005 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old December 27th, 2007, 06:32 AM
Registered User
 
Join Date: Dec 2007
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default VS2003 to VS2005 conversion problem

I tried converting VS2003 project to vs2005. It converted successfully. Whenever I open the project, Iam getting

 
Quote:
quote:Strong name validation failed for assembly '<projectname>.vshost.exe'
Quote:
The file may have been tampered with or it was partially signed but not fully signed with the correct private key.
Note. Iam using third party component (Infragistics(UI dlls) and Entityspace(DAL dlls). I upgraded references also.

I want to
1.How to remove strong name from vs2003 project.
2.If i maintain string name in vs2003, how to overcome in vs2005.

 
Old November 5th, 2008, 03:49 PM
Registered User
 
Join Date: Nov 2008
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Was there any resolution to this issue? I'm having a similar problem.

 
Old August 25th, 2010, 07:58 AM
Registered User
 
Join Date: Aug 2010
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default Solution

We've seen this problem as well. In our case, it was caused by the requiredRuntime/supportedRuntime settings in the relevant .exe.config file specifying the .NET Framework 1.1 instead of 2.0.

We changed the lines in the relevant .exe.config file from:

<configuration>
<startup>
<requiredRuntime version="V1.1.4322" safemode="true" />
<supportedRuntime version="V1.1.4322" />
</startup>
</configuration>

to:

<configuration>
<startup>
<supportedRuntime version="v2.0.50727" />
</startup>
</configuration>

and the problem was cured.

Reference: http://social.msdn.microsoft.com/For...b-e1a1abb4a409





Similar Threads
Thread Thread Starter Forum Replies Last Post
problem with date conversion hertendreef SQL Server 2005 0 August 20th, 2007 02:49 PM
VS2005 Team Edition Problem - Text does not appear asmodeos Visual Studio 2005 0 August 19th, 2007 02:51 PM
problem in installing vs2005 prashant_telkar General .NET 0 June 19th, 2007 04:02 AM
inline assembly on VS2005 c++ PROBLEM Huskey C++ Programming 0 January 24th, 2007 10:58 AM
Conversion Problem monika.vasvani ASP.NET 1.0 and 1.1 Professional 1 October 30th, 2006 03:17 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.