-
-
Notifications
You must be signed in to change notification settings - Fork 173
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
AssemblyVersion only set for compile not restore #351
Comments
Interesting problem. Can you do a little research to see if something like this would solve your problem? Figure out which msbuild targets run in project <Target Name="FixVersionForRestore"
AfterTargets="NuGetRestore-Or-Whatever-Its-Called"
DependsOnTargets="GetBuildVersion" /> That said, I don't think this will work (at least, not all the time). The problem is you have a chicken-and-egg problem in that NB.GV itself is restored during restore. So MSBuild evaluates B.csproj, the restore targets are run, which brings down NB.GV (possibly for the first time on the box), and only then does the This is the same chicken and egg problem that led us to similar issues to nuget: |
Cheers for the info - I see why this is a bit of a problem. I'm about to disappear off-grid for a couple of weeks, but I should be able to have an experiment with this when I'm back. |
alright. Let me know if you think of something that works. |
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
If I have an application
A
with aProjectReference
to some assemblyB
versioned usingNerdbank.GitVersioning
, the generated code inB
setsAssemblyVersionAttribute
and friends but these are only visible at compile-time and not at restore-time (restore instead always seesB
's version as1.0.0
, and this is the version that is written in to theA
'sproject.assets.json
).Is there a way to set the version correctly for the NuGet restore (as it is if we specify
<VersionPrefix>
directly inB
's csproj instead of usingGitVersioning
)?Some context for why this is a problem - we currently use source dependencies for almost all of our internal code, and are in the process of migrating to binary dependencies (with the help of
GitVersioning
for controlling our package versions). As such, during the transition period we are likely to have dependency trees with bothProjectReferences
andPackageReferences
to the same assemblies. In this case in a NuGet restore the version of theProjectReference
seems to take precedence over the version of thePackageReference
, regardless of which is closer to the application in the dependency tree. Since this version is1.0.0
, this leads to version conflicts and build failures if thePackageReference
version is >1.0.0
.This is fairly easily resolved by adding a direct (rather than transitive)
PackageReference
from the application to the offending dependency, but I can imagine there are other potentially negative effects of NuGet seeing the wrong version during restore that I haven't come across yet.The text was updated successfully, but these errors were encountered: