-
-
Notifications
You must be signed in to change notification settings - Fork 167
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Assemblies are not Strongly Named, hence unusable to me in current form #123
Comments
So I've looked into this and the easiest way to do this is according to this article is just creating a file in using Visual Studio. does anyone know the effect it would have on the status quo as it is? Will everything just work as normal for the current users? |
As far as I know just adding the signature file has not other effects on
the assembly and its users than enabling the assembly to be registerable in
the global assembly cache, being able to do version based references to the
assembly (being able to have different versions of the assembly installed
while the user specifying the version(s) supported), and no longer getting
errors when trying to reference the assembly from other strongly named
assemblies. Feel free to research on your own.
Op vr 12 jul. 2019 15:34 schreef Matt Lethargic <[email protected]>:
… So I've looked into this and the easiest way to do this is according to
this article
<https://docs.microsoft.com/en-us/dotnet/framework/app-domains/how-to-sign-an-assembly-with-a-strong-name>
is just creating a file in using Visual Studio. does anyone know the effect
it would have on the status quo as it is? Will everything just work as
normal for the current users?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#123?email_source=notifications&email_token=AAA24MP4Q2DLFNR43IJWOGTP7CB5NA5CNFSM4HICIMCKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODZZYTAI#issuecomment-510888321>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAA24MMBW4INXXFSABXB2G3P7CB5NANCNFSM4HICIMCA>
.
|
so you want a pull request for this? |
Yep, that would be nice ;) |
Thanks again @SimonCropp ! |
xfischer
added a commit
that referenced
this issue
Aug 6, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I tried to reference your NuGet package, but unfortunately (as my C# solution consists of Strongly Named assemblies), all I get at runtime isthe following exception:
System.IO.FileLoadException: 'Could not load file or assembly '[name], Version=#.#.#.#, Culture=neutral, PublicKeyToken=null' or one of its dependencies. A strongly-named assembly is required. (Exception from HRESULT: 0x80131044)'
Could you please update your package to be strongly named? Or else I see no other option to include some of your source code in my own instead of referencing your NuGet package, which sort of defeats the whole purpose, doesn't it...?
The text was updated successfully, but these errors were encountered: