Skip to content

Commit

Permalink
Evaluate boolean conditionals in MSBuild directly
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyrrrz committed Sep 25, 2023
1 parent 505f7b4 commit ebf3357
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DotnetRuntimeBootstrapper/DotnetRuntimeBootstrapper.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
</Target>

<!-- Embed the generated deps.json file inside this package -->
<Target Name="AddBuildDependencyFileToBuiltProjectOutputGroupOutput" BeforeTargets="BuiltProjectOutputGroup" Condition="'$(GenerateDependencyFile)' == 'true'">
<Target Name="AddBuildDependencyFileToBuiltProjectOutputGroupOutput" BeforeTargets="BuiltProjectOutputGroup" Condition="$(GenerateDependencyFile)">
<ItemGroup>
<BuiltProjectOutputGroupOutput Include="$(ProjectDepsFilePath)" TargetPath="$(ProjectDepsFileName)" FinalOutputPath="$(ProjectDepsFilePath)" />
</ItemGroup>
Expand Down

0 comments on commit ebf3357

Please sign in to comment.