Add Tizen.NET.API10 to depends
[platform/core/csapi/tizenfx.git] / build / common.props
1 <Project>
2
3   <PropertyGroup>
4     <AllowUnsafeBlocks>True</AllowUnsafeBlocks>
5     <GenerateDocumentationFile>True</GenerateDocumentationFile>
6     <GenerateDependencyFile>False</GenerateDependencyFile>
7     <Deterministic>True</Deterministic>
8     <ProduceReferenceAssembly>True</ProduceReferenceAssembly>
9     <ProduceReferenceAssemblyInOutDir>True</ProduceReferenceAssemblyInOutDir>
10     <NoWarn>$(NoWarn);CS0618;CS0809</NoWarn>
11   </PropertyGroup>
12
13   <PropertyGroup>
14     <ProjectRootDir>$(MSBuildThisFileDirectory)..\</ProjectRootDir>
15   </PropertyGroup>
16
17   <PropertyGroup>
18     <AllTizenProfiles>mobile;tv;wearable</AllTizenProfiles>
19     <SupportedProfiles Condition="'$(SupportedProfiles)' == ''">$(AllTizenProfiles)</SupportedProfiles>
20   </PropertyGroup>
21
22   <PropertyGroup>
23     <DefineConstants Condition="'$(BuildProfile)' == 'tv'">$(DefineConstants);PROFILE_TV</DefineConstants>
24     <DefineConstants Condition="'$(BuildProfile)' == 'wearable'">$(DefineConstants);PROFILE_WEARABLE</DefineConstants>
25     <DefineConstants Condition="'$(BuildProfile)' == 'mobile'">$(DefineConstants);PROFILE_MOBILE</DefineConstants>
26   </PropertyGroup>
27
28   <PropertyGroup>
29     <SignAssembly>True</SignAssembly>
30     <AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)Open.snk</AssemblyOriginatorKeyFile>
31     <PublicSign Condition="'$(OS)' != 'Windows_NT'">true</PublicSign>
32   </PropertyGroup>
33
34   <Import Project="$(MSBuildThisFileDirectory)version.props" />
35   <Import Project="$(MSBuildThisFileDirectory)analyzers.props"
36           Condition="'$(BuildWithAnalyzer)' == 'True' Or '$(BuildingInsideVisualStudio)' == 'True'" />
37
38 </Project>