-
Notifications
You must be signed in to change notification settings - Fork 158
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
Add strong name #288
Add strong name #288
Conversation
To be merged before v9.0.0 is released. |
98078ed
to
e88683f
Compare
@twcclegg have you tried generating an snk key instead? might help with the build errors - https://learn.microsoft.com/en-us/dotnet/standard/assembly/create-public-private-key-pair#create-a-key-pair then you can use visual studio to sign it - https://learn.microsoft.com/en-us/dotnet/standard/assembly/sign-strong-name#create-and-sign-an-assembly-with-a-strong-name-by-using-visual-studio |
Hey Wilson, yeah that’s my general plan. I have to borrow a Windows machine but should be able to do that in the next couple days. |
7694b65
to
d204ee3
Compare
|
@twcclegg nice work on the strong naming! |
@twcclegg do you want to consider committing the private key directly to the repo instead of having it in github action secrets? this is the recommendation by microsoft - https://learn.microsoft.com/en-us/dotnet/standard/assembly/strong-named#what-makes-a-strong-named-assembly
|
Changes