-
-
Notifications
You must be signed in to change notification settings - Fork 291
/
Directory.Build.props
61 lines (53 loc) · 2.45 KB
/
Directory.Build.props
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (c) 2002-2019 iterate GmbH. All rights reserved.
~ https://cyberduck.io/
~
~ This program is free software; you can redistribute it and/or modify
~ it under the terms of the GNU General Public License as published by
~ the Free Software Foundation, either version 3 of the License, or
~ (at your option) any later version.
~
~ This program is distributed in the hope that it will be useful,
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ GNU General Public License for more details.
-->
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Label="AssemblyInfo">
<Company>iterate GmbH</Company>
<Description>Libre FTP, SFTP, WebDAV, S3 and OpenStack Swift browser for Mac and Windows.</Description>
</PropertyGroup>
<PropertyGroup>
<CyberduckDir>$(MSBuildThisFileDirectory)</CyberduckDir>
<TargetBuildDir>$(ModulePath)target\</TargetBuildDir>
<BaseIntermediateOutputPath>$(TargetBuildDir)obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath>
<BaseOutputPath>$(TargetBuildDir)</BaseOutputPath>
<IntermediateOutputPath>$(BaseIntermediateOutputPath)$(Configuration)\</IntermediateOutputPath>
<OutputPath>$(BaseOutputPath)</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<LangVersion>12</LangVersion>
</PropertyGroup>
<ItemDefinitionGroup>
<CyberduckReference>
<ProjectPath />
</CyberduckReference>
</ItemDefinitionGroup>
<ItemGroup>
<IKVM Include="IKVM.OpenJDK.Beans" />
<IKVM Include="IKVM.OpenJDK.Charsets" />
<IKVM Include="IKVM.OpenJDK.Core" />
<IKVM Include="IKVM.OpenJDK.Jdbc" />
<IKVM Include="IKVM.OpenJDK.Localedata" />
<IKVM Include="IKVM.OpenJDK.Security" />
<IKVM Include="IKVM.OpenJDK.Text" />
<IKVM Include="IKVM.OpenJDK.XML.API" />
<IKVM Include="IKVM.OpenJDK.XML.Bind" />
<IKVM Include="IKVM.OpenJDK.XML.Parse" />
<IKVM Include="IKVM.OpenJDK.XML.Transform" />
<IKVM Include="IKVM.OpenJDK.XML.XPath" />
<IKVM Include="IKVM.Runtime" />
<IKVM Include="IKVM.Runtime.JNI" />
<IKVMReferences Include="@(IKVM)" HintPath="$(TargetBuildDir)ikvm\bin\%(Identity).dll" />
</ItemGroup>
</Project>