Permalink
Please sign in to comment.
Browse files
Added MonoTouch project file and Newtonsoft.Json build for MonoTouch.
- Loading branch information...
Showing
with
94 additions
and 0 deletions.
@@ -0,0 +1,68 @@ | ||
+<?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>10.0.0</ProductVersion> | ||
+ <SchemaVersion>2.0</SchemaVersion> | ||
+ <ProjectGuid>{38E00AC6-03CC-4B7F-8217-2B0815A0C3F5}</ProjectGuid> | ||
+ <ProjectTypeGuids>{6BC8ED88-2882-458C-8E55-DFD12B67127B};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> | ||
+ <OutputType>Library</OutputType> | ||
+ <RootNamespace>Mogade.MonoTouch.Core</RootNamespace> | ||
+ <AssemblyName>Mogade.MonoTouch.Core</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> | ||
+ </PropertyGroup> | ||
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
+ <DebugType>none</DebugType> | ||
+ <Optimize>false</Optimize> | ||
+ <OutputPath>bin\Release</OutputPath> | ||
+ <ErrorReport>prompt</ErrorReport> | ||
+ <WarningLevel>4</WarningLevel> | ||
+ <ConsolePause>false</ConsolePause> | ||
+ </PropertyGroup> | ||
+ <ItemGroup> | ||
+ <Reference Include="System" /> | ||
+ <Reference Include="System.Xml" /> | ||
+ <Reference Include="System.Core" /> | ||
+ <Reference Include="monotouch" /> | ||
+ <Reference Include="Newtonsoft.Json.MonoTouch"> | ||
+ <HintPath>..\references\Newtonsoft.Json.MonoTouch.dll</HintPath> | ||
+ </Reference> | ||
+ </ItemGroup> | ||
+ <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> | ||
+ <ItemGroup> | ||
+ <Folder Include="Models\" /> | ||
+ <Folder Include="Components\" /> | ||
+ </ItemGroup> | ||
+ <ItemGroup> | ||
+ <Compile Include="Models\Achievement.cs" /> | ||
+ <Compile Include="Models\Asset.cs" /> | ||
+ <Compile Include="Models\Highs.cs" /> | ||
+ <Compile Include="Models\LeaderboardScope.cs" /> | ||
+ <Compile Include="Models\LeaderboardScores.cs" /> | ||
+ <Compile Include="Models\LeaderboardScoresWithPlayerStats.cs" /> | ||
+ <Compile Include="Models\Ranks.cs" /> | ||
+ <Compile Include="Models\SavedScore.cs" /> | ||
+ <Compile Include="Models\Score.cs" /> | ||
+ <Compile Include="Driver.cs" /> | ||
+ <Compile Include="IDriver.cs" /> | ||
+ <Compile Include="MogadeException.cs" /> | ||
+ <Compile Include="Components\Communicator.cs" /> | ||
+ <Compile Include="Components\IDriverConfiguration.cs" /> | ||
+ <Compile Include="Components\IDriverData.cs" /> | ||
+ <Compile Include="Components\IRequestContext.cs" /> | ||
+ <Compile Include="Components\Response.cs" /> | ||
+ <Compile Include="Components\SortedDictionary.cs" /> | ||
+ <Compile Include="Components\ValidationHelper.cs" /> | ||
+ <Compile Include="Components\JsonConverters\LeaderboardHighScoresConverter.cs" /> | ||
+ </ItemGroup> | ||
+</Project> |
Binary file not shown.
@@ -0,0 +1,26 @@ | ||
+ | ||
+Microsoft Visual Studio Solution File, Format Version 11.00 | ||
+# Visual Studio 2010 | ||
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Mogade.MonoTouch.Core", "Mogade.Core\Mogade.MonoTouch.Core.csproj", "{38E00AC6-03CC-4B7F-8217-2B0815A0C3F5}" | ||
+EndProject | ||
+Global | ||
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
+ Debug|iPhoneSimulator = Debug|iPhoneSimulator | ||
+ Release|iPhoneSimulator = Release|iPhoneSimulator | ||
+ Debug|iPhone = Debug|iPhone | ||
+ Release|iPhone = Release|iPhone | ||
+ EndGlobalSection | ||
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
+ {38E00AC6-03CC-4B7F-8217-2B0815A0C3F5}.Debug|iPhone.ActiveCfg = Debug|Any CPU | ||
+ {38E00AC6-03CC-4B7F-8217-2B0815A0C3F5}.Debug|iPhone.Build.0 = Debug|Any CPU | ||
+ {38E00AC6-03CC-4B7F-8217-2B0815A0C3F5}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU | ||
+ {38E00AC6-03CC-4B7F-8217-2B0815A0C3F5}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU | ||
+ {38E00AC6-03CC-4B7F-8217-2B0815A0C3F5}.Release|iPhone.ActiveCfg = Release|Any CPU | ||
+ {38E00AC6-03CC-4B7F-8217-2B0815A0C3F5}.Release|iPhone.Build.0 = Release|Any CPU | ||
+ {38E00AC6-03CC-4B7F-8217-2B0815A0C3F5}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU | ||
+ {38E00AC6-03CC-4B7F-8217-2B0815A0C3F5}.Release|iPhoneSimulator.Build.0 = Release|Any CPU | ||
+ EndGlobalSection | ||
+ GlobalSection(MonoDevelopProperties) = preSolution | ||
+ StartupItem = Mogade.Core\Mogade.MonoTouch.Core.csproj | ||
+ EndGlobalSection | ||
+EndGlobal |
Binary file not shown.
0 comments on commit
d133ee6