Merge pull request #6084 from Maoni0/gc_etw
[platform/upstream/coreclr.git] / dir.props
1 <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2
3   <!--
4     $(OS) is set to Unix/Windows_NT. This comes from an environment variable on Windows and MSBuild on Unix.
5   -->
6   <PropertyGroup>
7     <OsEnvironment Condition="'$(OsEnvironment)'=='' and '$(OS)'=='OSX'">Unix</OsEnvironment>
8     <OsEnvironment Condition="'$(OsEnvironment)'==''">$(OS)</OsEnvironment>
9   </PropertyGroup>
10
11   <!-- Build Tools Versions -->
12   <PropertyGroup>
13     <RoslynVersion>1.0.0-rc3-20150510-01</RoslynVersion>
14     <RoslynPackageName>Microsoft.Net.ToolsetCompilers</RoslynPackageName>
15   </PropertyGroup>
16
17     <!--
18      Switching to the .NET Core version of the BuildTools tasks seems to break numerous scenarios, such as VS intellisense and resource designer
19      as well as runnning the build on mono. Until we can get these sorted out we will continue using the .NET 4.5 version of the tasks.
20      -->
21   <PropertyGroup>
22     <BuildToolsTargets45>true</BuildToolsTargets45>
23   </PropertyGroup>
24
25   <!-- Common properties -->
26   <PropertyGroup>
27     <!-- Set basic properties and normalize -->
28
29     <BuildArch>$(__BuildArch)</BuildArch>
30     <BuildArch Condition="'$(__BuildArch)'==''">x64</BuildArch>
31     <BuildArch Condition="'$(__BuildArch)' == 'amd64'">x64</BuildArch>
32
33     <BuildType Condition="'$(__BuildType)'==''">Debug</BuildType>
34     <BuildType Condition="'$(__BuildType)' == 'debug'">Debug</BuildType>
35     <BuildType Condition="'$(__BuildType)' == 'release'">Release</BuildType>
36     <BuildType Condition="'$(__BuildType)' == 'checked'">Checked</BuildType>
37
38     <BuildOS>$(__BuildOS)</BuildOS>
39     <BuildOS Condition="'$(__BuildOS)' == ''">Windows_NT</BuildOS>
40
41     <ProjectDir>$(__ProjectDir)\</ProjectDir>
42     <ProjectDir Condition="'$(__ProjectDir)'==''">$(MSBuildThisFileDirectory)</ProjectDir>
43
44     <SourceDir>$(__SourceDir)\</SourceDir>
45     <SourceDir Condition="'$(__SourceDir)'==''">$(ProjectDir)src\</SourceDir>
46
47     <PackagesDir>$(__PackagesDir)\</PackagesDir>
48     <PackagesDir Condition="'$(__PackagesDir)'==''">$(ProjectDir)packages\</PackagesDir>
49
50     <RootBinDir>$(__RootBinDir)\</RootBinDir>
51     <RootBinDir Condition="'$(__RootBinDir)'==''">$(ProjectDir)bin\</RootBinDir>
52
53     <BinDir>$(__BinDir)\</BinDir>
54     <BinDir Condition="'$(__BinDir)'==''">$(RootBinDir)Product\$(BuildOS).$(BuildArch).$(BuildType)\</BinDir>
55
56     <IntermediateOutputRootPath Condition="'$(IntermediateOutputRootPath)' == ''">$(__IntermediatesDir)\</IntermediateOutputRootPath>
57
58     <!-- We don't append back slash because this path is used by nuget.exe as output directory and it
59          fails to write packages to it if the path contains the forward slash.
60     -->
61     <PackagesBinDir>$(__PackagesBinDir)</PackagesBinDir>
62     <PackagesBinDir Condition="'$(__PackagesBinDir)'==''">$(BinDir).nuget\</PackagesBinDir>
63
64     <ToolsDir Condition="'$(ToolsDir)'==''">$(ProjectDir)Tools/</ToolsDir>
65     <DotnetCliPath Condition="'$(DotnetCliPath)'==''">$(ToolsDir)dotnetcli/</DotnetCliPath>
66     <BuildToolsSemaphore Condition="'$(BuildToolsSemaphore)' == ''">$(ToolsDir)Microsoft.DotNet.Build.Tasks.dll</BuildToolsSemaphore>
67
68     <TestWorkingDir>$(__TestWorkingDir)\</TestWorkingDir>
69     <TestWorkingDir Condition="'$(__TestWorkingDir)'==''">$(RootBinDir)tests\$(BuildOS).$(BuildArch).$(BuildType)\</TestWorkingDir>
70     <BuildToolsTaskDir Condition="'$(BuildToolsTargets45)' == 'true'">$(ToolsDir)net45/</BuildToolsTaskDir>
71
72     <Platform Condition="'$(Platform)' == ''">$(BuildArch)</Platform>
73     <Platform Condition="'$(Platform)' == 'amd64'">x64</Platform>
74
75   </PropertyGroup>
76
77   <!-- Output paths -->
78   <PropertyGroup>
79     <BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)' == ''">$(RootBinDir)obj/</BaseIntermediateOutputPath>
80     <IntermediateOutputPath Condition="'$(IntermediateOutputPath)' == ''">$(BaseIntermediateOutputPath)\$(BuildOS).$(BuildArch).$(BuildType)</IntermediateOutputPath>
81     <OutputPath Condition="'$(OutputPath)' == ''">$(BaseIntermediateOutputPath)\$(BuildOS).$(BuildArch).$(BuildType)</OutputPath>
82     <FinalOutputPath Condition="'$(FinalOutputPath)' == ''">$(BinDir)</FinalOutputPath>
83   </PropertyGroup>
84
85   <Import Condition="Exists('$(ToolsDir)BuildVersion.targets')" Project="$(ToolsDir)BuildVersion.targets" />
86
87   <!-- Import Build tools common props file where repo-independent properties are found -->
88   <Import Condition="Exists('$(ToolsDir)Build.Common.props')" Project="$(ToolsDir)Build.Common.props" />
89
90
91   <!-- Common nuget properties -->
92   <PropertyGroup>
93     <NuGetToolPath Condition="'$(NuGetToolPath)'==''">$(PackagesDir)NuGet.exe</NuGetToolPath>
94     <NuGetConfigFile Condition="'$(NuGetConfigFile)'==''">$(SourceDir)NuGet.Config</NuGetConfigFile>
95     <NuGetConfigCommandLine>-ConfigFile "$(NuGetConfigFile)"</NuGetConfigCommandLine>
96
97     <NugetRestoreCommand>"$(NuGetToolPath)"</NugetRestoreCommand>
98     <NugetRestoreCommand>$(NugetRestoreCommand) install</NugetRestoreCommand>
99     <!-- Trim off the last slash so that nuget doesn't get confused and say there are illegal characters on
100          the path. -->
101     <NugetRestoreCommand>$(NugetRestoreCommand) -OutputDirectory "$(PackagesDir.TrimEnd('\\'))"</NugetRestoreCommand>
102     <NugetRestoreCommand>$(NugetRestoreCommand) $(NuGetConfigCommandLine)</NugetRestoreCommand>
103     <NugetRestoreCommand>$(NugetRestoreCommand) -Verbosity detailed</NugetRestoreCommand>
104     <NugetRestoreCommand Condition="'$(OsEnvironment)'=='Unix'">mono $(NuGetRestoreCommand)</NugetRestoreCommand>
105   </PropertyGroup>
106
107   <PropertyGroup>
108     <DotnetToolCommand Condition="'$(DotnetToolCommand)'=='' and '$(OsEnvironment)'!='Unix'">$(DotnetCliPath)dotnet.exe</DotnetToolCommand>
109     <DotnetToolCommand Condition="'$(DotnetToolCommand)'=='' and '$(OsEnvironment)'=='Unix'">$(DotnetCliPath)dotnet</DotnetToolCommand>
110
111     <DnuRestoreCommand>$(DnuRestoreCommand) "$(DotnetToolCommand)"</DnuRestoreCommand>
112     <DnuRestoreCommand>$(DnuRestoreCommand) restore</DnuRestoreCommand>
113     <DnuRestoreCommand>$(DnuRestoreCommand) --packages "$(PackagesDir.TrimEnd('\\'))"</DnuRestoreCommand>
114   </PropertyGroup>
115
116   <!--
117     Set up Roslyn predefines
118   -->
119   <PropertyGroup>
120     <RoslynPackageDir>$(PackagesDir)/$(RoslynPackageName).$(RoslynVersion)/</RoslynPackageDir>
121     <RoslynPropsFile>$(RoslynPackageDir)build/Microsoft.Net.ToolsetCompilers.props</RoslynPropsFile>
122   </PropertyGroup>
123
124   <!-- Setup common target properties that we use to conditionally include sources -->
125   <PropertyGroup>
126     <TargetsFreeBSD Condition="'$(BuildOS)' == 'FreeBSD'">true</TargetsFreeBSD>
127     <TargetsLinux Condition="'$(BuildOS)' == 'Linux'">true</TargetsLinux>
128     <TargetsNetBSD Condition="'$(BuildOS)' == 'NetBSD'">true</TargetsNetBSD>
129     <TargetsOSX Condition="'$(BuildOS)' == 'OSX'">true</TargetsOSX>
130     <TargetsWindows Condition="'$(BuildOS)' == 'Windows_NT'">true</TargetsWindows>
131
132     <TargetsUnix Condition="'$(TargetsFreeBSD)' == 'true' or '$(TargetsLinux)' == 'true' or '$(TargetsNetBSD)' == 'true' or '$(TargetsOSX)' == 'true'">true</TargetsUnix>
133
134     <!-- We are only tracking Linux Distributions for Nuget RID mapping -->
135     <DistroRid Condition="'$(TargetsLinux)' == 'true'">$(__DistroRid)</DistroRid>
136
137   </PropertyGroup>
138
139   <!-- Packaging properties -->
140   <PropertyGroup>
141     <PreReleaseLabel>beta</PreReleaseLabel>
142     <PackageDescriptionFile>$(SourceDir).nuget/descriptions.json</PackageDescriptionFile>
143     <PackageLicenseFile>$(SourceDir).nuget/dotnet_library_license.txt</PackageLicenseFile>
144     <PackageThirdPartyNoticesFile>$(SourceDir).nuget/ThirdPartyNotices.txt</PackageThirdPartyNoticesFile>
145
146     <!-- This should be kept in sync with package details in src/.nuget/init/project.json -->
147     <RuntimeIdGraphDefinitionFile>$(PackagesDir)/Microsoft.NETCore.Platforms/1.0.2-beta-24224-02/runtime.json</RuntimeIdGraphDefinitionFile>
148
149     <!-- This link should be updated for each release milestone, currently this points to 1.1.0-beta -->
150     <ReleaseNotes>https://go.microsoft.com/fwlink/?LinkID=799421</ReleaseNotes>
151
152     <ProjectUrl>https://dot.net</ProjectUrl>
153
154     <!-- PreReleaseSuffix for packages published from closed build (e.g. CoreCLR for Arm32, APISet, etc) -->
155     <ExternalExpectedPrerelease>beta-24229-00</ExternalExpectedPrerelease>
156
157     <!-- On Windows, MSbuild still runs against Desktop FX while it runs on .NET Core on non-Windows. this requires
158          pulling in different packaging dependencies.
159      -->
160     <PackagingTaskDir Condition="'$(TargetsWindows)' == 'true'">$(ToolsDir)net45/</PackagingTaskDir>
161     <BuildNumberMajor Condition="'$(BuildNumberMajor)' == ''">00001</BuildNumberMajor>
162     <!-- defined in buildtools packaging.targets, but we need this before targets are imported -->
163     <PackagePlatform Condition="'$(PackagePlatform)' == ''">$(Platform)</PackagePlatform>
164     <PackagePlatform Condition="'$(PackagePlatform)' == 'amd64'">x64</PackagePlatform>
165     <MinOSForArch>win7</MinOSForArch>
166     <MinOSForArch Condition="'$(PackagePlatform)' == 'arm'">win8</MinOSForArch>
167     <MinOSForArch Condition="'$(PackagePlatform)' == 'arm64'">win10</MinOSForArch>
168     
169     <!-- Arm64 cross target components are x64 hosted -->
170     <HasCrossTargetComponents Condition="'$(PackagePlatform)' =='arm64'">true</HasCrossTargetComponents>
171     <CrossTargetComponentFolder Condition="'$(PackagePlatform)' == 'arm64'">x64</CrossTargetComponentFolder>
172
173     <PackageOutputPath>$(PackagesBinDir)/pkg/</PackageOutputPath>
174     <SymbolPackageOutputPath>$(PackagesBinDir)/symbolpkg/</SymbolPackageOutputPath>
175   </PropertyGroup>
176
177   <!-- Add required legal files to packages -->
178   <ItemGroup Condition="'$(MSBuildProjectExtension)' == '.pkgproj'">
179     <File Condition="Exists('$(PackageLicenseFile)')"
180           Include="$(PackageLicenseFile)" >
181         <SkipPackageFileCheck>true</SkipPackageFileCheck>
182     </File>
183     <File Condition="Exists('$(PackageThirdPartyNoticesFile)')"
184           Include="$(PackageThirdPartyNoticesFile)" >
185         <SkipPackageFileCheck>true</SkipPackageFileCheck>
186     </File>
187   </ItemGroup>
188
189 </Project>