-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathAndroidAltBeaconLibrary.UnitTests.csproj
More file actions
100 lines (100 loc) · 5.11 KB
/
AndroidAltBeaconLibrary.UnitTests.csproj
File metadata and controls
100 lines (100 loc) · 5.11 KB
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
<?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>{E25C7961-349C-4464-A3D4-4AB8170A9FC1}</ProjectGuid>
<ProjectTypeGuids>{EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<OutputType>Library</OutputType>
<RootNamespace>AndroidAltBeaconLibrary.UnitTests</RootNamespace>
<AssemblyName>AndroidAltBeaconLibrary.UnitTests</AssemblyName>
<TargetFrameworkVersion>v8.1</TargetFrameworkVersion>
<AndroidApplication>True</AndroidApplication>
<AndroidResgenFile>Resources\Resource.designer.cs</AndroidResgenFile>
<AndroidResgenClass>Resource</AndroidResgenClass>
<MonoAndroidResourcePrefix>Resources</MonoAndroidResourcePrefix>
<MonoAndroidAssetsPrefix>Assets</MonoAndroidAssetsPrefix>
<AndroidManifest>Properties\AndroidManifest.xml</AndroidManifest>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AndroidLinkMode>None</AndroidLinkMode>
<AndroidSupportedAbis>arm64-v8a;armeabi;armeabi-v7a;x86</AndroidSupportedAbis>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AndroidManagedSymbols>true</AndroidManagedSymbols>
<AndroidUseSharedRuntime>false</AndroidUseSharedRuntime>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Xml" />
<Reference Include="System.Core" />
<Reference Include="Mono.Android" />
<Reference Include="Xamarin.Android.NUnitLite" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.IO.Compression" />
<Reference Include="System.Net.Http" />
</ItemGroup>
<ItemGroup>
<Compile Include="MainActivity.cs" />
<Compile Include="TestsSample.cs" />
<Compile Include="Resources\Resource.designer.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="TestBase.cs" />
<Compile Include="AssertEx.cs" />
<Compile Include="Tests\Beacon\Distance\ModelSpecificDistanceCalculatorTest.cs" />
<Compile Include="Tests\Beacon\Service\ArmaRssiFilterTest.cs" />
<Compile Include="Tests\Beacon\Service\BeaconServiceTest.cs" />
<Compile Include="Tests\Beacon\Service\ExtraDataBeaconTrackerTest.cs" />
<Compile Include="Tests\Beacon\Service\MonitoringStatusTest.cs" />
<Compile Include="Tests\Beacon\Service\RangingDataTest.cs" />
<Compile Include="Tests\Beacon\Service\RunningAverageRssiFilterTest.cs" />
<Compile Include="Tests\Beacon\Service\Scanner\DistinctPacketDetectorTest.cs" />
<Compile Include="Tests\Beacon\Service\Scanner\ScanFilterUtilsTest.cs" />
<Compile Include="Tests\Beacon\Simulator\BeaconSimulatorTest.cs" />
<Compile Include="Tests\Beacon\Utils\EddystoneTelemetryAccessorTest.cs" />
<Compile Include="Tests\Beacon\Utils\UrlBeaconUrlCompressorTest.cs" />
<Compile Include="Tests\Beacon\AltBeaconParserTest.cs" />
<Compile Include="Tests\Beacon\AltBeaconTest.cs" />
<Compile Include="Tests\Beacon\BeaconParserTest.cs" />
<Compile Include="Tests\Beacon\BeaconTest.cs" />
<Compile Include="Tests\Beacon\BeaconTransmitterTest.cs" />
<Compile Include="Tests\Beacon\GattBeaconTest.cs" />
<Compile Include="Tests\Beacon\IdentifierTest.cs" />
<Compile Include="Tests\Beacon\RegionTest.cs" />
<Compile Include="Tests\Beacon\SBeaconTest.cs" />
<Compile Include="Tests\Bluetooth\BleAdvertisementTest.cs" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\AboutResources.txt" />
<None Include="Assets\AboutAssets.txt" />
<None Include="Properties\AndroidManifest.xml" />
</ItemGroup>
<ItemGroup>
<AndroidResource Include="Resources\mipmap-hdpi\Icon.png" />
<AndroidResource Include="Resources\mipmap-mdpi\Icon.png" />
<AndroidResource Include="Resources\mipmap-xhdpi\Icon.png" />
<AndroidResource Include="Resources\mipmap-xxhdpi\Icon.png" />
<AndroidResource Include="Resources\mipmap-xxxhdpi\Icon.png" />
</ItemGroup>
<ItemGroup />
<ItemGroup>
<ProjectReference Include="..\AndroidAltBeaconLibrary\AndroidAltBeaconLibrary.csproj">
<Project>{4D26EC32-DC3D-4046-A845-306A40014ADF}</Project>
<Name>AndroidAltBeaconLibrary</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
</Project>