Skip to content

Commit

Permalink
Correct props file path case (#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 SabotageAndi committed Jun 28, 2019
1 parent c195785 commit ba116a1
Showing 1 changed file with 2 additions and 2 deletions.
@@ -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 ba116a1

Please sign in to comment.