-
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
Adding support for SpecificVersion attribute on assembly references #2413
Conversation
can you rebase/merge? Currently master is green so it might solve the spurious issues you encountered (there was a problem with the integration test suite which was solved)... |
Nevermind you were faster :) |
Is this flag enabled by default? |
The default is |
We should not emit it then in default case to reduce impact in csproj |
I thought that i should add it to csproj as private is also added by default. |
@forki If we get this into paket 5 I guess it's OKisch, because it will already rewrite a lot because of new restriction system, netcore and xamarin support... |
Okish yes, but still lets keep it small if possible.
Am 11.06.2017 4:13 nachm. schrieb "Matthias Dittrich" <
[email protected]>:
… @forki <https://github.com/forki> If we get this into paket 5 I guess
it's OKisch, because it will already rewrite a lot because of new
restriction system, netcore and xamarin support...
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#2413 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AADgNHgkWQGmuOcac2iaCMA-eeHTm1i7ks5sC_YdgaJpZM4N2Zq0>
.
|
So which way should i go? |
Omit only if not explicitly specified. That's what we always do.
Am 11.06.2017 4:18 nachm. schrieb "Bastian Schmidt" <
[email protected]>:
… So which way should i go?
Omit it if it's not specified (None) or also omit it if it's specified
with the default value of True?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#2413 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AADgNElIifBBqcTdCk2r6OTvCIObbTUVks5sC_dLgaJpZM4N2Zq0>
.
|
Ok. |
Should be as expected now + tests are present now too. |
💋 |
Urgs I forgot to ask for docs and already released it in rc006. Can you please send a PR to the docs as well? I think it needs to go to https://github.com/fsprojects/Paket/blob/master/docs/content/nuget-dependencies.md#copy_local-settings and https://github.com/fsprojects/Paket/blob/master/docs/content/references-files.md#copy_local-settings |
Of course. Didn't know about that. Will get it done till friday. |
This PR adds support for
SpecificVersion
on assembly references.This was requested in #2040.
I'm currently having a hard time trying to find out which integration tests i broke with my change as they often
fail because either the path is too long (exceeds 260 characters for file or 248 for directory) (solved by moving to c:\paket) or theyfail withThe tests failing with this error are:
The following tests timeout:
I don't think those fails are caused by my changes, but i can't be sure...
Please tell me if i did anything wrong as this is the first time i am in contact with F#.