mirror of
https://github.com/iterate-ch/cyberduck.git
synced 2026-05-26 19:10:49 +00:00
48 lines
1.6 KiB
XML
48 lines
1.6 KiB
XML
<?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:
|
|
* dkocher@cyberduck.io
|
|
-->
|
|
<project name="Cyberduck Native Libraries" basedir=".">
|
|
|
|
<import file="../../../build.xml"/>
|
|
|
|
<target name="restore" depends="msbuild">
|
|
<msbuild buildfile="dirs.proj">
|
|
<target name="Restore" />
|
|
</msbuild>
|
|
</target>
|
|
|
|
<target name="build" depends="restore,msbuild">
|
|
<!-- Create DLL Cyberduck.Core.Refresh -->
|
|
<msbuild buildfile="dirs.proj">
|
|
<target name="Build"/>
|
|
|
|
<property name="Configuration" value="${msbuild.configuration}" />
|
|
</msbuild>
|
|
</target>
|
|
|
|
<target name="pack" depends="msbuild">
|
|
<!-- Create DLL Cyberduck.Core.Refresh -->
|
|
<msbuild buildfile="src/main/nuget/nuget.proj">
|
|
<target name="Restore;Pack"/>
|
|
</msbuild>
|
|
</target>
|
|
</project>
|