-
Notifications
You must be signed in to change notification settings - Fork 2
/
DelphiMVCwithDI.deployproj
32 lines (32 loc) · 1.37 KB
/
DelphiMVCwithDI.deployproj
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
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Condition="Exists('$(BDS)\bin\CodeGear.Deployment.targets')" Project="$(BDS)\bin\CodeGear.Deployment.targets"/>
<ProjectExtensions>
<ProjectFileVersion>12</ProjectFileVersion>
</ProjectExtensions>
<PropertyGroup/>
<ItemGroup Condition="'$(Platform)'=='Win32'">
<DeployFile Include="bin\DelphiMVCwithDI.exe" Condition="'$(Config)'=='Debug'">
<RemoteDir>DelphiMVCwithDI\</RemoteDir>
<RemoteName>DelphiMVCwithDI.exe</RemoteName>
<DeployClass>ProjectOutput</DeployClass>
<Operation>0</Operation>
<LocalCommand/>
<RemoteCommand/>
<Overwrite>True</Overwrite>
<Required>True</Required>
</DeployFile>
</ItemGroup>
<ItemGroup Condition="'$(Platform)'=='Win64'"/>
<ItemGroup Condition="'$(Platform)'=='Linux64'">
<DeployFile Include="bin\DelphiMVCwithDI" Condition="'$(Config)'=='Debug'">
<RemoteDir>DelphiMVCwithDI\</RemoteDir>
<RemoteName>DelphiMVCwithDI</RemoteName>
<DeployClass>ProjectOutput</DeployClass>
<Operation>1</Operation>
<LocalCommand/>
<RemoteCommand/>
<Overwrite>True</Overwrite>
<Required>True</Required>
</DeployFile>
</ItemGroup>
</Project>