**Describe the bug** GitVersion.Tool sets [`NuGetVersionV2` as `Version`](https://github.com/GitTools/GitVersion/blob/686e17d4533ff1637bfc8bac70085ced90c2ded3/src/GitVersion.Core/VersionConverters/AssemblyInfo/ProjectFileUpdater.cs#L45) attribute in project file, however, [`GitVersion.MsBuild` uses `FullSemVer`](https://github.com/GitTools/GitVersion/blob/686e17d4533ff1637bfc8bac70085ced90c2ded3/src/GitVersion.MsBuild/msbuild/tools/GitVersion.MsBuild.targets#L55). ## Expected Behavior `GitVersion.MsBuild` should use `NuGetVersionV2` as `Version` attribute in project file. ## Actual Behavior `FullSemVer` is used as the value for the `Version` attribute in the project file. ## Possible Fix Change a value in targets to `$(GitVersion_NuGetVersionV2)` ## Steps to Reproduce <!-- If you are able to write your bug or scenario up as a `RepositoryFixture` test and submit a pull-request with it, it is going to increase the likelyhood of the bug being fixed. It will both make it easier to understand what you are trying to achieve, how GitVersion deviates from this expectation and to start debugging the problem. It will also make it easier for you to fix the problem yourself. Please look at the following example for how such a test can look like: https://github.com/GitTools/GitVersion/blob/251645f08802ea9dc401d5b2f2d681e8f8adf626/src/GitVersionCore.Tests/IntegrationTests/MasterScenarios.cs#L13-L32 Otherwise, please provide a link to a live example, or an unambiguous set of steps to reproduce this bug. --> ## Context It prevents from setting proper version for NuGet package with padded prerelease tag. As a workaround, it's possible to disable `UseFullSemVerForNuGet`. ## Your Environment <!-- Include as many relevant details about the environment --> <!-- you experienced the bug in --> - Version Used: 5.6.11