Merge pull request #799 from kebby/master
[mono.git] / mcs / class / project_template_android.txt
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     <ProductVersion>10.0.0</ProductVersion>
7     <SchemaVersion>2.0</SchemaVersion>
8     <ProjectGuid>PROJECT_GUID_GOES_HERE</ProjectGuid>
9     <ProjectTypeGuids>{EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
10     <OutputType>Library</OutputType>
11     <RootNamespace>System.Reactive</RootNamespace>
12     <AssemblyName>ASSEMBLY_NAME_GOES_HERE</AssemblyName>
13     <DefineConstants>NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;HAS_AWAIT;NUNIT;MONODROID;$(SignAssemblySpec)</DefineConstants>
14   </PropertyGroup>
15   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16     <DebugSymbols>True</DebugSymbols>
17     <DebugType>full</DebugType>
18     <Optimize>False</Optimize>
19     <OutputPath>bin\Debug</OutputPath>
20     <ErrorReport>prompt</ErrorReport>
21     <WarningLevel>4</WarningLevel>
22     <AndroidLinkMode>None</AndroidLinkMode>
23     <ConsolePause>False</ConsolePause>
24     <DefineConstants>DEBUG;NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;HAS_AWAIT;NUNIT;MONODROID;$(SignAssemblySpec)</DefineConstants>
25   </PropertyGroup>
26   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27     <DebugType>none</DebugType>
28     <Optimize>True</Optimize>
29     <OutputPath>bin\Release</OutputPath>
30     <ErrorReport>prompt</ErrorReport>
31     <WarningLevel>4</WarningLevel>
32     <ConsolePause>False</ConsolePause>
33     <AndroidLinkMode>SdkOnly</AndroidLinkMode>
34     <AndroidUseSharedRuntime>False</AndroidUseSharedRuntime>
35   </PropertyGroup>
36   <ItemGroup>
37     <Reference Include="System" />
38     <Reference Include="System.Xml" />
39     <Reference Include="System.Core" />
40   </ItemGroup>
41   <ItemGroup>
42 OPTIONAL_ANDROID_NUNITLITE
43 PROJECT_REFERENCES_GO_HERE
44     <!--
45     <ProjectReference Include="..\Andr.Unit\Android.NUnitLite\Android.NUnitLite.csproj">
46       <Project>{6A005891-A3D6-4398-A729-F645397D573A}</Project>
47       <Name>Android.NUnitLite</Name>
48     </ProjectReference>
49     -->
50   </ItemGroup>
51   <ItemGroup>
52 SOURCES_GO_HERE
53     <!--
54     <Compile Include="..\..\..\Microsoft.Reactive.Testing\ColdObservable.cs">
55       <Link>ColdObservable.cs</Link>
56     </Compile>
57     -->
58 RESOURCES_GO_HERE
59   </ItemGroup>
60   <Import Project="$(MSBuildExtensionsPath)\Novell\Novell.MonoDroid.CSharp.targets" />
61 </Project>