-
Notifications
You must be signed in to change notification settings - Fork 0
/
monotooth.csproj
80 lines (80 loc) · 4.59 KB
/
monotooth.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
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectGuid>{C3DA1C7C-638A-4DEF-A9F6-669C6E38F8DB}</ProjectGuid>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<OutputType>Library</OutputType>
<RootNamespace>monotooth</RootNamespace>
<AssemblyName>monotooth</AssemblyName>
<ReferencePath>C:\monotooth\src\mono\</ReferencePath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<OutputPath>bin\Debug\</OutputPath>
<DebugSymbols>True</DebugSymbols>
<DebugType>Full</DebugType>
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<OutputPath>bin\Release\</OutputPath>
<DebugSymbols>False</DebugSymbols>
<DebugType>None</DebugType>
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" />
<ItemGroup>
<Compile Include="src\mono\AssemblyInfo.cs" />
<Compile Include="src\mono\Model\BluetoothAddress.cs" />
<Compile Include="src\mono\Model\Connections\Factories\Linux\LinuxRFCommConnectionFactory.cs" />
<Compile Include="src\mono\Model\Connections\Factories\Linux\LinuxServiceConnectionFactory.cs" />
<Compile Include="src\mono\Model\Connections\Factories\RFCommConnectionFactory.cs" />
<Compile Include="src\mono\Model\Connections\Factories\ServiceConnectionFactory.cs" />
<Compile Include="src\mono\Model\Connections\Factories\Windows\WindowsRFCommConnectionFactory.cs" />
<Compile Include="src\mono\Model\Connections\HCIConnection.cs" />
<Compile Include="src\mono\Model\Connections\IConnection.cs" />
<Compile Include="src\mono\Model\Connections\L2CAPConnection.cs" />
<Compile Include="src\mono\Model\Connections\Linux\LinuxHCIConnection.cs" />
<Compile Include="src\mono\Model\Connections\Linux\LinuxL2CAPConnection.cs" />
<Compile Include="src\mono\Model\Connections\Linux\LinuxRFCommConnection.cs" />
<Compile Include="src\mono\Model\Connections\Linux\LinuxServiceConnection.cs" />
<Compile Include="src\mono\Model\Connections\RFCommConnection.cs" />
<Compile Include="src\mono\Model\Connections\ServiceConnection.cs" />
<Compile Include="src\mono\Model\Connections\Windows\WindowsL2CAPConnection.cs" />
<Compile Include="src\mono\Model\Connections\Windows\WindowsRFCommConnection.cs" />
<Compile Include="src\mono\Model\Connections\Windows\WindowsServiceConnection.cs" />
<Compile Include="src\mono\Model\Device\DevicePool.cs" />
<Compile Include="src\mono\Model\Device\Factories\DeviceFactory.cs" />
<Compile Include="src\mono\Model\Device\IDevice.cs" />
<Compile Include="src\mono\Model\Device\ILocalDevice.cs" />
<Compile Include="src\mono\Model\Device\IRemoteDevice.cs" />
<Compile Include="src\mono\Model\Device\Linux\LinuxDevice.cs" />
<Compile Include="src\mono\Model\Device\Linux\LinuxDeviceFactory.cs" />
<Compile Include="src\mono\Model\Device\Linux\LinuxRemoteDevice.cs" />
<Compile Include="src\mono\Model\Device\LocalDevice.cs" />
<Compile Include="src\mono\Model\Device\Windows\WindowsDevice.cs" />
<Compile Include="src\mono\Model\Device\Windows\WindowsDeviceFactory.cs" />
<Compile Include="src\mono\Model\Device\Windows\WindowsRemoteDevice.cs" />
<Compile Include="src\mono\Model\Service\Service.cs" />
<Compile Include="src\mono\Model\Service\ServicePool.cs" />
<Compile Include="src\mono\Model\Socket\BluetoothStream.cs" />
</ItemGroup>
<ItemGroup>
<Folder Include="src" />
<Folder Include="src\mono" />
<Folder Include="src\mono\Model" />
<Folder Include="src\mono\Model\Connections" />
<Folder Include="src\mono\Model\Connections\Factories" />
<Folder Include="src\mono\Model\Connections\Factories\Linux" />
<Folder Include="src\mono\Model\Connections\Factories\Windows" />
<Folder Include="src\mono\Model\Connections\Linux" />
<Folder Include="src\mono\Model\Connections\Windows" />
<Folder Include="src\mono\Model\Device" />
<Folder Include="src\mono\Model\Device\Factories" />
<Folder Include="src\mono\Model\Device\Linux" />
<Folder Include="src\mono\Model\Device\Windows" />
<Folder Include="src\mono\Model\Native Interface" />
<Folder Include="src\mono\Model\Service" />
<Folder Include="src\mono\Model\Socket" />
</ItemGroup>
</Project>