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

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSantiago Fernandez Madero <safern@microsoft.com>2020-01-17 06:54:36 +0300
committerGitHub <noreply@github.com>2020-01-17 06:54:36 +0300
commite7d848a83158c8ad01a38303274d4bc38ca96b54 (patch)
treecf165d13f5a7b5b129b70081089b890ba7c51c22 /eng/referenceAssemblies.props
parent0a755c1042cb078e81475e91c08e40f5c47f30f4 (diff)
Address PR feedback from old PR (#1837)
Diffstat (limited to 'eng/referenceAssemblies.props')
-rw-r--r--eng/referenceAssemblies.props6
1 files changed, 3 insertions, 3 deletions
diff --git a/eng/referenceAssemblies.props b/eng/referenceAssemblies.props
index dbb4b62aabc..09cb3e4a937 100644
--- a/eng/referenceAssemblies.props
+++ b/eng/referenceAssemblies.props
@@ -2,12 +2,12 @@
<PropertyGroup>
<IsReferenceAssembly Condition="'$(IsReferenceAssembly)' == '' and ($(MSBuildProjectFullPath.Contains('\ref\')) or $(MSBuildProjectFullPath.Contains('/ref/')))">true</IsReferenceAssembly>
- <!-- Create a common root output directory for all reference assemblies -->
- <ReferenceAssemblyOutputPath Condition="'$(ReferenceAssemblyOutputPath)' == ''">$([MSBuild]::NormalizeDirectory('$(ArtifactsBinDir)', '$(MSBuildProjectName)'))</ReferenceAssemblyOutputPath>
+ <!-- Assembly bin directory where implementation and ref output are placed -->
+ <AssemblyBinDirOutputPath Condition="'$(ReferenceAssemblyOutputPath)' == ''">$([MSBuild]::NormalizeDirectory('$(ArtifactsBinDir)', '$(MSBuildProjectName)'))</AssemblyBinDirOutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(IsReferenceAssembly)' == 'true'">
- <BaseOutputPath>$([MSBuild]::NormalizeDirectory('$(ReferenceAssemblyOutputPath)', 'ref'))</BaseOutputPath>
+ <BaseOutputPath>$([MSBuild]::NormalizeDirectory('$(AssemblyBinDirOutputPath)', 'ref'))</BaseOutputPath>
<OutputPath>$(BaseOutputPath)$(Configuration)</OutputPath>
<BaseIntermediateOutputPath>$([MSBuild]::NormalizeDirectory('$(ArtifactsObjDir)', '$(MSBuildProjectName)', 'ref'))</BaseIntermediateOutputPath>
<IntermediateOutputPath>$(BaseIntermediateOutputPath)$(Configuration)</IntermediateOutputPath>