-
I'm building a console application, using CliFx which uses For some strange reason I can see the right values being filled in if I look into the file properties in Explorer, but the Assembly version does not show the correct value. The last tag is
However the version being printed by CliFx (and also if I manually access the "entry assembly" from the immediate window during debugging), stays at Does anyone have any clue what I'm missing here? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Okay.. my bad. I tried to set the <Target Name="UpdateAssemblyVersion" AfterTargets="MinVer">
<PropertyGroup>
<AssemblyVersion>$(MinVerVersion)</AssemblyVersion>
</PropertyGroup>
</Target> |
Beta Was this translation helpful? Give feedback.
Okay.. my bad. I tried to set the
AssemblyVersion
in the wrong way.After adding an additional target as was mentioned in the README (which I totally missed somehow), the
AssemblyVersion
is updated correctly.