Skip to content

Commit 050db8c

Browse files
author
mikeblome
committed
updated linux copy sources prop page
1 parent 565998d commit 050db8c

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

docs/linux/prop-pages/copy-sources-project.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "Copy Sources Project Properties (Linux C++)"
3-
ms.date: "06/07/2019"
3+
ms.date: "10/16/2019"
44
ms.assetid: 1a44230d-5dd8-4d33-93b4-e77e03e00150
55
---
66
# Copy Sources Project Properties (Linux C++)
@@ -21,4 +21,14 @@ Sources To Copy | Specifies the sources to copy to the remote system. Changing t
2121
Copy Sources | Specifies whether to copy the sources to the remote system.
2222
Additional Sources To Copy | Specifies additional sources to copy to the remote system. Optionally the list can be provided as a local to remote mapping pairs using a syntax like this: fulllocalpath1:=fullremotepath1;fulllocalpath2:=fullremotepath2, where a local file can be copied to the specified remote location on the remote system.
2323

24+
@SourcesToCopyRemotely and @DataFilesToCopyRemotely refer to item groups in the project file. To modify which sources or data files are copied remotely, edit the *vcxproj* file like this:
25+
26+
```xml
27+
<ItemGroup>
28+
<MyItems Include=“foo.txt” />
29+
<MyItems Include=“bar.txt” />
30+
<DataFilesToCopyRemotely Include=”@(MyItems)” />
31+
</ItemGroup>
32+
```
33+
2434
::: moniker-end

0 commit comments

Comments
 (0)