-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDualServer.props
More file actions
33 lines (33 loc) · 1.65 KB
/
DualServer.props
File metadata and controls
33 lines (33 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup
Condition="'$(CopyDeployFilesBeforeTargets)' == '' and '$(CopyDeployFilesAfterTargets)' == '' and '$(ConfigurationType)' != 'Makefile'">
<CopyDeployFilesBeforeTargets>Midl</CopyDeployFilesBeforeTargets>
<CopyDeployFilesAfterTargets>CustomBuild</CopyDeployFilesAfterTargets>
</PropertyGroup>
<PropertyGroup>
<CopyDeployFilesDependsOn
Condition="'$(ConfigurationType)' != 'Makefile'">_SelectedFiles;$(CopyDeployFilesDependsOn)</CopyDeployFilesDependsOn>
</PropertyGroup>
<ItemDefinitionGroup>
<CopyDeployFiles>
<CommandLineTemplate>copy /Y "%(FullPath)" "$(OutDir)%(Filename)"</CommandLineTemplate>
<Outputs>$(OutDir)%(Filename)</Outputs>
</CopyDeployFiles>
</ItemDefinitionGroup>
<PropertyGroup
Condition="'$(CopyDeployFoldersBeforeTargets)' == '' and '$(CopyDeployFoldersAfterTargets)' == '' and '$(ConfigurationType)' != 'Makefile'">
<CopyDeployFoldersBeforeTargets>Midl</CopyDeployFoldersBeforeTargets>
<CopyDeployFoldersAfterTargets>CustomBuild</CopyDeployFoldersAfterTargets>
</PropertyGroup>
<PropertyGroup>
<CopyDeployFoldersDependsOn
Condition="'$(ConfigurationType)' != 'Makefile'">_SelectedFiles;$(CopyDeployFoldersDependsOn)</CopyDeployFoldersDependsOn>
</PropertyGroup>
<ItemDefinitionGroup>
<CopyDeployFolders>
<CommandLineTemplate>xcopy /Y /I "%(FullPath)" "$(OutDir)%(Filename)"</CommandLineTemplate>
<Outputs>$(OutDir)%(Filename)\readme.txt</Outputs>
</CopyDeployFolders>
</ItemDefinitionGroup>
</Project>