Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/tasks/tasks.proj
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@
<Target Name="GetTasksSrc"
DependsOnTargets="PrepareProjectReferences">
<PropertyGroup>
<TasksIntermediateFile>$([MSBuild]::NormalizePath('$(ArtifactsObjDir)', '$(MSBuildProjectName)', 'Debug', 'build-semaphore.txt'))</TasksIntermediateFile>
<TasksIntermediateFile Condition="'$(TargetOS)' == '' or '$(TargetArchitecture)' == ''">$([MSBuild]::NormalizePath('$(ArtifactsObjDir)', '$(MSBuildProjectName)', 'Debug', 'build-semaphore.txt'))</TasksIntermediateFile>
<!-- if we build for several architectures in the same dirty tree, the tasks for one may be different from the tasks for another -->
<TasksIntermediateFile Condition="'$(TargetOS)' != '' and '$(TargetArchitecture)' != ''">$([MSBuild]::NormalizePath('$(ArtifactsObjDir)', '$(MSBuildProjectName)', 'Debug', 'build-semaphore-$(TargetOS)-$(TargetArchitecture).txt'))</TasksIntermediateFile>
</PropertyGroup>

<!-- Include both the project file and its sources as an input. -->
Expand Down