forked from microsoft/vs-editor-api
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathOpenSource.Def.projitems
More file actions
49 lines (48 loc) · 2.49 KB
/
Copy pathOpenSource.Def.projitems
File metadata and controls
49 lines (48 loc) · 2.49 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?xml version="1.0" encoding="utf-8"?>
<Project>
<!-- Core Xplat Editor -->
<ItemGroup>
<ProjectReference Include="$(MSBuildThisFileDirectory)Editor\Core\Def\CoreUtility.csproj">
<Private>$(ReferencesVSEditorCopyToOutput)</Private>
</ProjectReference>
<ProjectReference Include="$(MSBuildThisFileDirectory)Editor\Text\Def\TextData\TextData.csproj">
<Private>$(ReferencesVSEditorCopyToOutput)</Private>
</ProjectReference>
<ProjectReference Include="$(MSBuildThisFileDirectory)Editor\Text\Def\TextLogic\TextLogic.csproj">
<Private>$(ReferencesVSEditorCopyToOutput)</Private>
</ProjectReference>
<ProjectReference Include="$(MSBuildThisFileDirectory)Editor\Text\Def\TextUI\TextUI.csproj">
<Private>$(ReferencesVSEditorCopyToOutput)</Private>
</ProjectReference>
<ProjectReference Include="$(MSBuildThisFileDirectory)Editor\Text\Def\TextUIWpf\TextUIWpf.csproj">
<Private>$(ReferencesVSEditorCopyToOutput)</Private>
</ProjectReference>
<ProjectReference Include="$(MSBuildThisFileDirectory)Editor\Language\Def\Language\LanguageDef.csproj">
<Private>$(ReferencesVSEditorCopyToOutput)</Private>
</ProjectReference>
<ProjectReference Include="$(MSBuildThisFileDirectory)Editor\Language\Def\Intellisense\IntellisenseDef.csproj">
<Private>$(ReferencesVSEditorCopyToOutput)</Private>
</ProjectReference>
<ProjectReference Include="$(MSBuildThisFileDirectory)Editor\Text\Def\Internal\Internal.csproj">
<Private>$(ReferencesVSEditorCopyToOutput)</Private>
</ProjectReference>
<ProjectReference Include="$(MSBuildThisFileDirectory)Editor\Language\Def\StandardClassification\StandardClassification.csproj">
<Private>$(ReferencesVSEditorCopyToOutput)</Private>
</ProjectReference>
</ItemGroup>
<!-- Cocoa Projects -->
<ItemGroup Condition="$(HaveXamarinMac)">
<ProjectReference Include="$(MSBuildThisFileDirectory)Editor\Text\Def\TextUICocoa\TextUICocoa.csproj">
<Private>$(ReferencesVSEditorCopyToOutput)</Private>
</ProjectReference>
</ItemGroup>
<!-- Gtk Projects -->
<ItemGroup Condition="$(HaveGtk)">
<ProjectReference Include="$(MSBuildThisFileDirectory)Editor\Text\Def\TextUIGtk\TextUIGtk.csproj">
<Private>$(ReferencesVSEditorCopyToOutput)</Private>
</ProjectReference>
<ProjectReference Include="$(MSBuildThisFileDirectory)Editor\Text\Def\TextUICommon\TextUICommon.csproj">
<Private>$(ReferencesVSEditorCopyToOutput)</Private>
</ProjectReference>
</ItemGroup>
</Project>