Skip to content

Commit

Permalink
Update GitVersion.MsBuild.targets
Browse files Browse the repository at this point in the history
Remove enclosing quotes from the GitVersionFileExe variable.
  • Loading branch information
AkisKK authored and arturcic committed Jan 14, 2021
1 parent 4b3ca4a commit 1f8ff17
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<UsingTask TaskName="UpdateAssemblyInfo" AssemblyFile="$(GitVersionAssemblyFile)"/>

<Target Name="RunGitVersion">
<Exec Command="&quot;$(GitVersionFileExe)&quot; &quot;$(MSBuildProjectDirectory)&quot; $(GitVersion_ToolArgments)" />
<Exec Command="$(GitVersionFileExe) &quot;$(MSBuildProjectDirectory)&quot; $(GitVersion_ToolArgments)" />
</Target>

<Target Name="WriteVersionInfoToBuildLog" DependsOnTargets="RunGitVersion" BeforeTargets="$(GitVersionTargetsBefore)" Condition="$(WriteVersionInfoToBuildLog) == 'true'">
Expand Down

0 comments on commit 1f8ff17

Please sign in to comment.