Workspaces.Desktop.csproj 8.9 KB
Newer Older
1
<?xml version="1.0" encoding="utf-8"?>
2
<!-- Copyright (c)  Microsoft.  All Rights Reserved.  Licensed under the Apache License, Version 2.0.  See License.txt in the project root for license information. -->
3
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
4
  <ImportGroup Label="Settings">
A
Andy Gocke 已提交
5
    <Import Project="..\..\..\..\build\Targets\VSL.Settings.targets" />
6 7 8 9 10 11 12 13 14 15
  </ImportGroup>
  <PropertyGroup>
    <Configuration Condition="'$(Configuration)' == ''">Debug</Configuration>
    <Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
    <ProjectGuid>{2E87FA96-50BB-4607-8676-46521599F998}</ProjectGuid>
    <OutputType>Library</OutputType>
    <RootNamespace>Microsoft.CodeAnalysis</RootNamespace>
    <AssemblyName>Microsoft.CodeAnalysis.Workspaces.Desktop</AssemblyName>
    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
    <SolutionDir Condition="'$(SolutionDir)' == '' OR '$(SolutionDir)' == '*Undefined*'">..\..\..\..\</SolutionDir>
16
    <RestorePackages>true</RestorePackages>
17
    <TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
18
    <CopyNuGetImplementations>false</CopyNuGetImplementations>
19 20 21 22 23 24
  </PropertyGroup>
  <ItemGroup Label="File References">
    <Reference Include="System.ComponentModel.Composition" />
    <Reference Include="System.Xml.Linq" />
  </ItemGroup>
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
J
Jared Parsons 已提交
25
    <DefineConstants>$(DefineConstants);WORKSPACE_DESKTOP</DefineConstants>
26 27
  </PropertyGroup>
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
J
Jared Parsons 已提交
28
    <DefineConstants>$(DefineConstants);WORKSPACE_DESKTOP</DefineConstants>
29
  </PropertyGroup>
30 31 32
  <PropertyGroup Condition="'$(MSBuildAssemblyNameFragment)' == 'v12.0'">
    <DefineConstants>$(DefineConstants);MSBUILD12</DefineConstants>
  </PropertyGroup>
33
  <ItemGroup>
T
Tomas Matousek 已提交
34 35 36 37 38 39 40 41 42
    <Reference Include="Microsoft.Build, Version=$(VisualStudioReferenceAssemblyVersion), Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
      <Private>false</Private>
    </Reference>
    <Reference Include="Microsoft.Build.Framework, Version=$(VisualStudioReferenceAssemblyVersion), Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
      <Private>false</Private>
    </Reference>
    <Reference Include="Microsoft.Build.Tasks.$(MSBuildAssemblyNameFragment), Version=$(VisualStudioReferenceAssemblyVersion), Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
      <Private>false</Private>
    </Reference>
43 44 45 46
    <Reference Include="System" />
    <Reference Include="System.Xml" />
  </ItemGroup>
  <ItemGroup>
J
Fix ups  
Jared Parsons 已提交
47
    <Compile Include="..\..\..\Compilers\Core\Portable\EncodedStringText.cs">
48 49
      <Link>InternalUtilities\EncodedStringText.cs</Link>
    </Compile>
50 51 52
    <Compile Include="..\..\..\Compilers\Core\Portable\InternalUtilities\StreamExtensions.cs">
      <Link>InternalUtilities\StreamExtensions.cs</Link>
    </Compile>
J
Jared Parsons 已提交
53
    <Compile Include="..\..\..\Compilers\Shared\CoreClrShim.cs">
54 55
      <Link>InternalUtilities\CoreClrShim.cs</Link>
    </Compile>
J
Fix ups  
Jared Parsons 已提交
56
    <Compile Include="..\..\..\Compilers\Core\Portable\FileKey.cs">
57 58
      <Link>InternalUtilities\FileKey.cs</Link>
    </Compile>
59 60
    <Compile Include="..\..\..\Compilers\Shared\DesktopAnalyzerAssemblyLoader.cs">
      <Link>InternalUtilities\DesktopAnalyzerAssemblyLoader.cs</Link>
61
    </Compile>
J
Jared Parsons 已提交
62
    <Compile Include="..\..\..\Compilers\Shared\GlobalAssemblyCacheHelpers\GlobalAssemblyCacheLocation.cs">
63 64
      <Link>InternalUtilities\GlobalAssemblyCache.cs</Link>
    </Compile>
M
Matt Warren 已提交
65
    <Compile Include="Options\ExportOptionAttribute.cs" />
66
    <Compile Include="InternalUtilities\FilePathUtilities.cs" />
67 68
    <Compile Include="Log\EtwLogger.cs" />
    <Compile Include="Log\RoslynEventSource.cs" />
69 70
    <Compile Include="Options\Providers\ExportedOptionKeyOptionProvider.cs" />
    <Compile Include="Utilities\Documentation\FileBasedXmlDocumentationProvider.cs" />
A
Andrew Casey 已提交
71
    <Compile Include="Utilities\ReferencePathUtilities_Desktop.cs" />
72 73 74 75 76
    <Compile Include="WorkspaceDesktopResources.Designer.cs">
      <AutoGen>True</AutoGen>
      <DesignTime>True</DesignTime>
      <DependentUpon>WorkspaceDesktopResources.resx</DependentUpon>
    </Compile>
77 78 79
    <Compile Include="Workspace\CommandLineProject.cs" />
    <Compile Include="Workspace\FileTextLoader.cs" />
    <Compile Include="Workspace\Host\Documentation\DocumentationProviderServiceFactory.cs" />
80
    <Compile Include="Workspace\Host\Mef\DesktopMefHostServices.cs" />
81
    <Compile Include="Workspace\Host\Mef\MefV1HostServices.cs" />
T
Tom Meschter 已提交
82
    <Compile Include="Workspace\Host\SimpleAnalyzerAssemblyLoaderService.cs" />
83 84
    <Compile Include="Workspace\Host\TemporaryStorage\TemporaryStorageServiceFactory.cs" />
    <Compile Include="Workspace\Host\TemporaryStorage\TemporaryStorageServiceFactory.MemoryMappedFiles.cs" />
85
    <Compile Include="Workspace\Host\TextFactory\DesktopTextFactoryService.cs" />
86 87 88
    <Compile Include="Workspace\MSBuild\CSharp\CSharpProjectFileLoader.cs" />
    <Compile Include="Workspace\MSBuild\CSharp\CSharpProjectFileLoader.CSharpProjectFile.cs" />
    <Compile Include="Workspace\MSBuild\CSharp\CSharpProjectFileLoaderFactory.cs" />
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
    <Compile Include="Workspace\MSBuild\MSBuildWorkspace.cs" />
    <Compile Include="Workspace\MSBuild\ProjectFile\BuildTargets.cs" />
    <Compile Include="Workspace\MSBuild\ProjectFile\DocumentFileInfo.cs" />
    <Compile Include="Workspace\MSBuild\ProjectFile\IProjectFile.cs" />
    <Compile Include="Workspace\MSBuild\ProjectFile\IProjectFileLoader.cs" />
    <Compile Include="Workspace\MSBuild\ProjectFile\ProjectFile.cs" />
    <Compile Include="Workspace\MSBuild\ProjectFile\ProjectFileExtensionAttribute.cs" />
    <Compile Include="Workspace\MSBuild\ProjectFile\ProjectFileInfo.cs" />
    <Compile Include="Workspace\MSBuild\ProjectFile\ProjectFileLoader.cs" />
    <Compile Include="Workspace\MSBuild\ProjectFile\ProjectFileReference.cs" />
    <Compile Include="Workspace\MSBuild\ProjectFile\ProjectTypeGuidAttribute.cs" />
    <Compile Include="Workspace\MSBuild\SolutionFile\LineScanner.cs" />
    <Compile Include="Workspace\MSBuild\SolutionFile\ProjectBlock.cs" />
    <Compile Include="Workspace\MSBuild\SolutionFile\SectionBlock.cs" />
    <Compile Include="Workspace\MSBuild\SolutionFile\SolutionFile.cs" />
104 105
    <Compile Include="Workspace\MSBuild\VisualBasic\VisualBasicProjectFileLoader.cs" />
    <Compile Include="Workspace\MSBuild\VisualBasic\VisualBasicProjectFileLoaderFactory.cs" />
106
    <Compile Include="Workspace\MSBuild\MSBuildProjectLoader.cs" />
107 108 109 110 111 112 113 114
  </ItemGroup>
  <ItemGroup>
    <InternalsVisibleTo Include="Microsoft.CodeAnalysis.CSharp.EditorFeatures" />
    <InternalsVisibleTo Include="Microsoft.CodeAnalysis.Features" />
    <InternalsVisibleTo Include="Microsoft.CodeAnalysis.EditorFeatures" />
    <InternalsVisibleTo Include="Microsoft.VisualStudio.LanguageServices" />
    <InternalsVisibleTo Include="Microsoft.VisualStudio.LanguageServices.CSharp" />
    <InternalsVisibleTo Include="Microsoft.VisualStudio.LanguageServices.Implementation" />
115
    <InternalsVisibleTo Include="Microsoft.VisualStudio.LanguageServices.SolutionExplorer" />
116
    <InternalsVisibleTo Include="Microsoft.VisualStudio.LanguageServices.VisualBasic" />
117
    <InternalsVisibleTo Include="Microsoft.VisualStudio.InteractiveServices" />
118 119
    <InternalsVisibleTo Include="Microsoft.CodeAnalysis.InteractiveFeatures" />
    <InternalsVisibleTo Include="Microsoft.CodeAnalysis.InteractiveEditorFeatures" />
120
    <InternalsVisibleTo Include="Roslyn.VisualStudio.Setup" />
121
    <InternalsVisibleTo Include="Roslyn.VisualStudio.DiagnosticsWindow" />
122 123
    <InternalsVisibleToTest Include="Roslyn.Services.Editor.UnitTests" />
    <InternalsVisibleToTest Include="Roslyn.Services.Editor.UnitTests2" />
124 125
    <InternalsVisibleToTest Include="Roslyn.Services.Editor.CSharp.UnitTests" />
    <InternalsVisibleToTest Include="Roslyn.Services.Editor.VisualBasic.UnitTests" />
126 127
    <InternalsVisibleToTest Include="Roslyn.Services.UnitTests" />
    <InternalsVisibleToTest Include="RoslynETAHost" />
128
    <InternalsVisibleTo Include="Roslyn.Hosting.Diagnostics" />
129
    <InternalsVisibleToTest Include="RoslynTaoActions" />
130 131 132 133 134 135 136 137 138 139 140 141
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\..\..\Compilers\Core\Portable\CodeAnalysis.csproj">
      <Project>{1ee8cad3-55f9-4d91-96b2-084641da9a6c}</Project>
      <Name>CodeAnalysis</Name>
    </ProjectReference>
    <ProjectReference Include="..\Portable\Workspaces.csproj">
      <Project>{5f8d2414-064a-4b3a-9b42-8e2a04246be5}</Project>
      <Name>Workspaces</Name>
    </ProjectReference>
  </ItemGroup>
  <ItemGroup>
142
    <None Include="project.json" />
J
Jared Parsons 已提交
143 144
    <PublicAPI Include="PublicAPI.Shipped.txt" />
    <PublicAPI Include="PublicAPI.Unshipped.txt" />
145
  </ItemGroup>
146 147 148 149 150 151
  <ItemGroup>
    <EmbeddedResource Include="WorkspaceDesktopResources.resx">
      <Generator>ResXFileCodeGenerator</Generator>
      <LastGenOutput>WorkspaceDesktopResources.Designer.cs</LastGenOutput>
    </EmbeddedResource>
  </ItemGroup>
152
  <ImportGroup Label="Targets">
A
Andy Gocke 已提交
153
    <Import Project="..\..\..\..\build\Targets\VSL.Imports.targets" />
154
  </ImportGroup>
155
</Project>