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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSandy Armstrong <sandy@xamarin.com>2019-07-25 16:17:17 +0300
committerSandy Armstrong <sandy@xamarin.com>2019-07-29 20:53:44 +0300
commit1c6d9e28f7bb5e620823c024e33849dbb983a186 (patch)
tree743338a5aa3ad1dbe4977aa56f1f793641680c12 /main/msbuild
parentc405fed707a91c713eff511838c0a76aefab760d (diff)
Build: Use a property to access the vs-editor-api directory
This should make it easier for us to have all vs-editor-api references point to vs-editor-core when available. There are some blockers to that change, so for now just take this one preparatory step.
Diffstat (limited to 'main/msbuild')
-rw-r--r--main/msbuild/ReferencesVSEditor.Mac.props6
1 files changed, 3 insertions, 3 deletions
diff --git a/main/msbuild/ReferencesVSEditor.Mac.props b/main/msbuild/ReferencesVSEditor.Mac.props
index 67ff2d19fa..b371f9f472 100644
--- a/main/msbuild/ReferencesVSEditor.Mac.props
+++ b/main/msbuild/ReferencesVSEditor.Mac.props
@@ -51,15 +51,15 @@
<IncludeCopyLocal Include="Microsoft.VisualStudio.UI.Text.CurrentLineHighlighter.Implementation.dll" />
</ItemGroup>
- <Import Project="$(RootDirectory)external\vs-editor-api\build\Environment.props" />
- <Import Project="$(RootDirectory)external\vs-editor-api\ProjectReferences.projitems" />
+ <Import Project="$(VSEditorApiDirectory)build\Environment.props" />
+ <Import Project="$(VSEditorApiDirectory)ProjectReferences.projitems" />
<!-- MSBuild doesn't copy the FPF references as they match BCL assembly names -->
<Target Name="CopyFPFAssemblies" AfterTargets="_CopyFilesMarkedCopyLocal" Condition="'$(ReferencesVSEditorCopyToOutput)'=='true'">
<PropertyGroup>
<FPFConfiguration>Release</FPFConfiguration>
<FPFConfiguration Condition="$(Configuration.Contains('Debug'))">Debug</FPFConfiguration>
- <FPFOutputPath>$(RootDirectory)external\vs-editor-api\bin\FPF\$(FPFConfiguration)\net472\</FPFOutputPath>
+ <FPFOutputPath>$(VSEditorApiDirectory)bin\FPF\$(FPFConfiguration)\net472\</FPFOutputPath>
</PropertyGroup>
<ItemGroup>
<FPFOutputFiles Include="$(FPFOutputPath)PresentationCore.*" />