Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Directory.Build.props « coreclr « src - github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4b18a3a329a2f4eaa90fac9bee9ba4c8a7a46f5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<Project>
  <PropertyGroup>
    <InferPlatformFromTargetArchitecture>true</InferPlatformFromTargetArchitecture>

    <!-- TODO: Clean-up casing and remove __BuildType to remove this block. -->
    <Configuration Condition="'$(Configuration)' == ''">$(__BuildType)</Configuration>
    <Configuration Condition="'$(Configuration)' == 'debug'">Debug</Configuration>
    <Configuration Condition="'$(Configuration)' == 'release'">Release</Configuration>
    <Configuration Condition="'$(Configuration)' == 'checked'">Checked</Configuration>

    <UseMonoRuntime>false</UseMonoRuntime>
  </PropertyGroup>

  <Import Project="..\..\Directory.Build.props" />

  <PropertyGroup>
    <BaseIntermediateOutputPath>$([MSBuild]::NormalizeDirectory('$(ArtifactsObjDir)', 'coreclr', '$(MSBuildProjectName)'))</BaseIntermediateOutputPath>
    <IntermediateOutputPath Condition="'$(PlatformName)' == 'AnyCPU'">$(BaseIntermediateOutputPath)$(Configuration)\</IntermediateOutputPath>
    <IntermediateOutputPath Condition="'$(PlatformName)' != 'AnyCPU'">$(BaseIntermediateOutputPath)$(PlatformName)\$(Configuration)\</IntermediateOutputPath>
    <ProjectDir>$(MSBuildThisFileDirectory)</ProjectDir>
    <RuntimeBinDir>$([MSBuild]::NormalizeDirectory('$(ArtifactsBinDir)', 'coreclr', '$(TargetOS).$(TargetArchitecture).$(Configuration)'))</RuntimeBinDir>

    <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
    <SignAssembly Condition="'$(UsingMicrosoftNETSdk)' != 'true'">false</SignAssembly>
    <CL_MPCount>$(NumberOfCores)</CL_MPCount>
  </PropertyGroup>
</Project>