In .NET platform, a strong name consists of the assembly's identity—its simple text name, version number, and culture information (if provided)—plus a public key and a digital signature. It is generated from an assembly file (the file that contains the assembly manifest, which in turn contains the ...
-1
votes
0answers
15 views
Batch file for assigning Strong Name Key for multiple C# projects in Single solution [closed]
I have 40 C# projects in single solution, I want run Batch file for assigning Strong Name Key for multiple C# projects in Single solution
-1
votes
0answers
12 views
Reuse Strong name key's reference with number of projects in single solution
40 projects in single solution(VS2010). Now I have created one Strong Name Key(SNK) and added each project and refered SNK file.
Now, my requirement is , SNK file I have to create and keep it one ...
0
votes
1answer
24 views
Two Strong name key's handling in C# project through
I have arround 40 project in single solution(VS2010). Now I have created one Strong Name Key(SNK) and added each project and refered SNK file.
Now, my requirement is , Two SNK file I have to create ...
-1
votes
0answers
72 views
Assembly generation failed Referenced assembly '' does not have a strong name?
I am using Visual Studio 2012, I am trying to give assemblies strong name, after right-clicking the solution and signing the DLLs, third parties DLLs give : Error 28 Assembly generation failed -- ...
0
votes
0answers
29 views
Unable to obtain public key for StrongNameKeyPair when getting PublicKey property
I have a "very" simple program with two lines of code
var p = new StrongNameKeyPair("C:\\mykey.snk");
var b = p.PublicKey;
but the last line fails with unable to obtain public key for ...
0
votes
1answer
71 views
Couchbase not working on production server
I am using Couchbase client inside my asp.net web mvc project (i downloaded the dll files from here)
I have a Couchbase Server installed on Windows Server 2012 x64.
When developing the project, ...
0
votes
1answer
116 views
How to extract publickeytoken using powershell?
I am trying to check whether the assembly is strong name signed or not.
Following is my powershell script
function Get-AssemblyStrongName($assemblyPath)
{
...
0
votes
0answers
41 views
Mixing strongly named assemblies and not strongly named assemblies in a solution
I have a problem I hope someone can help me with.
I have a winforms vb.net 3.5 solution which has some of the assemblies that need to be used in a class library vb.net 3.5 solution for a SSIS ...
2
votes
2answers
99 views
Weak assembly changed to strong assembly
I have a plugin structure which all is compiled using weak assemblies. I want to change this now but running into some difficulties.
interface.dll contains my interface for my plugins (IPlugin)
...
0
votes
1answer
124 views
SharePoint 2010: Setting up a local dev environment from production data - Could not load file or assembly due to invalid PublicKeyToken
I have tried multiple ways to get the production SharePoint content to my newly installed local development environment that is running on a VM Windows Server 2008 R2. After an export of the farm and ...
9
votes
2answers
446 views
.Net 4 constantly wasting one CPU core on StrongNameSignatureVerification
We have a mixed mode assembly application (MFC+WinForms) running on .Net 4, Windows 2008 R2 that constantly uses 100% cpu on one thread.
Using ProcessExplorer we see the following stack on the ...
0
votes
0answers
52 views
How do I strongly name an assembly
I am trying to create a strongly named assembly for a dll in vb.net
3.5 and visual studio 2008 so that I can place it in the GAC. I have
tried reading the documentation on the web but I am still ...
0
votes
1answer
123 views
A strongly named assembly is required sporadic file not found when binding
Our asp.net web servers are giving occasional binding problems which result in a page not being displayed to the end user. Pressing refresh usually works.
If you look in the event log you get the ...
0
votes
1answer
41 views
Strongly named / signed Berkelium-Sharp assembly
I need to use Berkelium-Sharp from signed code. Does anyone know where I could download a strongly named assembly?
Is there anyone reading this that is currently compiling Berkelium-Sharp ...
0
votes
0answers
115 views
Could not load file or assembly 'EntityFramework' or one of its dependencies - Strong Name verification
I've recently started to get the following error in my .NET 4.5 MVC-Application:
Could not load file or assembly 'EntityFramework' or one of its dependencies. Strong name signature could not be ...
1
vote
1answer
45 views
Mono Runtime - Can it be forced to ONLY run strong named or signed assemblies? [closed]
Is there some incantation of Mono Runtime configurations that can be used to force Mono to only run strong named or signed assemblies?
0
votes
0answers
180 views
StrongNameSignatureVerification access violation
I have an .NET executable assembly which references an unmanaged C++ dll through P/invoke.
After strong name signing the .net asembly I am getting Access violations at some random points when ...
0
votes
1answer
114 views
Assembly signing, certificates, key files - are these needed?
I would like to start signing my assemblies so that they can be deployed to the GAC and shared/re-used across multiple applications etc.
MS provide a lot of documentation but it doesn't really ...
0
votes
1answer
49 views
Is the GAC checked before the file system for non “strong named” assembly references?
Given
we have a reference to a not strong named assembly
a non strong named version of that existing in the bin directory of an app.
a strong named version of that assembly with same version number ...
2
votes
3answers
429 views
Strongly naming a 3rd party assembly - Could not load file or assembly
I am writing a Visual Studio 2012 extension, for internal use, which requires that all assemblies have a strong name. I am dependent on RestSharp (and a few other dlls), and since it is not strongly ...
0
votes
1answer
112 views
Syntax error at token MZ using ilasm [closed]
I have a prebuilt dll assembly that I am trying to use. It is a winforms library and when I reference it I can use it in the designer/code without error. When I run it I get:
Assembly generation ...
-1
votes
1answer
77 views
Signing an Unsigned dll changes dll behavior
I'm not sure what to ask exactly because i'm not sure exactly whats the problem. I have a project that needs all its assembly files to be signed and i have a 3rd party assembly that's unsigned. I'm ...
0
votes
0answers
64 views
MethodAccessException raised after VS 2012 was installed
We have a big project that contains about 40 binaries (C#, C++ CLI, C++). Everything WORKED fine, until I had to install Azure SDK on my PC (it installed me some VS 2012 Express).
Now after starting ...
7
votes
1answer
259 views
Using a signed dependency in two Visual Studio instances, one elevated/administrator, one normal
I am running Visual Studio 2012 and writing a backend web service and desktop software in separate solutions. Because the desktop software needs to run elevated ("as administrator"), I need to run the ...
0
votes
0answers
32 views
Strong name binaries cannot be opened in VS2010 designer
I just ported my projects from VS2008 to VS2010. In VS2010 when i open up a designer it gives me the following exception
Could not load file or assembly 'Myassembly', Version=1.0.0.0, ...
2
votes
0answers
110 views
Strong name signed assembly is invalid when ported to VS2010
I just ported my CPP and C# projects from VS2008 to VS2010. I used the conversion wizard to convert all my projects. The issue i face is i get an error "../Mydll.dll is a strong-name signed assembly ...
0
votes
1answer
82 views
How to tell visual studio not needing the third party assembly to be signed?
I have a website with one class library which have been strongly signed.
I'd need to use a third party .dll which hasn't been signed and I don't have access to its source code to sign it.
How would ...
2
votes
1answer
168 views
Should each project being signed with a separate Strong Name Key (.snk)?
Within my Visual Studio solution I have a web site and 4-5 class library projects which are referenced., some of which reference external third party assemblies as well.
I've been given the task of ...
0
votes
0answers
96 views
Mono for Android strong name signature
On one of our machines, we get the following error when trying to use System.Json to do some json parsing.
The error message we get is show below:
Could not load file or assembly 'System.Json, ...
0
votes
2answers
318 views
StrongName a .NET assembly without access to original keyfile
I've made some changes to the code in an existing .NET assembly dll. I do not have the keyfile used to sign the code. How can I force the .NET executable to load it, without registering it for ...
0
votes
1answer
55 views
Newly signed assembly not found (stopping deployment)
Quite an urgent one this - my solution wouldn't build because a referenced assembly (another project) needed signing with a strong name key. I signed it and it's now "system cannot find the file ...
1
vote
0answers
80 views
Call extern C++ method from only strong named C# assembly
How can I specify friend assembly in C++ (not Visual).
I have a C++ assembly that contains extern method, which I use in C# strong named assembly. And I want that only my C# method in strong named ...
1
vote
1answer
178 views
msbuild package task fails to include assembly DocumentFormat.OpenXml
I have a visual studio 2010 solution building an mvc 3 site. One of my class library projects references the assembly DocumentFormat.OpenXml.dll. When I compile locally and on the build server, the ...
3
votes
4answers
1k views
“Unable to find manifest signing certificate in the certificate store” - even when add new key
I cannot build projects with a strong name key signing - the message in the title always comes up.
Yes the project was initially copied over from another machine. However even if I add a new key via ...
0
votes
1answer
100 views
Compile Failed because of Strong Name
There're two dlls I want to reference in my project. They are A.dll and B.dll. B.dll referenced A.dll. They don't have strong name. My project C need to sign strong name. So I need to sign strong name ...
2
votes
2answers
537 views
Unmanaged C++ - need strong name to be referenced by C++/CLI dll with strong name?
I have a unmanaged C++ dll, which will be used by a managed C++/CLI wrapper .dll, which will eventually be used by a C# project.
C# project is strong-named, so is the wrapper .dll. I tried doing the ...
0
votes
1answer
188 views
Strong name dll - how to troubleshoot?
I have followed instruction from other posts and from http://msdn.microsoft.com/en-us/library/xwb8f617.aspx to give strong name to my dll, which is a native (unmanaged) C++ dll. However when it is ...
0
votes
1answer
152 views
Strongly named assembly in place of a non-named assembly
Is there a way to use a strongly named assembly in place of a non-named assembly?
The real question is this:
I am creating a library (eg: SqliteOrm.dll) (Portable Class Library in my instance, by ...
0
votes
0answers
26 views
.net looks for assembly with publickey when reference has no public key
I have code that references an assembly, and while we were trying to package the thing up, we strong named all the assemblies. We have since removed all the strong names, to continue development (not ...
1
vote
2answers
143 views
implications of publishing a .net strong name private key?
Say I'd like to release an open-source class library. I'm wondering if I should publish the snk with it or not. I do want an snk to make the dll GAC-friendly for example. I've seen big projects with a ...
2
votes
1answer
367 views
Accessing newly signed third party DLL gives error
I have a signed application that uses third party DLLs. These DLLs were not signed. - So far no problem for the first step: I just signed them (getting *.il with ildasm.exe, ajust publickeytoken in ...
0
votes
0answers
95 views
Strong-named NAnt Build Not Loading Satellite Assemblies at Run-time
I'm working with a .NET application that supports localization in several languages. I just discovered that if I use what I thought was a correctly signed version of the application built with NAnt, ...
0
votes
1answer
366 views
Using a WINMD library causes a Strong Name Validation exception
Using the Visual Studio 11 beta on the Windows 8 consumer preview.
The problem is: if a try to use a class from a class library that has its output type set to WinMD, I get a Security exception ...
1
vote
1answer
58 views
Does an assembly's signature need to be authenticatable?
From what I've seen on the internet – it doesn't. (I'm referring to strong name signing of an assembly, not to certificates by certificate authorities) Which leads me to these questions:
Why have ...
2
votes
1answer
183 views
Any security issues adding a strong name key to source control for an open source project?
Given a Strong Name Key (snk file). Is there any security issues adding this file to source control for an open source project?
0
votes
1answer
69 views
System variable for Microsoft SDKs
Similar to the %WINDIR% system variable which we have for the Windows directory, do we have any system variable which points to the latest version of the Microsoft SDK folder, so that I can access the ...
0
votes
2answers
124 views
How can I include a strong name assembly file in my installer
I have a custom action to execute a custom action DLL but it is failing and I believe it's because it does not know how to read the strong name assembly
so I have this:
<Binary Id="StrongName" ...
0
votes
0answers
216 views
Where to find EcmaPublicKey.snk for a dll?
I am not so familiar to .snk files but I am doing some tricky things (just for testing)
with reflector and a .net framework assembly.
The problem is that I need to sign this assembly (when ...
0
votes
1answer
337 views
Strong Named satellite assemblies using ResGen & AL with multiple resx / resources files
For whatever reason, when compiling multiple .resources files into a single satellite assembly (.dll) the resources will not show. Compiling a single resource will work. Here are the steps I used...
...
0
votes
0answers
63 views
Strong Name for C++ DLL [duplicate]
Possible Duplicate:
How to register a non-strong-name assembly to be loaded as if it were in the GAC?
I have C++ dll with out strong name. How to create the strong name for the same dll. I ...
