-
Notifications
You must be signed in to change notification settings - Fork 525
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
binding redirects from the last group always win. #1284
Comments
I don't think this is what's going on. The last group from the lockfile is "Test" and I don't see NUnit Bindings. Try |
I'm sorry I misunderstood. The missing FSharp.Core is a different problem. Try and add modify the app.config-file to this: <dependentAssembly>
<bindingRedirect oldVersion="0.0.0.0-999.999.999.999" newVersion="7.0.0.0" />
<Paket>True</Paket> <!-- important -->
<bindingRedirect oldVersion="0.0.0.0-999.999.999.999" newVersion="7.0.0.0" />
</dependentAssembly> you'll see it will be removed. The next run Paket will first be add the bindings from the Main group, then removed everything in the Build group... and again in the Test group. the |
@Karamell I activated this in 2.23.2 could you please check if it works for you? |
it works for me @forki Both my own project and the paket project is ok. Thanks for fixing it so fast CI/CD FTW! |
This is probably related to #1218 .
If i clone paket and then run
paket install --redirects
(on paket itself) all App.config is rewritten to only contain binding redirects from the last group in the lock file. Easily reproduced.Am I using packet wrong?
The text was updated successfully, but these errors were encountered: