Merge pull request #496 from nicolas-raoul/unit-test-for-issue2907
[mono.git] / mcs / tests / projects / MonoTouch / MonoTouch.csproj.template
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)' == '' ">iPhoneSimulator</Platform>
6     <ProductVersion>10.0.0</ProductVersion>
7     <SchemaVersion>2.0</SchemaVersion>
8     <ProjectGuid>{00C88FC7-0FAA-4E5F-A9E6-C4343F1F30D8}</ProjectGuid>
9     <ProjectTypeGuids>{6BC8ED88-2882-458C-8E55-DFD12B67127B};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
10     <OutputType>Exe</OutputType>
11     <RootNamespace>TestMcs</RootNamespace>
12     <IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
13     <AssemblyName>TestMcs</AssemblyName>
14   </PropertyGroup>
15   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhoneSimulator' ">
16     <DebugSymbols>True</DebugSymbols>
17     <DebugType>full</DebugType>
18     <Optimize>False</Optimize>
19     <OutputPath>bin\iPhoneSimulator\Debug</OutputPath>
20     <DefineConstants>DEBUG;</DefineConstants>
21     <ErrorReport>prompt</ErrorReport>
22     <WarningLevel>4</WarningLevel>
23     <ConsolePause>False</ConsolePause>
24     <MtouchLink>None</MtouchLink>
25     <MtouchDebug>True</MtouchDebug>
26   </PropertyGroup>
27   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhoneSimulator' ">
28     <DebugType>none</DebugType>
29     <Optimize>True</Optimize>
30     <OutputPath>bin\iPhoneSimulator\Release</OutputPath>
31     <ErrorReport>prompt</ErrorReport>
32     <WarningLevel>4</WarningLevel>
33     <ConsolePause>False</ConsolePause>
34     <MtouchLink>None</MtouchLink>
35   </PropertyGroup>
36   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhone' ">
37     <DebugSymbols>True</DebugSymbols>
38     <DebugType>full</DebugType>
39     <Optimize>False</Optimize>
40     <OutputPath>bin\iPhone\Debug</OutputPath>
41     <DefineConstants>DEBUG;</DefineConstants>
42     <ErrorReport>prompt</ErrorReport>
43     <WarningLevel>4</WarningLevel>
44     <ConsolePause>False</ConsolePause>
45     <MtouchDebug>True</MtouchDebug>
46     <CodesignKey>iPhone Developer</CodesignKey>
47   </PropertyGroup>
48   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhone' ">
49     <DebugType>none</DebugType>
50     <Optimize>True</Optimize>
51     <OutputPath>bin\iPhone\Release</OutputPath>
52     <ErrorReport>prompt</ErrorReport>
53     <WarningLevel>4</WarningLevel>
54     <ConsolePause>False</ConsolePause>
55     <CodesignKey>iPhone Developer</CodesignKey>
56   </PropertyGroup>
57   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Ad-Hoc|iPhone' ">
58     <DebugType>none</DebugType>
59     <Optimize>True</Optimize>
60     <OutputPath>bin\iPhone\Ad-Hoc</OutputPath>
61     <ErrorReport>prompt</ErrorReport>
62     <WarningLevel>4</WarningLevel>
63     <BuildIpa>True</BuildIpa>
64     <ConsolePause>False</ConsolePause>
65     <CodesignProvision>Automatic:AdHoc</CodesignProvision>
66     <CodesignKey>iPhone Distribution</CodesignKey>
67   </PropertyGroup>
68   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'AppStore|iPhone' ">
69     <DebugType>none</DebugType>
70     <Optimize>True</Optimize>
71     <OutputPath>bin\iPhone\AppStore</OutputPath>
72     <ErrorReport>prompt</ErrorReport>
73     <WarningLevel>4</WarningLevel>
74     <ConsolePause>False</ConsolePause>
75     <CodesignKey>iPhone Distribution</CodesignKey>
76     <CodesignProvision>Automatic:AppStore</CodesignProvision>
77   </PropertyGroup>
78   <ItemGroup>
79     <Reference Include="System" />
80     <Reference Include="System.Xml" />
81     <Reference Include="System.Core" />
82     <Reference Include="monotouch" />
83     <Reference Include="MonoTouch.NUnitLite" />
84 @GENERATED_REFERENCES
85   </ItemGroup>
86   <ItemGroup>
87     <Folder Include="Resources\" />
88   </ItemGroup>
89   <ItemGroup>
90     <None Include="Info.plist" />
91   </ItemGroup>
92   <ItemGroup>
93     <Compile Include="Main.cs" />
94     <Compile Include="AppDelegate.cs" />
95     <Compile Include="@TEST_SOURCEFILE" />
96   </ItemGroup>
97   <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
98 </Project>