forked from MvvmCross/MvvmCross
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFirstDemo.Mac.csproj
133 lines (133 loc) · 5.87 KB
/
FirstDemo.Mac.csproj
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>12.0.0</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{29B25E31-353C-4715-A58A-7402267A7705}</ProjectGuid>
<ProjectTypeGuids>{948B3504-5B70-4649-8FE4-BDE1FB46EC69};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<OutputType>Exe</OutputType>
<RootNamespace>FirstDemo.Mac</RootNamespace>
<MonoMacResourcePrefix>Resources</MonoMacResourcePrefix>
<AssemblyName>FirstDemo.Mac</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<UseSGen>false</UseSGen>
<IncludeMonoRuntime>false</IncludeMonoRuntime>
<EnablePackageSigning>false</EnablePackageSigning>
<CodeSigningKey>Mac Developer</CodeSigningKey>
<EnableCodeSigning>false</EnableCodeSigning>
<CreatePackage>false</CreatePackage>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<LinkMode>Full</LinkMode>
<UseSGen>false</UseSGen>
<IncludeMonoRuntime>true</IncludeMonoRuntime>
<EnablePackageSigning>false</EnablePackageSigning>
<CodeSigningKey>Developer ID Application</CodeSigningKey>
<EnableCodeSigning>true</EnableCodeSigning>
<CreatePackage>true</CreatePackage>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'AppStore|AnyCPU' ">
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\AppStore</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<LinkMode>Full</LinkMode>
<UseSGen>false</UseSGen>
<IncludeMonoRuntime>true</IncludeMonoRuntime>
<PackageSigningKey>3rd Party Mac Developer Installer</PackageSigningKey>
<CreatePackage>true</CreatePackage>
<CodeSigningKey>3rd Party Mac Developer Application</CodeSigningKey>
<EnableCodeSigning>true</EnableCodeSigning>
<EnablePackageSigning>true</EnablePackageSigning>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Xml" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Drawing" />
<Reference Include="MonoMac" />
</ItemGroup>
<ItemGroup>
<Folder Include="Resources\" />
<Folder Include="Views\" />
</ItemGroup>
<ItemGroup>
<Compile Include="Main.cs" />
<Compile Include="AppDelegate.cs" />
<Compile Include="AppDelegate.designer.cs">
<DependentUpon>AppDelegate.cs</DependentUpon>
</Compile>
<Compile Include="Setup.cs" />
<Compile Include="Views\FirstView.cs" />
<Compile Include="Views\FirstViewController.cs" />
<Compile Include="Views\FirstView.designer.cs">
<DependentUpon>FirstView.cs</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<InterfaceDefinition Include="MainMenu.xib" />
<InterfaceDefinition Include="Views\FirstView.xib" />
</ItemGroup>
<ItemGroup>
<None Include="Info.plist" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<ProjectReference Include="..\..\CrossCore\Cirrious.CrossCore\Cirrious.CrossCore.csproj">
<Project>{CFF6F25A-3C3B-44EE-A54C-2ED4AAFF3ADB}</Project>
<Name>Cirrious.CrossCore</Name>
</ProjectReference>
<ProjectReference Include="..\..\CrossCore\Cirrious.CrossCore.Mac\Cirrious.CrossCore.Mac.csproj">
<Project>{596C75FB-F491-4037-89F6-B4F34183D83D}</Project>
<Name>Cirrious.CrossCore.Mac</Name>
</ProjectReference>
<ProjectReference Include="..\..\Cirrious\Cirrious.MvvmCross\Cirrious.MvvmCross.csproj">
<Project>{B6E27475-E7D0-448C-A5CC-5097DCA1E2DD}</Project>
<Name>Cirrious.MvvmCross</Name>
</ProjectReference>
<ProjectReference Include="..\..\Cirrious\Cirrious.MvvmCross.Binding\Cirrious.MvvmCross.Binding.csproj">
<Project>{64DCD397-9019-41E8-A928-E5F5C5DF185B}</Project>
<Name>Cirrious.MvvmCross.Binding</Name>
</ProjectReference>
<ProjectReference Include="..\..\Cirrious\Cirrious.MvvmCross.Binding.Mac\Cirrious.MvvmCross.Binding.Mac.csproj">
<Project>{B4789586-AEBB-4597-A849-23F3E45AF421}</Project>
<Name>Cirrious.MvvmCross.Binding.Mac</Name>
</ProjectReference>
<ProjectReference Include="..\..\Cirrious\Cirrious.MvvmCross.Localization\Cirrious.MvvmCross.Localization.csproj">
<Project>{D89351C1-D48F-4AD0-A0B9-353A93425AB7}</Project>
<Name>Cirrious.MvvmCross.Localization</Name>
</ProjectReference>
<ProjectReference Include="..\..\Cirrious\Cirrious.MvvmCross.Mac\Cirrious.MvvmCross.Mac.csproj">
<Project>{B3B40D12-3CF1-4BCE-B599-4E3AE438D39F}</Project>
<Name>Cirrious.MvvmCross.Mac</Name>
</ProjectReference>
<ProjectReference Include="..\..\CrossUI\CrossUI.Core\CrossUI.Core.csproj">
<Project>{D9CBBFFE-57E8-4E97-9E16-C34BC4C52827}</Project>
<Name>CrossUI.Core</Name>
</ProjectReference>
<ProjectReference Include="..\FirstDemo.Core\FirstDemo.Core.csproj">
<Project>{E9CAC9B6-5013-4350-B617-77C979166230}</Project>
<Name>FirstDemo.Core</Name>
</ProjectReference>
</ItemGroup>
</Project>