[NUI] Fix Xaml issue
[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   </PropertyGroup>
10
11   <PropertyGroup>
12     <ProjectRootDir>$(MSBuildThisFileDirectory)..\</ProjectRootDir>
13   </PropertyGroup>
14
15   <PropertyGroup>
16     <AllTizenProfiles>mobile;tv;wearable</AllTizenProfiles>
17     <SupportedProfiles Condition="'$(SupportedProfiles)' == ''">$(AllTizenProfiles)</SupportedProfiles>
18   </PropertyGroup>
19
20   <PropertyGroup>
21     <DefineConstants Condition="'$(BuildProfile)' == 'tv'">$(DefineConstants);PROFILE_TV</DefineConstants>
22     <DefineConstants Condition="'$(BuildProfile)' == 'wearable'">$(DefineConstants);PROFILE_WEARABLE</DefineConstants>
23     <DefineConstants Condition="'$(BuildProfile)' == 'mobile'">$(DefineConstants);PROFILE_MOBILE</DefineConstants>
24   </PropertyGroup>
25
26   <PropertyGroup>
27     <SignAssembly>True</SignAssembly>
28     <AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)Open.snk</AssemblyOriginatorKeyFile>
29     <PublicSign Condition="'$(OS)' != 'Windows_NT'">true</PublicSign>
30   </PropertyGroup>
31
32   <Import Project="$(MSBuildThisFileDirectory)version.props" />
33   <Import Project="$(MSBuildThisFileDirectory)analyzers.props"
34           Condition="'$(BuildWithAnalyzer)' == 'True' Or '$(BuildingInsideVisualStudio)' == 'True'" />
35
36 </Project>