-
-
Notifications
You must be signed in to change notification settings - Fork 295
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
39d53c5
commit 886146b
Showing
39 changed files
with
592 additions
and
399 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<Project Sdk="IKVM.Net.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netcoreapp3.1</TargetFramework> | ||
<EnableDefaultItems>false</EnableDefaultItems> | ||
<LangVersion>1.8</LangVersion> | ||
<ClassLoader>ikvm.runtime.AppDomainAssemblyClassLoader</ClassLoader> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<CyberduckReference Include="Core" /> | ||
<PackageReference Include="IKVM" /> | ||
<PackageReference Include="IKVM.MSBuild" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Convert Include="$(TargetDir)bonjour.jar" /> | ||
<Convert Include="$(TargetDir)dnssd.jar" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<Project> | ||
|
||
<PropertyGroup> | ||
<ModulePath>$(MSBuildThisFileDirectory)</ModulePath> | ||
</PropertyGroup> | ||
|
||
<Import Project="../Directory.Build.props" /> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,38 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
* $Revision: 6757 $ | ||
* $Date: 2010-08-25 13:25:44 +0200 (Mi, 25 Aug 2010) $ | ||
* | ||
* Copyright (c) 2005-2012 David Kocher. All rights reserved. | ||
* http://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 2 of the License, or | ||
* (at your option) any later version.package | ||
* | ||
* 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. | ||
* | ||
* Bug fixes, suggestions and comments should be sent to: | ||
* [email protected] | ||
--> | ||
<project name="Cyberduck Native Libraries" basedir="."> | ||
<project name="Cyberduck.Bonjour" basedir="."> | ||
|
||
<import file="../../build.xml"/> | ||
|
||
<property name="ikvm.home" value="${build}/ikvm"/> | ||
<condition property="msbuild.configuration" value="Debug"> | ||
<equals arg1="${configuration}" arg2="debug" /> | ||
</condition> | ||
<condition property="msbuild.configuration" value="Release"> | ||
<equals arg1="${configuration}" arg2="release" /> | ||
</condition> | ||
|
||
<target name="dll" if="platform.windows"> | ||
<taskdef name="ikvmc" classname="net.ikvm.ant.IkvmcTask"> | ||
<classpath path="${lib.ext}/ant-ikvmc.0.5.jar"/> | ||
<target name="init-msbuild"> | ||
<taskdef name="msbuild" | ||
classname="org.apache.ant.dotnet.build.MSBuildTask"> | ||
<classpath path="${lib.ext}/ant-dotnet-1.1.jar"/> | ||
</taskdef> | ||
<mkdir dir="${build}"/> | ||
<!-- Create DLL Cyberduck.Bonjour --> | ||
<ikvmc target="library" out="${build}/Cyberduck.Bonjour.dll" home="${ikvm.home}" | ||
classloader="ikvm.runtime.AppDomainAssemblyClassLoader" version="${version}.${revision}" debug="${ikvm.debug}" | ||
verbose="false"> | ||
<reference path="${build}/Cyberduck.Core.dll"/> | ||
<arg value="-skipDuplicates"/> | ||
<fileset dir="${build}"> | ||
<include name="*.jar"/> | ||
<exclude name="asm-*.jar"/> | ||
<exclude name="cglib-*.jar"/> | ||
<exclude name="*-sources.jar"/> | ||
<exclude name="*-tests.jar"/> | ||
</fileset> | ||
<outputfilter> | ||
<contains>IKVMC0109</contains> | ||
<contains>class is already available in referenced assembly</contains> | ||
</outputfilter> | ||
</ikvmc> | ||
</target> | ||
|
||
<target name="build" depends="version,dll" /> | ||
<target name="restore" depends="init-msbuild"> | ||
<msbuild buildfile="${module}\Cyberduck.Bonjour.msbuildproj"> | ||
<target name="Restore" /> | ||
</msbuild> | ||
</target> | ||
|
||
<target name="build-windows" depends="init-msbuild,version,restore" if="platform.windows"> | ||
<msbuild buildfile="${home}\Cyberduck.sln"> | ||
<target name="src\libs\Cyberduck_Bonjour" /> | ||
|
||
<property name="Configuration" value="${msbuild.configuration}" /> | ||
<property name="Copyright" value="${copyright}" /> | ||
<property name="Version" value="${version}.${revision}" /> | ||
</msbuild> | ||
</target> | ||
|
||
<target name="_build" depends="build-windows" /> | ||
|
||
<target name="build" depends="_build,version" /> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<Project Sdk="IKVM.Net.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>netcoreapp3.1</TargetFramework> | ||
<EnableDefaultItems>false</EnableDefaultItems> | ||
<LangVersion>1.8</LangVersion> | ||
<ClassLoader>ikvm.runtime.AppDomainAssemblyClassLoader</ClassLoader> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<CyberduckReference Include="Core;Protocols;Cryptomator" /> | ||
<PackageReference Include="IKVM" /> | ||
<PackageReference Include="IKVM.MSBuild" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Convert Include="$(TargetDir)cli.jar" /> | ||
<Convert Include="$(TargetDir)commons-cli.jar" /> | ||
<Convert Include="$(TargetDir)jansi.jar" /> | ||
</ItemGroup> | ||
</Project> |
Oops, something went wrong.