Skip to content

Commit

Permalink
Correct props file path case (SpecFlowOSS#1637)
Browse files Browse the repository at this point in the history
SpecFlow.Tools.MsBuild.Generation.props used a different casing to reference the Buildsystem folder than is present in the package. This seems like the smallest change to correct an out of the box failure utilising the MsBuild generation on linux.
  • Loading branch information
MikeVerius authored and idg10 committed Jan 8, 2020
1 parent add5b3b commit c22e346
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project TreatAsLocalProperty="TaskFolder;TaskAssembly">

<PropertyGroup>
<SpecFlow_CpsExtensionDesignTimeTargetsPath Condition="'$(SpecFlow_CpsExtensionDesignTimeTargetsPath)' == ''">$(MSBuildThisFileDirectory)CPS\BuildSystem\CpsExtension.DesignTime.targets</SpecFlow_CpsExtensionDesignTimeTargetsPath>
<SpecFlow_CpsExtensionDesignTimeTargetsPath Condition="'$(SpecFlow_CpsExtensionDesignTimeTargetsPath)' == ''">$(MSBuildThisFileDirectory)CPS\Buildsystem\CpsExtension.DesignTime.targets</SpecFlow_CpsExtensionDesignTimeTargetsPath>
</PropertyGroup>

<Import Project="$(SpecFlow_CpsExtensionDesignTimeTargetsPath)" Condition="'$(DesignTimeBuild)' == 'true' " />
Expand Down Expand Up @@ -79,4 +79,4 @@

<Import Project="SpecFlow.Tools.MsBuild.Generation.tasks"/>

</Project>
</Project>

0 comments on commit c22e346

Please sign in to comment.