teotestbluetooth / TestTeoBluetooth / TestTeoBluetooth.Android / TestTeoBluetooth.Android.csproj @ 4ca686e8
Historique | Voir | Annoter | Télécharger (4,744 ko)
1 |
<?xml version="1.0" encoding="utf-8"?> |
---|---|
2 |
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
3 |
<PropertyGroup> |
4 |
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
5 |
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
6 |
<ProjectGuid>{A6E319ED-E59B-4FAA-A143-1E1E653FD0BC}</ProjectGuid> |
7 |
<ProjectTypeGuids>{EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> |
8 |
<TemplateGuid>{c9e5eea5-ca05-42a1-839b-61506e0a37df}</TemplateGuid> |
9 |
<OutputType>Library</OutputType> |
10 |
<RootNamespace>TestBLE.Droid</RootNamespace> |
11 |
<AssemblyName>TestBLE.Android</AssemblyName> |
12 |
<Deterministic>True</Deterministic> |
13 |
<AndroidApplication>True</AndroidApplication> |
14 |
<AndroidResgenFile>Resources\Resource.designer.cs</AndroidResgenFile> |
15 |
<AndroidResgenClass>Resource</AndroidResgenClass> |
16 |
<AndroidManifest>Properties\AndroidManifest.xml</AndroidManifest> |
17 |
<MonoAndroidResourcePrefix>Resources</MonoAndroidResourcePrefix> |
18 |
<MonoAndroidAssetsPrefix>Assets</MonoAndroidAssetsPrefix> |
19 |
<AndroidUseLatestPlatformSdk>false</AndroidUseLatestPlatformSdk> |
20 |
<TargetFrameworkVersion>v11.0</TargetFrameworkVersion> |
21 |
<AndroidEnableSGenConcurrent>true</AndroidEnableSGenConcurrent> |
22 |
<AndroidUseAapt2>true</AndroidUseAapt2> |
23 |
<AndroidHttpClientHandlerType>Xamarin.Android.Net.AndroidClientHandler</AndroidHttpClientHandlerType> |
24 |
<NuGetPackageImportStamp> |
25 |
</NuGetPackageImportStamp> |
26 |
</PropertyGroup> |
27 |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
28 |
<DebugSymbols>true</DebugSymbols> |
29 |
<DebugType>portable</DebugType> |
30 |
<Optimize>false</Optimize> |
31 |
<OutputPath>bin\Debug</OutputPath> |
32 |
<DefineConstants>DEBUG;</DefineConstants> |
33 |
<ErrorReport>prompt</ErrorReport> |
34 |
<WarningLevel>4</WarningLevel> |
35 |
<AndroidLinkMode>None</AndroidLinkMode> |
36 |
</PropertyGroup> |
37 |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
38 |
<DebugSymbols>true</DebugSymbols> |
39 |
<DebugType>portable</DebugType> |
40 |
<Optimize>true</Optimize> |
41 |
<OutputPath>bin\Release</OutputPath> |
42 |
<ErrorReport>prompt</ErrorReport> |
43 |
<WarningLevel>4</WarningLevel> |
44 |
<AndroidManagedSymbols>true</AndroidManagedSymbols> |
45 |
<AndroidUseSharedRuntime>false</AndroidUseSharedRuntime> |
46 |
</PropertyGroup> |
47 |
<ItemGroup> |
48 |
<Reference Include="Mono.Android" /> |
49 |
<Reference Include="System" /> |
50 |
<Reference Include="System.Core" /> |
51 |
<Reference Include="System.Xml.Linq" /> |
52 |
<Reference Include="System.Xml" /> |
53 |
<Reference Include="System.Numerics" /> |
54 |
<Reference Include="System.Numerics.Vectors" /> |
55 |
</ItemGroup> |
56 |
<ItemGroup> |
57 |
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2012" /> |
58 |
<PackageReference Include="Xamarin.Essentials" Version="1.6.1" /> |
59 |
</ItemGroup> |
60 |
<ItemGroup> |
61 |
<Compile Include="MainActivity.cs" /> |
62 |
<Compile Include="Receivers\BluetoothReceiver.cs" /> |
63 |
<Compile Include="Resources\Resource.designer.cs" /> |
64 |
<Compile Include="Properties\AssemblyInfo.cs" /> |
65 |
<Compile Include="Services\BluetoothService.cs" /> |
66 |
<Compile Include="Utils\TaskExtensions.cs" /> |
67 |
</ItemGroup> |
68 |
<ItemGroup> |
69 |
<None Include="Resources\AboutResources.txt" /> |
70 |
<None Include="Assets\AboutAssets.txt" /> |
71 |
<None Include="Properties\AndroidManifest.xml" /> |
72 |
</ItemGroup> |
73 |
<ItemGroup> |
74 |
<AndroidResource Include="Resources\values\styles.xml" /> |
75 |
<AndroidResource Include="Resources\values\colors.xml" /> |
76 |
<AndroidResource Include="Resources\mipmap-anydpi-v26\icon.xml" /> |
77 |
<AndroidResource Include="Resources\mipmap-anydpi-v26\icon_round.xml" /> |
78 |
<AndroidResource Include="Resources\mipmap-hdpi\icon.png" /> |
79 |
<AndroidResource Include="Resources\mipmap-hdpi\launcher_foreground.png" /> |
80 |
<AndroidResource Include="Resources\mipmap-mdpi\icon.png" /> |
81 |
<AndroidResource Include="Resources\mipmap-mdpi\launcher_foreground.png" /> |
82 |
<AndroidResource Include="Resources\mipmap-xhdpi\icon.png" /> |
83 |
<AndroidResource Include="Resources\mipmap-xhdpi\launcher_foreground.png" /> |
84 |
<AndroidResource Include="Resources\mipmap-xxhdpi\icon.png" /> |
85 |
<AndroidResource Include="Resources\mipmap-xxhdpi\launcher_foreground.png" /> |
86 |
<AndroidResource Include="Resources\mipmap-xxxhdpi\icon.png" /> |
87 |
<AndroidResource Include="Resources\mipmap-xxxhdpi\launcher_foreground.png" /> |
88 |
</ItemGroup> |
89 |
<ItemGroup> |
90 |
<Folder Include="Resources\drawable\" /> |
91 |
</ItemGroup> |
92 |
<ItemGroup> |
93 |
<ProjectReference Include="..\TestBLE\TestTeoBluetooth.csproj"> |
94 |
<Project>{5C87F357-DF5A-4AEC-9663-ED55C0E4904D}</Project> |
95 |
<Name>TestTeoBluetooth</Name> |
96 |
</ProjectReference> |
97 |
</ItemGroup> |
98 |
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" /> |
99 |
</Project> |