summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/Xamarin.Forms.Platform.Tizen.csproj
diff options
context:
space:
mode:
authorKangho Hur <kangho.hur@samsung.com>2016-12-16 11:00:07 +0900
committerKangho Hur <kangho.hur@samsung.com>2017-02-03 13:26:48 +0900
commit9285d3ed6fab14f274fb9d6b92377900c0f311ef (patch)
tree5648b6319078936b861a405877b045e0c6ed8b02 /Xamarin.Forms.Platform.Tizen/Xamarin.Forms.Platform.Tizen.csproj
parent3c7b2918b3065a81ecb4040fde09d93aae09f62d (diff)
downloadxamarin-forms-9285d3ed6fab14f274fb9d6b92377900c0f311ef.tar.gz
xamarin-forms-9285d3ed6fab14f274fb9d6b92377900c0f311ef.tar.bz2
xamarin-forms-9285d3ed6fab14f274fb9d6b92377900c0f311ef.zip
Add Tizen backend renderer
- Xamarin.Forms.Platform.Tizen has been added - Xamarin.Forms.Maps.Tizen has been added - RPM build spec has been added Change-Id: I0021e0f040d97345affc87512ee0f6ce437f4e6d
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen/Xamarin.Forms.Platform.Tizen.csproj')
-rw-r--r--Xamarin.Forms.Platform.Tizen/Xamarin.Forms.Platform.Tizen.csproj163
1 files changed, 163 insertions, 0 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Xamarin.Forms.Platform.Tizen.csproj b/Xamarin.Forms.Platform.Tizen/Xamarin.Forms.Platform.Tizen.csproj
new file mode 100644
index 00000000..818e4803
--- /dev/null
+++ b/Xamarin.Forms.Platform.Tizen/Xamarin.Forms.Platform.Tizen.csproj
@@ -0,0 +1,163 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <PropertyGroup>
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+ <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+ <ProjectGuid>{227D2CC5-26A1-4CE7-AE25-1B18AF625B9C}</ProjectGuid>
+ <OutputType>Library</OutputType>
+ <AppDesignerFolder>Properties</AppDesignerFolder>
+ <RootNamespace>Xamarin.Forms.Platform.Tizen</RootNamespace>
+ <AssemblyName>Xamarin.Forms.Platform.Tizen</AssemblyName>
+ <FileAlignment>512</FileAlignment>
+ </PropertyGroup>
+ <PropertyGroup>
+ <TargetFrameworkIdentifier>.NETStandard</TargetFrameworkIdentifier>
+ <TargetFrameworkVersion>v1.6</TargetFrameworkVersion>
+ <NuGetTargetMoniker>.NETStandard,Version=v1.6</NuGetTargetMoniker>
+ <AddAdditionalExplicitAssemblyReferences>false</AddAdditionalExplicitAssemblyReferences>
+ <NoStdLib>true</NoStdLib>
+ <NoWarn>$(NoWarn);1701;1702</NoWarn>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugSymbols>true</DebugSymbols>
+ <DebugType>full</DebugType>
+ <Optimize>true</Optimize>
+ <OutputPath>bin\Debug\</OutputPath>
+ <DefineConstants>DEBUG;TRACE</DefineConstants>
+ <ErrorReport>prompt</ErrorReport>
+ <WarningLevel>4</WarningLevel>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>pdbonly</DebugType>
+ <Optimize>true</Optimize>
+ <OutputPath>bin\Release\</OutputPath>
+ <DefineConstants>TRACE</DefineConstants>
+ <ErrorReport>prompt</ErrorReport>
+ <WarningLevel>4</WarningLevel>
+ </PropertyGroup>
+ <ItemGroup>
+ <Compile Include="Cells\CellRenderer.cs" />
+ <Compile Include="Cells\EntryCellRenderer.cs" />
+ <Compile Include="Cells\ImageCellRenderer.cs" />
+ <Compile Include="Cells\SwitchCellRenderer.cs" />
+ <Compile Include="Cells\TextCellRenderer.cs" />
+ <Compile Include="Cells\ViewCellRenderer.cs" />
+ <Compile Include="Deserializer.cs" />
+ <Compile Include="ElementChangedEventArgs.cs" />
+ <Compile Include="EvasObjectWrapper.cs" />
+ <Compile Include="ExportImageSourceHandlerAttribute.cs" />
+ <Compile Include="ExportCellAttribute.cs" />
+ <Compile Include="ExportRendererAttribute.cs" />
+ <Compile Include="Extensions\ColorExtensions.cs" />
+ <Compile Include="Extensions\KeyboardExtensions.cs" />
+ <Compile Include="Extensions\LayoutExtensions.cs" />
+ <Compile Include="Extensions\ScrollToPositionExtensions.cs" />
+ <Compile Include="Extensions\TextAlignmentExtensions.cs" />
+ <Compile Include="Forms.cs" />
+ <Compile Include="GestureHandler.cs" />
+ <Compile Include="FormsApplication.cs" />
+ <Compile Include="Log\ConsoleLogger.cs" />
+ <Compile Include="Log\DlogLogger.cs" />
+ <Compile Include="Log\ILogger.cs" />
+ <Compile Include="Log\Log.cs" />
+ <Compile Include="Log\XamarinLogListener.cs" />
+ <Compile Include="Native\Box.cs" />
+ <Compile Include="Native\Button.cs" />
+ <Compile Include="Native\Canvas.cs" />
+ <Compile Include="Native\ContentPage.cs" />
+ <Compile Include="Native\DateChangedEventArgs.cs" />
+ <Compile Include="Native\DatePicker.cs" />
+ <Compile Include="Native\DateTimePickerDialog.cs" />
+ <Compile Include="Native\Dialog.cs" />
+ <Compile Include="Native\DisplayOrientations.cs" />
+ <Compile Include="Native\Entry.cs" />
+ <Compile Include="Native\FormattedString.cs" />
+ <Compile Include="Native\IContainable.cs" />
+ <Compile Include="Native\Image.cs" />
+ <Compile Include="Native\IMeasurable.cs" />
+ <Compile Include="Native\ITextable.cs" />
+ <Compile Include="Native\Keyboard.cs" />
+ <Compile Include="Native\Label.cs" />
+ <Compile Include="Native\LayoutEventArgs.cs" />
+ <Compile Include="Native\LineBreakMode.cs" />
+ <Compile Include="Native\ListView.cs" />
+ <Compile Include="Native\MasterDetailPage.cs" />
+ <Compile Include="Native\ObservableCollection.cs" />
+ <Compile Include="Native\SearchBar.cs" />
+ <Compile Include="Native\Span.cs" />
+ <Compile Include="Native\TableView.cs" />
+ <Compile Include="Native\TextAlignment.cs" />
+ <Compile Include="Native\TextHelper.cs" />
+ <Compile Include="Native\TimePicker.cs" />
+ <Compile Include="Native\Window.cs" />
+ <Compile Include="Platform.cs" />
+ <Compile Include="PlatformEffect.cs" />
+ <Compile Include="Properties\AssemblyInfo.cs" />
+ <Compile Include="Renderers\ActivityIndicatorRenderer.cs" />
+ <Compile Include="Renderers\BoxViewRenderer.cs" />
+ <Compile Include="Renderers\ButtonRenderer.cs" />
+ <Compile Include="Renderers\CarouselPageRenderer.cs" />
+ <Compile Include="Renderers\ContentPageRenderer.cs" />
+ <Compile Include="Renderers\DatePickerRenderer.cs" />
+ <Compile Include="Renderers\EditorRenderer.cs" />
+ <Compile Include="Renderers\EntryRenderer.cs" />
+ <Compile Include="Renderers\EvasObjectWrapperRenderer.cs" />
+ <Compile Include="Renderers\FrameRenderer.cs" />
+ <Compile Include="Renderers\ImageRenderer.cs" />
+ <Compile Include="Renderers\IVisualElementRenderer.cs" />
+ <Compile Include="Renderers\LabelRenderer.cs" />
+ <Compile Include="Renderers\LayoutRenderer.cs" />
+ <Compile Include="Renderers\ListViewRenderer.cs" />
+ <Compile Include="Renderers\MasterDetailPageRenderer.cs" />
+ <Compile Include="Renderers\NavigationPageRenderer.cs" />
+ <Compile Include="Renderers\PickerRenderer.cs" />
+ <Compile Include="Renderers\ProgressBarRenderer.cs" />
+ <Compile Include="Renderers\ScrollViewRenderer.cs" />
+ <Compile Include="Renderers\SearchBarRenderer.cs" />
+ <Compile Include="Renderers\SliderRenderer.cs" />
+ <Compile Include="Renderers\StepperRenderer.cs" />
+ <Compile Include="Renderers\SwitchRenderer.cs" />
+ <Compile Include="Renderers\TabbedPageRenderer.cs" />
+ <Compile Include="Renderers\TableViewRenderer.cs" />
+ <Compile Include="Renderers\TimePickerRenderer.cs" />
+ <Compile Include="Renderers\ViewRenderer.cs" />
+ <Compile Include="Renderers\VisualElementRenderer.cs" />
+ <Compile Include="ResourcePath.cs" />
+ <Compile Include="ResourcesProvider.cs" />
+ <Compile Include="TizenPlatformServices.cs" />
+ <Compile Include="TizenTitleBarVisibility.cs" />
+ <Compile Include="ViewInitializedEventArgs.cs" />
+ <Compile Include="VisualElementChangedEventArgs.cs" />
+ <Compile Include="VisualElementRendererFlags.cs" />
+ <Compile Include="TizenIsolatedStorageFile.cs" />
+ </ItemGroup>
+ <ItemGroup>
+ <None Include="Xamarin.Forms.Platform.Tizen.project.json" />
+ </ItemGroup>
+ <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
+ <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
+ Other similar extension points exist, see Microsoft.Common.targets.
+ <Target Name="BeforeBuild">
+ </Target>
+ <Target Name="AfterBuild">
+ </Target>
+ -->
+ <ItemGroup>
+ <ProjectReference Include="..\Xamarin.Forms.Core\Xamarin.Forms.Core.csproj">
+ <Project>{57B8B73D-C3B5-4C42-869E-7B2F17D354AC}</Project>
+ <Name>Xamarin.Forms.Core</Name>
+ </ProjectReference>
+ </ItemGroup>
+ <PropertyGroup>
+ <!-- https://github.com/dotnet/corefxlab/tree/master/samples/NetCoreSample and
+ https://docs.microsoft.com/en-us/dotnet/articles/core/tutorials/target-dotnetcore-with-msbuild
+ -->
+ <!-- We don't use any of MSBuild's resolution logic for resolving the framework, so just set these two
+ properties to any folder that exists to skip the GetReferenceAssemblyPaths task (not target) and
+ to prevent it from outputting a warning (MSB3644).
+ -->
+ <_TargetFrameworkDirectories>$(MSBuildThisFileDirectory)</_TargetFrameworkDirectories>
+ <_FullFrameworkReferenceAssemblyPaths>$(MSBuildThisFileDirectory)</_FullFrameworkReferenceAssemblyPaths>
+ <AutoUnifyAssemblyReferences>true</AutoUnifyAssemblyReferences>
+ </PropertyGroup>
+</Project>