Skip to content

Commit

Permalink
Try to prevent races in the build
Browse files Browse the repository at this point in the history
  • Loading branch information
eggrobin committed Feb 1, 2018
1 parent 11561b5 commit 316f981
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion google_glog.props
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
<ItemGroup />
<Target Name="CopyGlogDll" AfterTargets="Build">
<Copy SourceFiles="$(SolutionDir)..\Google\glog\$(PrincipiaDependencyConfiguration)\$(Platform)\libglog.dll"
DestinationFolder="$(OutDir)"/>
DestinationFolder="$(OutDir)"
SkipUnchangedFiles="true"/>
</Target>
</Project>
3 changes: 2 additions & 1 deletion google_protobuf.props
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
<ItemGroup />
<Target Name="CopyProtobufDll" AfterTargets="Build">
<Copy SourceFiles="$(SolutionDir)..\Google\protobuf\vsprojects\$(PrincipiaDependencyConfiguration)\$(Platform)\libprotobuf.dll"
DestinationFolder="$(OutDir)"/>
DestinationFolder="$(OutDir)"
SkipUnchangedFiles="true"/>
</Target>
</Project>

0 comments on commit 316f981

Please sign in to comment.