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

dir.props « src - github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ccd463c570def720c0d1cc779d4f755a32105061 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <Import Project="..\dir.props" />

  <!-- Workaround for https://github.com/dotnet/project-system/issues/2454 that is causing our solutions not to load -->
  <PropertyGroup>
    <Configurations>Debug;Release</Configurations>
    <Platforms>AnyCPU;x64;x86;arm;arm64</Platforms>
  </PropertyGroup>

  <PropertyGroup Condition="$(MSBuildProjectName.StartsWith('System.Private.')) and $(MSBuildProjectDirectory.EndsWith('src'))">
    <OutputPath>$(BaseOutputPath)$(OSPlatformConfig)/sdk</OutputPath>
    <UseCommonOutputDirectory>true</UseCommonOutputDirectory>
  </PropertyGroup>

</Project>