-
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
include-referenced-projects lead to strange changes in nuspec #1848
Comments
/cc @jam40jeff @tsibelman |
@forki I have verified that this behavior existed before the introduction of |
I have two projects ProjA, ProjB.
Both have paket.template files.
ProjA have reference to ProjB (in .csproj file)
I execute
paket pack output test
in solution folderIn result package ProjA have a dependence with min version specified to package ProjB.
But if i execute
paket pack output test include-referenced-projects
result package ProjA have a dependence without specified version to package ProjB
(
pin-project-references
do not change situation in this case)Expected behavior: ProjA have a dependence with min version to ProjB (or with fixed version if
pin-project-references
was specified)Sample solution in attached archive
PackIncludeRefProj.zip
The text was updated successfully, but these errors were encountered: