-
Notifications
You must be signed in to change notification settings - Fork 16
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
A bunch of random improvements #58
base: main
Are you sure you want to change the base?
Conversation
@@ -115,12 +117,13 @@ await GetPackageDependencies( | |||
|
|||
foreach (var path in libraries) | |||
{ | |||
var assembly = Assembly.LoadFrom(path); | |||
if (context.TryAddReferenceAssembly(assembly)) | |||
var asm = Assembly.LoadFile(path); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
var asm = Assembly.LoadFile(path); | |
var assembly = Assembly.LoadFile(path); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think these should be split into separate files at this point.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can do that, was just leaving it as I found it originally
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I think we should for the sake of maintainability for now.
No description provided.