AirScout/HamLibSharp/HamLibSharp.csproj

123 wiersze
5.8 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{878402CD-1AF7-443F-980F-861FF9E840CD}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>HamLibSharp</RootNamespace>
<AssemblyName>HamLibSharp</AssemblyName>
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>build\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<OutputPath>build\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="HamLib.cs" />
<Compile Include="Utils\Library.cs" />
<Compile Include="Enums.cs" />
<Compile Include="Rig.cs" />
<Compile Include="RigException.cs" />
<Compile Include="RigNative.cs" />
<Compile Include="RigCaps.cs" />
<Compile Include="Utils\IntPtrExtensions.cs" />
<Compile Include="Structs.cs" />
<Compile Include="HamLibPortNative.cs" />
<Compile Include="RigVfo.cs" />
<Compile Include="Utils\CastedList.cs" />
<Compile Include="IRigCapsNative.cs" />
<Compile Include="IRigStateNative.cs" />
<Compile Include="x86\ChannelCapability32.cs" />
<Compile Include="x86\ChannelList32.cs" />
<Compile Include="x86\ConfigurationParameter32.cs" />
<Compile Include="x86\ModeValue32.cs" />
<Compile Include="x86\NativeRig32.cs" />
<Compile Include="x86\NativeRig32v2.cs" />
<Compile Include="x86\RigCapsNative32.cs" />
<Compile Include="x86\RigCapsNative32v2.cs" />
<Compile Include="x86\RigCapsNative32v301.cs" />
<Compile Include="x86\RigStateNative32.cs" />
<Compile Include="x86\RigStateNative32v2.cs" />
<Compile Include="x64\RigCapsNative64.cs" />
<Compile Include="x64\RigCapsNative64v2.cs" />
<Compile Include="x64\RigCapsNative64v301.cs" />
<Compile Include="x64\RigStateNative64.cs" />
<Compile Include="x64\RigStateNative64v2.cs" />
<Compile Include="x64\ConfigurationParameter64.cs" />
<Compile Include="x64\ModeValue64.cs" />
<Compile Include="x64\ChannelList64.cs" />
<Compile Include="x64\ChannelCapability64.cs" />
<Compile Include="x64\NativeRig64.cs" />
<Compile Include="x64\NativeRig64v2.cs" />
<Compile Include="IModeValue.cs" />
<Compile Include="IConfigurationParameter.cs" />
<Compile Include="IChannelList.cs" />
<Compile Include="IChannelCapability.cs" />
<Compile Include="Utils\TextNameAttribute.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup />
<ItemGroup>
<None Include="app.config" />
<None Include="bin_libs\.keep" />
<None Include="bin_libs\libhamlib.so.2.1.1" />
<None Include="bin_libs\x64\.keep" />
<None Include="bin_libs\x86\.keep" />
</ItemGroup>
<ItemGroup>
<Content Include="bin_libs\x64\libgcc_s_sjlj-1.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="bin_libs\x64\libhamlib-2.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="bin_libs\x64\libusb-1.0.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="bin_libs\x64\libwinpthread-1.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="bin_libs\x86\libgcc_s_sjlj-1.dll" />
<Content Include="bin_libs\x86\libhamlib-2.dll" />
<Content Include="bin_libs\x86\libusb-1.0.dll" />
<Content Include="bin_libs\x86\libwinpthread-1.dll" />
</ItemGroup>
<Target Name="BeforeBuild">
<ItemGroup>
<BinLibs Include="$(ProjectDir)/bin_libs/**/*.*" />
</ItemGroup>
<Copy SourceFiles="@(BinLibs)" DestinationFolder="$(TargetDir)/%(RecursiveDir)" SkipUnchangedFiles="true" />
</Target>
<Target Name="AfterClean">
<RemoveDir Directories="$(TargetDir)" />
</Target>
<ProjectExtensions>
<MonoDevelop>
<Properties>
<Policies>
<StandardHeader Text="&#xA; ${FileName}&#xA; &#xA; Author:&#xA; ${AuthorName} &lt;${AuthorEmail}&gt;&#xA;&#xA; Copyright (c) ${Year} ${CopyrightHolder}&#xA;&#xA; This library is free software; you can redistribute it and/or modify&#xA; it under the terms of the GNU Lesser General Public License as&#xA; published by the Free Software Foundation; either version 2.1 of the&#xA; License, or (at your option) any later version.&#xA;&#xA; This library is distributed in the hope that it will be useful, but&#xA; WITHOUT ANY WARRANTY; without even the implied warranty of&#xA; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU&#xA; Lesser General Public License for more details.&#xA;&#xA; You should have received a copy of the GNU Lesser General Public&#xA; License along with this library; if not, write to the Free Software&#xA; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA" IncludeInNewFiles="True" />
</Policies>
</Properties>
</MonoDevelop>
</ProjectExtensions>
</Project>