2 <Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" />
4 <PropertyGroup Label="Globals">
5 <TizenProjectExtensionsPath>$(MSBuildExtensionsPath)\Tizen\VisualStudio\</TizenProjectExtensionsPath>
8 <Import Project="$(TizenProjectExtensionsPath)Tizen.NET.ProjectType.props" Condition="Exists('$(TizenProjectExtensionsPath)Tizen.NET.ProjectType.props')" />
11 <OutputType>Exe</OutputType>
12 <TargetFramework>netcoreapp1.1</TargetFramework>
15 <!-- Property Group for Tizen Project -->
17 <TizenCreateTpkOnBuild>true</TizenCreateTpkOnBuild>
18 <PackageTargetFallback>$(PackageTargetFallback);portable-net45+wp80+win81+wpa81</PackageTargetFallback>
22 This Property Group for msbuild command line.
23 If project build on Visual Studio, it would be set automatically through the certificate manager.
25 <AuthorPath>author_test.p12</AuthorPath>
26 <AuthorPass>author_test</AuthorPass>
27 <DistributorPath>tizen-distributor-signer.p12</DistributorPath>
28 <DistributorPass>tizenpkcs12passfordsigner</DistributorPass>
32 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
33 <DebugType>portable</DebugType>
35 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
36 <DebugType>None</DebugType>
40 <Folder Include="lib\" />
41 <Folder Include="res\" />
45 <PackageReference Include="Tizen.NET.Sdk" Version="0.9.18-pre1" />
46 <PackageReference Include="Xamarin.Forms" Version="2.4.0.275-pre3" />
47 <PackageReference Include="Xamarin.Forms.Platform.Tizen" Version="2.3.5-r256-001" />
51 <ProjectReference Include="..\..\src\Tizen.Telephony\Tizen.Telephony.csproj" />
54 <Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
55 <Import Project="$(TizenProjectExtensionsPath)Tizen.NET.ProjectType.targets" Condition="Exists('$(TizenProjectExtensionsPath)Tizen.NET.ProjectType.targets')" />
57 <!-- Install Check 'Visual Studio for Tizen' for developing on Visual Studio -->
58 <Target Name="TizenVsixInstallCheck" BeforeTargets="CompileDesignTime">
59 <Warning Condition="!Exists('$(TizenProjectExtensionsPath)Tizen.NET.ProjectType.props')" Text="$(TizenProjectExtensionsPath)Tizen.NET.ProjectType.props is not exist.
 you need to check if 'Visual Studio for Tizen' is installed" />
60 <Warning Condition="!Exists('$(TizenProjectExtensionsPath)Tizen.NET.ProjectType.targets')" Text="$(TizenProjectExtensionsPath)Tizen.NET.ProjectType.targets is not exist.\
 you need to check if 'Visual Studio for Tizen' is installed" />