Skip to content
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

Closed
r-bennett opened this issue Jun 10, 2019 · 3 comments
Closed

AssemblyVersion only set for compile not restore #351

r-bennett opened this issue Jun 10, 2019 · 3 comments

Comments

@r-bennett
Copy link
Contributor

If I have an application A with a ProjectReference to some assembly B versioned using Nerdbank.GitVersioning, the generated code in B sets AssemblyVersionAttribute and friends but these are only visible at compile-time and not at restore-time (restore instead always sees B's version as 1.0.0, and this is the version that is written in to the A's project.assets.json).

Is there a way to set the version correctly for the NuGet restore (as it is if we specify <VersionPrefix> directly in B's csproj instead of using GitVersioning)?

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 both ProjectReferences and PackageReferences to the same assemblies. In this case in a NuGet restore the version of the ProjectReference seems to take precedence over the version of the PackageReference, regardless of which is closer to the application in the dependency tree. Since this version is 1.0.0, this leads to version conflicts and build failures if the PackageReference 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.

@AArnott
Copy link
Collaborator

AArnott commented Jun 10, 2019

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 B during a restore, and then add this target to B.csproj:

<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 GetBuildVersion target even exist, and not for that project evaluation since it already occurred.

This is the same chicken and egg problem that led us to similar issues to nuget:

NuGet/Home#6536
NuGet/Home#4790

@r-bennett
Copy link
Contributor Author

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.

@AArnott
Copy link
Collaborator

AArnott commented Jun 11, 2019

alright. Let me know if you think of something that works.

@AArnott AArnott closed this as completed Jun 11, 2019
AArnott pushed a commit that referenced this issue Feb 25, 2025
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants