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
    <GenerateMSBuildBindingRedirects>true</GenerateMSBuildBindingRedirects>
14
    <RoslynProjectType>UnitTest</RoslynProjectType>
P
Pilchie 已提交
15 16
  </PropertyGroup>
  <ItemGroup Label="Project References">
17
    <ProjectReference Include="..\..\Compilers\Core\Portable\CodeAnalysis.csproj">
P
Pilchie 已提交
18 19 20
      <Project>{1EE8CAD3-55F9-4D91-96B2-084641DA9A6C}</Project>
      <Name>CodeAnalysis</Name>
    </ProjectReference>
21
    <ProjectReference Include="..\..\Compilers\CSharp\Portable\CSharpCodeAnalysis.csproj">
P
Pilchie 已提交
22 23 24
      <Project>{B501A547-C911-4A05-AC6E-274A50DFF30E}</Project>
      <Name>CSharpCodeAnalysis</Name>
    </ProjectReference>
25
    <ProjectReference Include="..\..\Compilers\Test\Resources\Core\CompilerTestResources.csproj">
P
Pilchie 已提交
26 27 28
      <Project>{7FE6B002-89D8-4298-9B1B-0B5C247DD1FD}</Project>
      <Name>CompilerTestResources</Name>
    </ProjectReference>
29
    <ProjectReference Include="..\..\Test\Utilities\Portable.FX45\TestUtilities.FX45.csproj">
30
      <Project>{f7712928-1175-47b3-8819-ee086753dee2}</Project>
31
      <Name>TestUtilities.FX45</Name>
32
    </ProjectReference>
33
    <ProjectReference Include="..\..\Compilers\VisualBasic\Portable\BasicCodeAnalysis.vbproj">
P
Pilchie 已提交
34 35 36
      <Project>{2523D0E6-DF32-4A3E-8AE0-A19BFFAE2EF6}</Project>
      <Name>BasicCodeAnalysis</Name>
    </ProjectReference>
37
    <ProjectReference Include="..\..\Test\Utilities\Desktop\TestUtilities.Desktop.csproj">
P
Pilchie 已提交
38
      <Project>{76C6F005-C89D-4348-BB4A-391898DBEB52}</Project>
39
      <Name>TestUtilities.Desktop</Name>
P
Pilchie 已提交
40
    </ProjectReference>
J
Jared Parsons 已提交
41 42 43 44
    <ProjectReference Include="..\CoreTestUtilities\WorkspacesTestUtilities.csproj">
      <Project>{3f2fdc1c-dc6f-44cb-b4a1-a9026f25d66e}</Project>
      <Name>WorkspacesTestUtilities</Name>
    </ProjectReference>
45 46 47 48 49
    <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 已提交
50 51 52
      <Project>{21B239D0-D144-430F-A394-C066D58EE267}</Project>
      <Name>CSharpWorkspace</Name>
    </ProjectReference>
53
    <ProjectReference Include="..\VisualBasic\Portable\BasicWorkspace.vbproj">
P
Pilchie 已提交
54 55 56
      <Project>{57CA988D-F010-4BF2-9A2E-07D6DCD2FF2C}</Project>
      <Name>BasicWorkspace</Name>
    </ProjectReference>
57
    <ProjectReference Include="..\Core\Portable\Workspaces.csproj">
P
Pilchie 已提交
58 59 60
      <Project>{5F8D2414-064A-4B3A-9B42-8E2A04246BE5}</Project>
      <Name>Workspaces</Name>
    </ProjectReference>
61 62 63 64
    <ProjectReference Include="..\..\Test\PdbUtilities\PdbUtilities.csproj">
      <Project>{afde6bea-5038-4a4a-a88e-dbd2e4088eed}</Project>
      <Name>PdbUtilities</Name>
    </ProjectReference>
P
Pilchie 已提交
65 66
  </ItemGroup>
  <ItemGroup>
67
    <Compile Include="DependentTypeFinderTests.cs" />
68
    <Compile Include="Editting\SyntaxEditorTests.cs" />
69 70 71
    <Compile Include="Execution\Extensions.cs" />
    <Compile Include="Execution\SnapshotSerializationTestBase.cs" />
    <Compile Include="Execution\SnapshotSerializationTests.cs" />
72
    <Compile Include="ExtensionOrdererTests.cs" />
73
    <Compile Include="Host\WorkspaceServices\TestProjectCacheService.cs" />
P
Paul Harrington 已提交
74
    <Compile Include="Host\WorkspaceServices\TestTemporaryStorageService.cs" />
75 76 77
    <Compile Include="LinkedFileDiffMerging\LinkedFileDiffMergingTests.TextMerging.cs" />
    <Compile Include="LinkedFileDiffMerging\LinkedFileDiffMergingTests.Features.cs" />
    <Compile Include="LinkedFileDiffMerging\LinkedFileDiffMergingTests.cs" />
M
Matt Warren 已提交
78
    <Compile Include="UtilityTest\StringEscapingTests.cs" />
79
    <Compile Include="SymbolKeyTests.cs" />
80
    <Compile Include="ServicesTestBase.cs" />
81
    <Compile Include="UtilityTest\AsyncLazyTests.cs" />
P
Pilchie 已提交
82 83 84 85 86 87 88
    <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" />
89
    <Compile Include="UtilityTest\BKTreeTests.cs" />
T
Tom Meschter 已提交
90
    <Compile Include="UtilityTest\FilePathUtilitiesTests.cs" />
91
    <Compile Include="UtilityTest\SpellCheckerTests.cs" />
92
    <Compile Include="WorkspaceTests\CommandLineProjectTests.cs" />
93
    <Compile Include="WorkspaceTests\AdhocWorkspaceTests.cs" />
P
Pilchie 已提交
94 95 96
    <Compile Include="Differencing\MatchTests.cs" />
    <Compile Include="Differencing\TestNode.cs" />
    <Compile Include="Differencing\TestTreeComparer.cs" />
97 98 99 100
    <Compile Include="UtilityTest\DocumentationCommentIdTests.cs" />
    <Compile Include="UtilityTest\DocumentationCommentTests.cs" />
    <Compile Include="UtilityTest\EditDistanceTests.cs" />
    <Compile Include="UtilityTest\EtwLoggingTests.cs" />
101
    <Compile Include="UtilityTest\ExceptionHelpersTests.cs" />
P
Pilchie 已提交
102 103 104 105 106
    <Compile Include="FindAllDeclarationsTests.cs" />
    <Compile Include="FindAllDeclarationsTests.TestSolutionsAndProject.cs" />
    <Compile Include="FindReferencesTests.cs" />
    <Compile Include="FormattingTests.cs" />
    <Compile Include="GeneratedCodeRecognitionTests.cs" />
107 108
    <Compile Include="WorkspaceTests\MSBuildWorkspaceTests.cs" />
    <Compile Include="WorkspaceTests\MSBuildWorkspaceTestBase.cs" />
109
    <Compile Include="WorkspaceTests\WorkspaceReferenceTests.cs" />
110 111
    <Compile Include="SolutionTests\ProjectDependencyGraphTests.cs" />
    <Compile Include="SolutionTests\ProjectInfoTests.cs" />
P
Pilchie 已提交
112
    <Compile Include="ReferencedSymbolTests.cs" />
113
    <Compile Include="UtilityTest\SerializableBytesTests.cs" />
P
Pilchie 已提交
114
    <Compile Include="SerializationTests.cs" />
115
    <Compile Include="SolutionGeneration.cs" />
116
    <Compile Include="SolutionTests\SolutionTests.cs" />
P
Pilchie 已提交
117 118 119
    <Compile Include="SyntaxNodeTests.cs" />
    <Compile Include="SyntaxPathTests.cs" />
    <Compile Include="SyntaxReferenceTests.cs" />
120 121 122 123 124
    <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 已提交
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
  </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>
140 141 142
  <ItemGroup>
    <Folder Include="Host\Utilities\" />
  </ItemGroup>
143
  <ItemGroup>
M
Matt Warren 已提交
144
    <None Include="app.config" />
145
    <None Include="project.json" />
146
  </ItemGroup>
J
Jared Parsons 已提交
147
  <Import Project="..\..\..\build\Targets\Imports.targets" />
J
Jared Parsons 已提交
148
  <Import Project="..\..\..\build\Targets\Roslyn.Toolsets.Xunit.targets" />
J
Jared Parsons 已提交
149
</Project>