-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathHamLibSharp.csproj
105 lines (105 loc) · 5 KB
/
HamLibSharp.csproj
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?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>
<Folder Include="Utils\" />
<Folder Include="x86\" />
<Folder Include="x64\" />
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
</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="
 ${FileName}
 
 Author:
 ${AuthorName} <${AuthorEmail}>

 Copyright (c) ${Year} ${CopyrightHolder}

 This library is free software; you can redistribute it and/or modify
 it under the terms of the GNU Lesser General Public License as
 published by the Free Software Foundation; either version 2.1 of the
 License, or (at your option) any later version.

 This library 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
 Lesser General Public License for more details.

 You should have received a copy of the GNU Lesser General Public
 License along with this library; if not, write to the Free Software
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA" IncludeInNewFiles="True" />
</Policies>
</Properties>
</MonoDevelop>
</ProjectExtensions>
</Project>