~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to external/monomac/samples/Preferences/Preferences/Preferences.csproj

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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)' == '' ">x86</Platform>
 
6
    <ProductVersion>10.0.0</ProductVersion>
 
7
    <SchemaVersion>2.0</SchemaVersion>
 
8
    <ProjectGuid>{0EC28BCF-260E-4D08-9BC6-766AA13BD456}</ProjectGuid>
 
9
    <ProjectTypeGuids>{948B3504-5B70-4649-8FE4-BDE1FB46EC69};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
 
10
    <OutputType>Exe</OutputType>
 
11
    <RootNamespace>Preferences</RootNamespace>
 
12
    <MonoMacResourcePrefix>Resources</MonoMacResourcePrefix>
 
13
    <AssemblyName>Preferences</AssemblyName>
 
14
  </PropertyGroup>
 
15
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
 
16
    <DebugSymbols>true</DebugSymbols>
 
17
    <DebugType>full</DebugType>
 
18
    <Optimize>false</Optimize>
 
19
    <OutputPath>bin\Debug</OutputPath>
 
20
    <DefineConstants>DEBUG;</DefineConstants>
 
21
    <ErrorReport>prompt</ErrorReport>
 
22
    <WarningLevel>4</WarningLevel>
 
23
    <UseSGen>false</UseSGen>
 
24
    <IncludeMonoRuntime>false</IncludeMonoRuntime>
 
25
    <EnablePackageSigning>false</EnablePackageSigning>
 
26
    <CreatePackage>false</CreatePackage>
 
27
    <CodeSigningKey>Mac Developer</CodeSigningKey>
 
28
    <EnableCodeSigning>false</EnableCodeSigning>
 
29
    <ConsolePause>false</ConsolePause>
 
30
    <PlatformTarget>x86</PlatformTarget>
 
31
  </PropertyGroup>
 
32
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
 
33
    <DebugType>none</DebugType>
 
34
    <Optimize>true</Optimize>
 
35
    <OutputPath>bin\Release</OutputPath>
 
36
    <ErrorReport>prompt</ErrorReport>
 
37
    <WarningLevel>4</WarningLevel>
 
38
    <LinkMode>Full</LinkMode>
 
39
    <UseSGen>false</UseSGen>
 
40
    <IncludeMonoRuntime>true</IncludeMonoRuntime>
 
41
    <EnablePackageSigning>false</EnablePackageSigning>
 
42
    <CreatePackage>true</CreatePackage>
 
43
    <CodeSigningKey>Developer ID Application</CodeSigningKey>
 
44
    <EnableCodeSigning>true</EnableCodeSigning>
 
45
    <ConsolePause>false</ConsolePause>
 
46
    <PlatformTarget>x86</PlatformTarget>
 
47
  </PropertyGroup>
 
48
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'AppStore|x86' ">
 
49
    <DebugType>none</DebugType>
 
50
    <Optimize>true</Optimize>
 
51
    <OutputPath>bin\x86\AppStore</OutputPath>
 
52
    <ErrorReport>prompt</ErrorReport>
 
53
    <WarningLevel>4</WarningLevel>
 
54
    <LinkMode>Full</LinkMode>
 
55
    <UseSGen>false</UseSGen>
 
56
    <IncludeMonoRuntime>true</IncludeMonoRuntime>
 
57
    <PackageSigningKey>3rd Party Mac Developer Installer</PackageSigningKey>
 
58
    <ConsolePause>false</ConsolePause>
 
59
    <EnableCodeSigning>true</EnableCodeSigning>
 
60
    <CodeSigningKey>3rd Party Mac Developer Application</CodeSigningKey>
 
61
    <CreatePackage>true</CreatePackage>
 
62
    <EnablePackageSigning>true</EnablePackageSigning>
 
63
    <PlatformTarget>x86</PlatformTarget>
 
64
  </PropertyGroup>
 
65
  <ItemGroup>
 
66
    <Reference Include="System" />
 
67
    <Reference Include="System.Xml" />
 
68
    <Reference Include="System.Core" />
 
69
    <Reference Include="System.Xml.Linq" />
 
70
    <Reference Include="System.Drawing" />
 
71
    <Reference Include="MonoMac" />
 
72
  </ItemGroup>
 
73
  <ItemGroup>
 
74
    <Folder Include="Resources\" />
 
75
    <Folder Include="PreferenceTabs\" />
 
76
  </ItemGroup>
 
77
  <ItemGroup>
 
78
    <Compile Include="MainWindow.cs" />
 
79
    <Compile Include="MainWindowController.cs" />
 
80
    <Compile Include="MainWindow.designer.cs">
 
81
      <DependentUpon>MainWindow.cs</DependentUpon>
 
82
    </Compile>
 
83
    <Compile Include="Main.cs" />
 
84
    <Compile Include="AppDelegate.cs" />
 
85
    <Compile Include="AppDelegate.designer.cs">
 
86
      <DependentUpon>AppDelegate.cs</DependentUpon>
 
87
    </Compile>
 
88
    <Compile Include="PreferencesWindow.cs" />
 
89
    <Compile Include="PreferencesWindowController.cs" />
 
90
    <Compile Include="PreferencesWindow.designer.cs">
 
91
      <DependentUpon>PreferencesWindow.cs</DependentUpon>
 
92
    </Compile>
 
93
    <Compile Include="PreferencesToolbarDelegate.cs" />
 
94
    <Compile Include="PreferenceTabs\IPreferencesTab.cs" />
 
95
    <Compile Include="PreferenceTabs\GeneralView.cs" />
 
96
    <Compile Include="PreferenceTabs\GeneralViewController.cs" />
 
97
    <Compile Include="PreferenceTabs\GeneralView.designer.cs">
 
98
      <DependentUpon>GeneralView.cs</DependentUpon>
 
99
    </Compile>
 
100
    <Compile Include="PreferenceTabs\FontsAndColorsView.cs" />
 
101
    <Compile Include="PreferenceTabs\FontsAndColorsViewController.cs" />
 
102
    <Compile Include="PreferenceTabs\FontsAndColorsView.designer.cs">
 
103
      <DependentUpon>FontsAndColorsView.cs</DependentUpon>
 
104
    </Compile>
 
105
    <Compile Include="PreferenceTabs\PrivacyView.cs" />
 
106
    <Compile Include="PreferenceTabs\PrivacyViewController.cs" />
 
107
    <Compile Include="PreferenceTabs\PrivacyView.designer.cs">
 
108
      <DependentUpon>PrivacyView.cs</DependentUpon>
 
109
    </Compile>
 
110
  </ItemGroup>
 
111
  <ItemGroup>
 
112
    <InterfaceDefinition Include="MainWindow.xib" />
 
113
    <InterfaceDefinition Include="MainMenu.xib" />
 
114
    <InterfaceDefinition Include="PreferencesWindow.xib" />
 
115
    <InterfaceDefinition Include="PreferenceTabs\GeneralView.xib" />
 
116
    <InterfaceDefinition Include="PreferenceTabs\FontsAndColorsView.xib" />
 
117
    <InterfaceDefinition Include="PreferenceTabs\PrivacyView.xib" />
 
118
  </ItemGroup>
 
119
  <ItemGroup>
 
120
    <None Include="Info.plist" />
 
121
  </ItemGroup>
 
122
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
 
123
  <Import Project="$(MSBuildExtensionsPath)\Mono\MonoMac\v0.0\Mono.MonoMac.targets" />
 
124
</Project>
 
 
b'\\ No newline at end of file'