ServicesTest.csproj 7.8 KB
Newer Older
P
Pilchie 已提交
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. -->
P
Pilchie 已提交
3
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
J
Jared Parsons 已提交
4
  <Import Project="..\..\..\build\Targets\Settings.props" />
P
Pilchie 已提交
5 6 7 8 9 10 11
  <PropertyGroup>
    <Nonshipping>true</Nonshipping>
    <Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
    <ProjectGuid>{C50166F1-BABC-40A9-95EB-8200080CD701}</ProjectGuid>
    <OutputType>Library</OutputType>
    <RootNamespace>Microsoft.CodeAnalysis.UnitTests</RootNamespace>
    <AssemblyName>Roslyn.Services.UnitTests</AssemblyName>
12
    <TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
13
    <RoslynProjectType>UnitTest</RoslynProjectType>
P
Pilchie 已提交
14 15
  </PropertyGroup>
  <ItemGroup Label="Project References">
16
    <ProjectReference Include="..\..\Compilers\Core\Portable\CodeAnalysis.csproj">
P
Pilchie 已提交
17 18 19
      <Project>{1EE8CAD3-55F9-4D91-96B2-084641DA9A6C}</Project>
      <Name>CodeAnalysis</Name>
    </ProjectReference>
20
    <ProjectReference Include="..\..\Compilers\CSharp\Portable\CSharpCodeAnalysis.csproj">
P
Pilchie 已提交
21 22 23
      <Project>{B501A547-C911-4A05-AC6E-274A50DFF30E}</Project>
      <Name>CSharpCodeAnalysis</Name>
    </ProjectReference>
24
    <ProjectReference Include="..\..\Compilers\Test\Resources\Core\CompilerTestResources.csproj">
P
Pilchie 已提交
25 26 27
      <Project>{7FE6B002-89D8-4298-9B1B-0B5C247DD1FD}</Project>
      <Name>CompilerTestResources</Name>
    </ProjectReference>
28
    <ProjectReference Include="..\..\Test\Utilities\Portable.FX45\TestUtilities.FX45.csproj">
29
      <Project>{f7712928-1175-47b3-8819-ee086753dee2}</Project>
30
      <Name>TestUtilities.FX45</Name>
31
    </ProjectReference>
32
    <ProjectReference Include="..\..\Compilers\VisualBasic\Portable\BasicCodeAnalysis.vbproj">
P
Pilchie 已提交
33 34 35
      <Project>{2523D0E6-DF32-4A3E-8AE0-A19BFFAE2EF6}</Project>
      <Name>BasicCodeAnalysis</Name>
    </ProjectReference>
36
    <ProjectReference Include="..\..\Test\Utilities\Desktop\TestUtilities.Desktop.csproj">
P
Pilchie 已提交
37
      <Project>{76C6F005-C89D-4348-BB4A-391898DBEB52}</Project>
38
      <Name>TestUtilities.Desktop</Name>
P
Pilchie 已提交
39
    </ProjectReference>
40 41 42 43
    <ProjectReference Include="..\..\Test\Utilities\Portable\TestUtilities.csproj">
      <Project>{ccbd3438-3e84-40a9-83ad-533f23bcfca5}</Project>
      <Name>TestUtilities</Name>
    </ProjectReference>
J
Jared Parsons 已提交
44 45 46 47
    <ProjectReference Include="..\CoreTestUtilities\WorkspacesTestUtilities.csproj">
      <Project>{3f2fdc1c-dc6f-44cb-b4a1-a9026f25d66e}</Project>
      <Name>WorkspacesTestUtilities</Name>
    </ProjectReference>
48 49 50 51 52
    <ProjectReference Include="..\Core\Desktop\Workspaces.Desktop.csproj">
      <Project>{2e87fa96-50bb-4607-8676-46521599f998}</Project>
      <Name>Workspaces.Desktop</Name>
    </ProjectReference>
    <ProjectReference Include="..\CSharp\Portable\CSharpWorkspace.csproj">
P
Pilchie 已提交
53 54 55
      <Project>{21B239D0-D144-430F-A394-C066D58EE267}</Project>
      <Name>CSharpWorkspace</Name>
    </ProjectReference>
56
    <ProjectReference Include="..\VisualBasic\Portable\BasicWorkspace.vbproj">
P
Pilchie 已提交
57 58 59
      <Project>{57CA988D-F010-4BF2-9A2E-07D6DCD2FF2C}</Project>
      <Name>BasicWorkspace</Name>
    </ProjectReference>
60
    <ProjectReference Include="..\Core\Portable\Workspaces.csproj">
P
Pilchie 已提交
61 62 63
      <Project>{5F8D2414-064A-4B3A-9B42-8E2A04246BE5}</Project>
      <Name>Workspaces</Name>
    </ProjectReference>
64 65 66 67
    <ProjectReference Include="..\..\Test\PdbUtilities\PdbUtilities.csproj">
      <Project>{afde6bea-5038-4a4a-a88e-dbd2e4088eed}</Project>
      <Name>PdbUtilities</Name>
    </ProjectReference>
P
Pilchie 已提交
68 69
  </ItemGroup>
  <ItemGroup>
J
Jonathon Marolf 已提交
70
    <Compile Include="CodeStyle\EditorConfigCodeStyleParserTests.cs" />
71
    <Compile Include="DependentTypeFinderTests.cs" />
72
    <Compile Include="Editting\SyntaxEditorTests.cs" />
73 74 75
    <Compile Include="Execution\Extensions.cs" />
    <Compile Include="Execution\SnapshotSerializationTestBase.cs" />
    <Compile Include="Execution\SnapshotSerializationTests.cs" />
76
    <Compile Include="ExtensionOrdererTests.cs" />
77
    <Compile Include="Host\WorkspaceServices\TestProjectCacheService.cs" />
P
Paul Harrington 已提交
78
    <Compile Include="Host\WorkspaceServices\TestTemporaryStorageService.cs" />
79 80 81
    <Compile Include="LinkedFileDiffMerging\LinkedFileDiffMergingTests.TextMerging.cs" />
    <Compile Include="LinkedFileDiffMerging\LinkedFileDiffMergingTests.Features.cs" />
    <Compile Include="LinkedFileDiffMerging\LinkedFileDiffMergingTests.cs" />
M
Matt Warren 已提交
82
    <Compile Include="UtilityTest\StringEscapingTests.cs" />
83
    <Compile Include="SymbolKeyTests.cs" />
84
    <Compile Include="ServicesTestBase.cs" />
85
    <Compile Include="UtilityTest\AsyncLazyTests.cs" />
P
Pilchie 已提交
86 87 88 89 90 91 92
    <Compile Include="CodeCleanup\AddMissingTokensTests.cs" />
    <Compile Include="CodeCleanup\CodeCleanupTests.cs" />
    <Compile Include="CodeCleanup\Extensions.cs" />
    <Compile Include="CodeCleanup\FixIncorrectTokenTests.cs" />
    <Compile Include="CodeCleanup\NormalizeModifiersOrOperatorsTests.cs" />
    <Compile Include="CodeCleanup\ReduceTokenTests.cs" />
    <Compile Include="CodeCleanup\RemoveUnnecessaryLineContinuationTests.cs" />
93
    <Compile Include="UtilityTest\BKTreeTests.cs" />
T
Tom Meschter 已提交
94
    <Compile Include="UtilityTest\FilePathUtilitiesTests.cs" />
95
    <Compile Include="UtilityTest\SpellCheckerTests.cs" />
96
    <Compile Include="WorkspaceTests\CommandLineProjectTests.cs" />
97
    <Compile Include="WorkspaceTests\AdhocWorkspaceTests.cs" />
P
Pilchie 已提交
98 99 100
    <Compile Include="Differencing\MatchTests.cs" />
    <Compile Include="Differencing\TestNode.cs" />
    <Compile Include="Differencing\TestTreeComparer.cs" />
101 102 103 104
    <Compile Include="UtilityTest\DocumentationCommentIdTests.cs" />
    <Compile Include="UtilityTest\DocumentationCommentTests.cs" />
    <Compile Include="UtilityTest\EditDistanceTests.cs" />
    <Compile Include="UtilityTest\EtwLoggingTests.cs" />
105
    <Compile Include="UtilityTest\ExceptionHelpersTests.cs" />
P
Pilchie 已提交
106 107 108 109 110
    <Compile Include="FindAllDeclarationsTests.cs" />
    <Compile Include="FindAllDeclarationsTests.TestSolutionsAndProject.cs" />
    <Compile Include="FindReferencesTests.cs" />
    <Compile Include="FormattingTests.cs" />
    <Compile Include="GeneratedCodeRecognitionTests.cs" />
111 112
    <Compile Include="WorkspaceTests\MSBuildWorkspaceTests.cs" />
    <Compile Include="WorkspaceTests\MSBuildWorkspaceTestBase.cs" />
113
    <Compile Include="WorkspaceTests\WorkspaceReferenceTests.cs" />
114 115
    <Compile Include="SolutionTests\ProjectDependencyGraphTests.cs" />
    <Compile Include="SolutionTests\ProjectInfoTests.cs" />
P
Pilchie 已提交
116
    <Compile Include="ReferencedSymbolTests.cs" />
117
    <Compile Include="UtilityTest\SerializableBytesTests.cs" />
P
Pilchie 已提交
118
    <Compile Include="SerializationTests.cs" />
119
    <Compile Include="SolutionGeneration.cs" />
120
    <Compile Include="SolutionTests\SolutionTests.cs" />
P
Pilchie 已提交
121 122 123
    <Compile Include="SyntaxNodeTests.cs" />
    <Compile Include="SyntaxPathTests.cs" />
    <Compile Include="SyntaxReferenceTests.cs" />
124 125 126 127 128
    <Compile Include="WorkspaceServiceTests\TemporaryStorageServiceTests.cs" />
    <Compile Include="Host\WorkspaceServices\TestOptionService.cs" />
    <Compile Include="WorkspaceServiceTests\OptionServiceTests.cs" />
    <Compile Include="Host\WorkspaceServices\TestPersistenceService.cs" />
    <Compile Include="Host\TestHost.cs" />
P
Pilchie 已提交
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
  </ItemGroup>
  <ItemGroup>
    <Reference Include="Microsoft.CSharp" />
    <Reference Include="PresentationCore" />
    <Reference Include="PresentationFramework" />
    <Reference Include="System" />
    <Reference Include="System.ComponentModel.Composition" />
    <Reference Include="System.Xaml" />
    <Reference Include="System.XML" />
    <Reference Include="System.Xml.Linq" />
    <Reference Include="WindowsBase" />
  </ItemGroup>
  <ItemGroup>
    <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
  </ItemGroup>
144 145 146
  <ItemGroup>
    <Folder Include="Host\Utilities\" />
  </ItemGroup>
T
Tomas Matousek 已提交
147
  <ItemGroup>
148
    <None Include="project.json" />
149
  </ItemGroup>
J
Jared Parsons 已提交
150
  <Import Project="..\..\..\build\Targets\Imports.targets" />
J
Jared Parsons 已提交
151
</Project>