-
Notifications
You must be signed in to change notification settings - Fork 174
/
Copy pathXamarin.Android.Common.props
96 lines (96 loc) · 4.08 KB
/
Xamarin.Android.Common.props
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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>MsgPack</RootNamespace>
<FileAlignment>512</FileAlignment>
<AndroidApplication>True</AndroidApplication>
<AndroidResgenFile>Resources\Resource.Designer.cs</AndroidResgenFile>
<AndroidResgenClass>Resource</AndroidResgenClass>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
<AndroidUseLatestPlatformSdk>false</AndroidUseLatestPlatformSdk>
<TargetFrameworkVersion>v2.3</TargetFrameworkVersion>
<AndroidManifest>Properties\AndroidManifest.xml</AndroidManifest>
<MonoAndroidResourcePrefix>Resources</MonoAndroidResourcePrefix>
<MonoAndroidAssetsPrefix>Assets</MonoAndroidAssetsPrefix>
<SignAssembly>false</SignAssembly>
</PropertyGroup>
<Import Project="..\MsgPack.Common.props" />
<PropertyGroup>
<DocumentationFile></DocumentationFile>
<DefineConstants>$(DefineConstants);TRACE;AOT;XAMARIN;NUNITLITE;NETSTANDARD2_0;FEATURE_TAP;FEATURE_CONCURRENT;FEATURE_POINTER_CONVERSION;FEATURE_MEMCOPY</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<JavaMaximumHeapSize>512M</JavaMaximumHeapSize>
<ConsolePause>false</ConsolePause>
<AndroidUseSharedRuntime>true</AndroidUseSharedRuntime>
<AndroidLinkMode>Full</AndroidLinkMode>
<AndroidLinkSkip>$(AssemblyName);Xamarin.Android.NUnitLite</AndroidLinkSkip>
<AotAssemblies>true</AotAssemblies>
<EnableLLVM>false</EnableLLVM>
<AndroidEnableMultiDex>true</AndroidEnableMultiDex>
<EnableProguard>false</EnableProguard>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>Full</DebugType>
<Optimize>False</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>$(DefineConstants);DEBUG</DefineConstants>
<EmbedAssembliesIntoApk>false</EmbedAssembliesIntoApk>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DebugType>PdbOnly</DebugType>
<Optimize>True</Optimize>
<OutputPath>bin\Release\</OutputPath>
<EmbedAssembliesIntoApk>true</EmbedAssembliesIntoApk>
</PropertyGroup>
<ItemGroup>
<Reference Include="Mono.Android" />
<Reference Include="mscorlib" />
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Numerics" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="Xamarin.Android.NUnitLite" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\MsgPack.UnitTest.Xamarin.Android\Properties\AssemblyInfo.cs">
<Link>Properties\AssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\MsgPack.UnitTest.Xamarin.Android\MainActivity.cs">
<Link>MainActivity.cs</Link>
</Compile>
</ItemGroup>
<ItemGroup>
<None Include="..\..\src\MsgPack.snk">
<Link>MsgPack.snk</Link>
</None>
<None Include="..\MsgPack.UnitTest\cases.mpac">
<Link>cases.mpac</Link>
</None>
<None Include="..\MsgPack.UnitTest\cases_compact.mpac">
<Link>cases_compact.mpac</Link>
</None>
<None Include="..\MsgPack.UnitTest.Xamarin.Android\Resources\AboutResources.txt">
<Link>Resources\AboutResources.txt</Link>
</None>
<None Include="..\MsgPack.UnitTest.Xamarin.Android\Assets\AboutAssets.txt">
<Link>Assets\AboutAssets.txt</Link>
</None>
</ItemGroup>
<ItemGroup>
<None Include="Properties\AndroidManifest.xml" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\MsgPack\MsgPack.csproj">
<Project>{5bcec32e-990e-4de5-945f-bd27326a7418}</Project>
<Name>MsgPack</Name>
</ProjectReference>
</ItemGroup>
</Project>