-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
back to xamarin.ios for demo projects
- Loading branch information
1 parent
c2a46e7
commit e7d26ce
Showing
2 changed files
with
164 additions
and
107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>net6</TargetFramework> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="MvvmCross" Version="6.4.0" /> | ||
</ItemGroup> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<LangVersion>7.1</LangVersion> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="MvvmCross" Version="6.4.0" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,101 +1,155 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>net6.0-ios</TargetFramework> | ||
<OutputType>Exe</OutputType> | ||
<Nullable>enable</Nullable> | ||
<ImplicitUsings>true</ImplicitUsings> | ||
<SupportedOSPlatformVersion>10.0</SupportedOSPlatformVersion> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhoneSimulator' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>full</DebugType> | ||
<Optimize>false</Optimize> | ||
<OutputPath>bin\iPhoneSimulator\Debug</OutputPath> | ||
<DefineConstants>DEBUG</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<ConsolePause>false</ConsolePause> | ||
<MtouchLink>None</MtouchLink> | ||
<MtouchDebug>true</MtouchDebug> | ||
<MtouchArch>i386, x86_64</MtouchArch> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhoneSimulator' "> | ||
<DebugType>none</DebugType> | ||
<Optimize>true</Optimize> | ||
<OutputPath>bin\iPhoneSimulator\Release</OutputPath> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<ConsolePause>false</ConsolePause> | ||
<MtouchLink>None</MtouchLink> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhone' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>full</DebugType> | ||
<Optimize>false</Optimize> | ||
<OutputPath>bin\iPhone\Debug</OutputPath> | ||
<DefineConstants>DEBUG</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<ConsolePause>false</ConsolePause> | ||
<MtouchDebug>true</MtouchDebug> | ||
<CodesignKey>iPhone Developer</CodesignKey> | ||
<IpaPackageName> | ||
</IpaPackageName> | ||
<MtouchI18n> | ||
</MtouchI18n> | ||
<MtouchArch>ARMv7</MtouchArch> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhone' "> | ||
<DebugType>none</DebugType> | ||
<Optimize>true</Optimize> | ||
<OutputPath>bin\iPhone\Release</OutputPath> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<ConsolePause>false</ConsolePause> | ||
<CodesignKey>iPhone Developer</CodesignKey> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Ad-Hoc|iPhone' "> | ||
<DebugType>none</DebugType> | ||
<Optimize>True</Optimize> | ||
<OutputPath>bin\iPhone\Ad-Hoc</OutputPath> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<ConsolePause>False</ConsolePause> | ||
<CodesignKey>iPhone Distribution</CodesignKey> | ||
<BuildIpa>True</BuildIpa> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'AppStore|iPhone' "> | ||
<DebugType>none</DebugType> | ||
<Optimize>True</Optimize> | ||
<OutputPath>bin\iPhone\AppStore</OutputPath> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<ConsolePause>False</ConsolePause> | ||
<CodesignKey>iPhone Distribution</CodesignKey> | ||
<IpaPackageName> | ||
</IpaPackageName> | ||
<MtouchI18n> | ||
</MtouchI18n> | ||
<MtouchArch>ARMv7</MtouchArch> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="MvvmCross"> | ||
<Version>6.4.0</Version> | ||
</PackageReference> | ||
<PackageReference Include="MvvmCross.Plugin.MethodBinding"> | ||
<Version>6.4.0</Version> | ||
</PackageReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\Cirrious.FluentLayout\Cirrious.FluentLayouts.Touch.csproj"> | ||
<Project>{75D2DA9D-DFD4-49A1-98FB-FE0F0677EF0F}</Project> | ||
<Name>Cirrious.FluentLayouts.Touch</Name> | ||
<IsAppExtension>false</IsAppExtension> | ||
<IsWatchApp>false</IsWatchApp> | ||
</ProjectReference> | ||
<ProjectReference Include="..\QuickLayout.Core\QuickLayout.Core.csproj"> | ||
<Project>{849AFB57-994A-42D9-A786-EF34FC951CDE}</Project> | ||
<Name>QuickLayout.Core</Name> | ||
</ProjectReference> | ||
</ItemGroup> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">iPhoneSimulator</Platform> | ||
<ProjectGuid>{5739EE87-45C0-496A-8388-A09CDB906501}</ProjectGuid> | ||
<ProjectTypeGuids>{FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> | ||
<OutputType>Exe</OutputType> | ||
<RootNamespace>QuickLayout.Touch</RootNamespace> | ||
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix> | ||
<AssemblyName>QuickLayoutTouch</AssemblyName> | ||
<TargetFrameworkIdentifier>Xamarin.iOS</TargetFrameworkIdentifier> | ||
<TargetFrameworkVersion>v1.0</TargetFrameworkVersion> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhoneSimulator' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>full</DebugType> | ||
<Optimize>false</Optimize> | ||
<OutputPath>bin\iPhoneSimulator\Debug</OutputPath> | ||
<DefineConstants>DEBUG</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<ConsolePause>false</ConsolePause> | ||
<MtouchLink>None</MtouchLink> | ||
<MtouchDebug>true</MtouchDebug> | ||
<MtouchArch>i386, x86_64</MtouchArch> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhoneSimulator' "> | ||
<DebugType>none</DebugType> | ||
<Optimize>true</Optimize> | ||
<OutputPath>bin\iPhoneSimulator\Release</OutputPath> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<ConsolePause>false</ConsolePause> | ||
<MtouchLink>None</MtouchLink> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhone' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>full</DebugType> | ||
<Optimize>false</Optimize> | ||
<OutputPath>bin\iPhone\Debug</OutputPath> | ||
<DefineConstants>DEBUG</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<ConsolePause>false</ConsolePause> | ||
<MtouchDebug>true</MtouchDebug> | ||
<CodesignKey>iPhone Developer</CodesignKey> | ||
<IpaPackageName> | ||
</IpaPackageName> | ||
<MtouchI18n> | ||
</MtouchI18n> | ||
<MtouchArch>ARMv7</MtouchArch> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhone' "> | ||
<DebugType>none</DebugType> | ||
<Optimize>true</Optimize> | ||
<OutputPath>bin\iPhone\Release</OutputPath> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<ConsolePause>false</ConsolePause> | ||
<CodesignKey>iPhone Developer</CodesignKey> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Ad-Hoc|iPhone' "> | ||
<DebugType>none</DebugType> | ||
<Optimize>True</Optimize> | ||
<OutputPath>bin\iPhone\Ad-Hoc</OutputPath> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<ConsolePause>False</ConsolePause> | ||
<CodesignKey>iPhone Distribution</CodesignKey> | ||
<BuildIpa>True</BuildIpa> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'AppStore|iPhone' "> | ||
<DebugType>none</DebugType> | ||
<Optimize>True</Optimize> | ||
<OutputPath>bin\iPhone\AppStore</OutputPath> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<ConsolePause>False</ConsolePause> | ||
<CodesignKey>iPhone Distribution</CodesignKey> | ||
<IpaPackageName> | ||
</IpaPackageName> | ||
<MtouchI18n> | ||
</MtouchI18n> | ||
<MtouchArch>ARMv7</MtouchArch> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Include="LinkerPleaseInclude.cs" /> | ||
<Compile Include="Main.cs" /> | ||
<Compile Include="AppDelegate.cs" /> | ||
<Compile Include="Views\ToCenterConstraintsView.cs" /> | ||
<Compile Include="Views\DetailsView.cs" /> | ||
<Compile Include="Views\FirstView.cs" /> | ||
<Compile Include="Views\FormGridView.cs" /> | ||
<Compile Include="Views\FormView.cs" /> | ||
<Compile Include="Views\FullSizeView.cs" /> | ||
<Compile Include="Views\SearchView.cs" /> | ||
<Compile Include="Views\TipView.cs" /> | ||
<None Include="Info.plist" /> | ||
<Compile Include="Properties\AssemblyInfo.cs" /> | ||
<Compile Include="Views\UpdateConstraintsView.cs" /> | ||
<Compile Include="Views\AdvancedVerticalStackView.cs" /> | ||
<Compile Include="Views\DirectionFormView.cs" /> | ||
<Compile Include="Views\RightToLeftView.cs" /> | ||
<Compile Include="Views\ViewWithSafeAreaView.cs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Reference Include="System" /> | ||
<Reference Include="System.Xml" /> | ||
<Reference Include="System.Core" /> | ||
<Reference Include="Xamarin.iOS" /> | ||
<Reference Include="Microsoft.CSharp" /> | ||
<Reference Include="OpenTK-1.0" /> | ||
<Reference Include="System.Drawing.Common.dll" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="MvvmCross"> | ||
<Version>6.4.0</Version> | ||
</PackageReference> | ||
<PackageReference Include="MvvmCross.Plugin.MethodBinding"> | ||
<Version>6.4.0</Version> | ||
</PackageReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\Cirrious.FluentLayout\Cirrious.FluentLayouts.Touch.csproj"> | ||
<Project>{75D2DA9D-DFD4-49A1-98FB-FE0F0677EF0F}</Project> | ||
<Name>Cirrious.FluentLayouts.Touch</Name> | ||
</ProjectReference> | ||
<ProjectReference Include="..\QuickLayout.Core\QuickLayout.Core.csproj"> | ||
<Project>{849AFB57-994A-42D9-A786-EF34FC951CDE}</Project> | ||
<Name>QuickLayout.Core</Name> | ||
</ProjectReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<InterfaceDefinition Include="Resources\LaunchScreen.storyboard" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ImageAsset Include="Assets.xcassets\LaunchImage.launchimage\Contents.json"> | ||
<Visible>false</Visible> | ||
</ImageAsset> | ||
<ImageAsset Include="Assets.xcassets\LaunchImage.launchimage\Default.png"> | ||
<Visible>false</Visible> | ||
</ImageAsset> | ||
<ImageAsset Include="Assets.xcassets\LaunchImage.launchimage\Default%402x.png"> | ||
<Visible>false</Visible> | ||
</ImageAsset> | ||
<ImageAsset Include="Assets.xcassets\LaunchImage.launchimage\Default-568h%402x.png"> | ||
<Visible>false</Visible> | ||
</ImageAsset> | ||
<ImageAsset Include="Assets.xcassets\AppIcon.appiconset\Contents.json"> | ||
<Visible>false</Visible> | ||
</ImageAsset> | ||
</ItemGroup> | ||
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" /> | ||
</Project> |