[xbuild]: Support <PropertyGroup/ItemGroup> inside <Target>.
[mono.git] / mcs / class / project_template_ios.txt
1 <?xml version="1.0" encoding="utf-8"?>
2 <Project ToolsVersion="4.0" DefaultTargets="Build" 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>{6BC8ED88-2882-458C-8E55-DFD12B67127B};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
10     <OutputType>Library</OutputType>
11     <AppDesignerFolder>Properties</AppDesignerFolder>
12     <RootNamespace>System.Reactive</RootNamespace>
13     <IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
14     <AssemblyName>ASSEMBLY_NAME_GOES_HERE</AssemblyName>
15     <ProductSignAssembly>true</ProductSignAssembly>
16     <DefineConstants>NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;NUNIT;SIGNED</DefineConstants>
17     SIGNING_SPEC_GOES_HERE
18     <additionalargs>-delaySign</additionalargs>
19   </PropertyGroup>
20   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
21     <DebugSymbols>True</DebugSymbols>
22     <DebugType>full</DebugType>
23     <Optimize>False</Optimize>
24     <OutputPath>bin\Debug</OutputPath>
25     <ConsolePause>False</ConsolePause>
26     <WarningLevel>4</WarningLevel>
27     <DefineConstants>DEBUG;NO_TASK_DELAY;NO_WINDOWS_THREADING;NO_REMOTING;NO_REFLECTION_EMIT;NUNIT;SIGNED</DefineConstants>
28   </PropertyGroup>
29   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
30     <DebugType>none</DebugType>
31     <Optimize>True</Optimize>
32     <OutputPath>bin\Release</OutputPath>
33     <ConsolePause>False</ConsolePause>
34     <WarningLevel>4</WarningLevel>
35   </PropertyGroup>
36   <PropertyGroup>
37     <!--
38     <TargetFrameworkIdentifier>iOS</TargetFrameworkIdentifier>
39     <TargetFrameworkVersion>v2.0.5</TargetFrameworkVersion>
40     -->
41     <!-- NoStdLib>true</NoStdLib -->
42     <BuildPlatform>MOBILE</BuildPlatform>
43     <BuildFlavor>MONOTOUCH</BuildFlavor>
44   </PropertyGroup>
45   <Import Project="..\..\..\Common.targets" />
46   <PropertyGroup>
47     <DocumentationFile>$(OutputPath)\$(AssemblyName).XML</DocumentationFile>
48   </PropertyGroup>
49   <ItemGroup>
50     <Reference Include="System" />
51     <Reference Include="System.Core" />
52     <Reference Include="MonoTouch.NUnitLite" />
53     OPTIONAL_MONOTOUCH_NUNITLITE
54   </ItemGroup>
55   <ItemGroup>
56     PROJECT_REFERENCES_GO_HERE
57     <!--
58     <ProjectReference Include="..\Andr.Unit\Android.NUnitLite\Android.NUnitLite.csproj">
59       <Project>{6A005891-A3D6-4398-A729-F645397D573A}</Project>
60       <Name>Android.NUnitLite</Name>
61     </ProjectReference>
62     -->
63   </ItemGroup>
64   <ItemGroup>
65     SOURCES_GO_HERE
66     <!--
67     <Compile Include="..\..\..\Microsoft.Reactive.Testing\ColdObservable.cs">
68       <Link>ColdObservable.cs</Link>
69     </Compile>
70     -->
71     RESOURCES_GO_HERE
72   </ItemGroup>
73   <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
74   <ItemGroup>
75     <Folder Include="Properties\" />
76   </ItemGroup>
77 </Project>