Skip to content

Commit

Permalink
Improved stability for locating generated file.
Browse files Browse the repository at this point in the history
  • Loading branch information
kekyo committed Oct 11, 2023
1 parent f510a7f commit 650766a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RelaxVersioner/build/RelaxVersioner.targets
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<!-- For C++ (or C++/CLI) -->
<PropertyGroup Condition="'$(Language)' == 'C++'">
<RelaxVersionerOutputDir Condition="'$(RelaxVersionerOutputDir)' == ''">$([System.IO.Path]::Combine('$(MSBuildProjectDirectory)','$(IntDir)'))</RelaxVersionerOutputDir>
<RelaxVersionerOutputPath Condition="'$(RelaxVersionerOutputPath)' == ''">$([System.IO.Path]::Combine('$(RelaxVersionerOutputDir)','RelaxVersioner$(DefaultLanguageSourceExtension)'))</RelaxVersionerOutputPath>
<RelaxVersionerOutputPath Condition="'$(RelaxVersionerOutputPath)' == ''">$([System.IO.Path]::Combine('$(RelaxVersionerOutputDir)','RelaxVersioner_Metadata$(DefaultLanguageSourceExtension)'))</RelaxVersionerOutputPath>
<RelaxVersionerLanguage Condition="('$(RelaxVersionerLanguage)' == '') AND ('$(CLRSupport)' == 'true')">C++/CLI</RelaxVersionerLanguage>
<RelaxVersionerLanguage Condition="'$(RelaxVersionerLanguage)' == ''">C++</RelaxVersionerLanguage>
<RelaxVersionerNamespace Condition="'$(RelaxVersionerNamespace)' == ''"></RelaxVersionerNamespace>
Expand All @@ -74,7 +74,7 @@
<!-- For all languages except C++ -->
<PropertyGroup Condition="'$(Language)' != 'C++'">
<RelaxVersionerOutputDir Condition="'$(RelaxVersionerOutputDir)' == ''">$([System.IO.Path]::Combine('$(MSBuildProjectDirectory)','$(IntermediateOutputPath)'))</RelaxVersionerOutputDir>
<RelaxVersionerOutputPath Condition="'$(RelaxVersionerOutputPath)' == ''">$([System.IO.Path]::Combine('$(RelaxVersionerOutputDir)','RelaxVersioner$(DefaultLanguageSourceExtension)'))</RelaxVersionerOutputPath>
<RelaxVersionerOutputPath Condition="'$(RelaxVersionerOutputPath)' == ''">$([System.IO.Path]::Combine('$(RelaxVersionerOutputDir)','RelaxVersioner_Metadata$(DefaultLanguageSourceExtension)'))</RelaxVersionerOutputPath>
<RelaxVersionerLanguage Condition="'$(RelaxVersionerLanguage)' == ''">$(Language)</RelaxVersionerLanguage>
</PropertyGroup>

Expand Down

0 comments on commit 650766a

Please sign in to comment.