CSharpWorkspace.csproj 15.5 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 4
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <ImportGroup Label="Settings">
A
Andy Gocke 已提交
5
    <Import Project="..\..\..\..\build\Targets\VSL.Settings.targets" />
P
Pilchie 已提交
6 7 8 9 10 11 12 13 14
  </ImportGroup>
  <PropertyGroup>
    <Configuration Condition="'$(Configuration)' == ''">Debug</Configuration>
    <Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
    <ProjectGuid>{21B239D0-D144-430F-A394-C066D58EE267}</ProjectGuid>
    <OutputType>Library</OutputType>
    <RootNamespace>Microsoft.CodeAnalysis.CSharp</RootNamespace>
    <AssemblyName>Microsoft.CodeAnalysis.CSharp.Workspaces</AssemblyName>
    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
15
    <SolutionDir Condition="'$(SolutionDir)' == '' OR '$(SolutionDir)' == '*Undefined*'">..\..\..\</SolutionDir>
16
    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
17 18 19
    <TargetFrameworkProfile>Profile7</TargetFrameworkProfile>
    <TargetFrameworkIdentifier>.NETPortable</TargetFrameworkIdentifier>
    <ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
20
    <RestorePackages>true</RestorePackages>
P
Pilchie 已提交
21 22
  </PropertyGroup>
  <ItemGroup Label="Project References">
23
    <ProjectReference Include="..\..\..\Compilers\Core\Portable\CodeAnalysis.csproj">
P
Pilchie 已提交
24 25 26
      <Project>{1EE8CAD3-55F9-4D91-96B2-084641DA9A6C}</Project>
      <Name>CodeAnalysis</Name>
    </ProjectReference>
27
    <ProjectReference Include="..\..\..\Compilers\CSharp\Portable\CSharpCodeAnalysis.csproj">
P
Pilchie 已提交
28 29 30
      <Project>{B501A547-C911-4A05-AC6E-274A50DFF30E}</Project>
      <Name>CSharpCodeAnalysis</Name>
    </ProjectReference>
31
    <ProjectReference Include="..\..\Core\Portable\Workspaces.csproj">
P
Pilchie 已提交
32 33 34 35
      <Project>{5F8D2414-064A-4B3A-9B42-8E2A04246BE5}</Project>
      <Name>Workspaces</Name>
    </ProjectReference>
  </ItemGroup>
J
Jared Parsons 已提交
36 37
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'" />
P
Pilchie 已提交
38 39 40 41
  <ItemGroup>
    <InternalsVisibleTo Include="Microsoft.CodeAnalysis.CSharp.EditorFeatures" />
    <InternalsVisibleTo Include="Microsoft.CodeAnalysis.CSharp.Features" />
    <InternalsVisibleTo Include="Microsoft.VisualStudio.LanguageServices.CSharp" />
42 43
    <InternalsVisibleTo Include="Microsoft.CodeAnalysis.CSharp.InteractiveEditorFeatures" />
    <InternalsVisibleTo Include="Microsoft.VisualStudio.CSharp.Repl" />
P
Pilchie 已提交
44 45 46
    <InternalsVisibleToTest Include="Roslyn.Hosting.Diagnostics" />
    <InternalsVisibleToTest Include="Roslyn.InteractiveWindow.UnitTests" />
    <InternalsVisibleToTest Include="Roslyn.Services.Editor.CSharp.UnitTests" />
47
    <InternalsVisibleToTest Include="Roslyn.Services.Editor.CSharp.UnitTests2" />
P
Pilchie 已提交
48 49 50
    <InternalsVisibleToTest Include="Roslyn.Services.Editor.UnitTests" />
    <InternalsVisibleToTest Include="Roslyn.Services.Editor.UnitTests2" />
    <InternalsVisibleToTest Include="Roslyn.Services.UnitTests" />
J
Jared Parsons 已提交
51
    <InternalsVisibleToTest Include="Roslyn.Services.CSharp.UnitTests" />
52
    <InternalsVisibleToTest Include="Roslyn.VisualStudio.CSharp.UnitTests" />
P
Pilchie 已提交
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
  </ItemGroup>
  <ItemGroup>
    <Compile Include="CaseCorrection\CSharpCaseCorrectionService.cs" />
    <Compile Include="Classification\ClassificationHelpers.cs" />
    <Compile Include="Classification\Classifiers\AbstractSyntaxClassifier.cs" />
    <Compile Include="Classification\Classifiers\NameSyntaxClassifier.cs" />
    <Compile Include="Classification\Classifiers\SyntaxTokenClassifier.cs" />
    <Compile Include="Classification\Classifiers\UsingDirectiveSyntaxClassifier.cs" />
    <Compile Include="Classification\CSharpClassificationService.cs" />
    <Compile Include="Classification\SyntaxClassifier.cs" />
    <Compile Include="Classification\Worker.cs" />
    <Compile Include="Classification\Worker_DocumentationComments.cs" />
    <Compile Include="Classification\Worker_Preprocesser.cs" />
    <Compile Include="CodeCleanup\CSharpCodeCleanerService.cs" />
    <Compile Include="CodeCleanup\CSharpCodeCleanerServiceFactory.cs" />
68 69
    <Compile Include="CodeGeneration\CSharpCodeGenerationHelpers.cs" />
    <Compile Include="CodeGeneration\CSharpFlagsEnumGenerator.cs" />
P
Pilchie 已提交
70 71 72 73 74 75 76
    <Compile Include="CodeGeneration\ArgumentGenerator.cs" />
    <Compile Include="CodeGeneration\AttributeGenerator.cs" />
    <Compile Include="CodeGeneration\ConstructorGenerator.cs" />
    <Compile Include="CodeGeneration\ConversionGenerator.cs" />
    <Compile Include="CodeGeneration\CSharpCodeGenerationService.cs" />
    <Compile Include="CodeGeneration\CSharpCodeGenerationServiceFactory.cs" />
    <Compile Include="CodeGeneration\CSharpDeclarationComparer.cs" />
77
    <Compile Include="CodeGeneration\CSharpSyntaxGenerator.cs" />
P
Pilchie 已提交
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
    <Compile Include="CodeGeneration\DestructorGenerator.cs" />
    <Compile Include="CodeGeneration\EnumMemberGenerator.cs" />
    <Compile Include="CodeGeneration\EventGenerator.cs" />
    <Compile Include="CodeGeneration\ExpressionGenerator.cs" />
    <Compile Include="CodeGeneration\FieldGenerator.cs" />
    <Compile Include="CodeGeneration\MethodGenerator.cs" />
    <Compile Include="CodeGeneration\NamedTypeGenerator.cs" />
    <Compile Include="CodeGeneration\NamespaceGenerator.cs" />
    <Compile Include="CodeGeneration\OperatorGenerator.cs" />
    <Compile Include="CodeGeneration\ParameterGenerator.cs" />
    <Compile Include="CodeGeneration\PropertyGenerator.cs" />
    <Compile Include="CodeGeneration\StatementGenerator.cs" />
    <Compile Include="CodeGeneration\TypeParameterGenerator.cs" />
    <Compile Include="CodeGeneration\UsingDirectivesAdder.cs" />
    <Compile Include="CodeGeneration\UsingDirectivesAdder.Rewriter.cs" />
    <Compile Include="Composition\CSharpWorkspaceFeatures.cs" />
94
    <Compile Include="Extensions\SemanticModelExtensions.cs" />
95
    <Compile Include="LanguageServices\CSharpCommandLineParserService.cs" />
P
Pilchie 已提交
96 97 98 99 100
    <Compile Include="CSharpWorkspaceResources.Designer.cs">
      <AutoGen>True</AutoGen>
      <DesignTime>True</DesignTime>
      <DependentUpon>CSharpWorkspaceResources.resx</DependentUpon>
    </Compile>
M
Matt Warren 已提交
101
    <Compile Include="Editing\CSharpImportAdder.cs" />
P
Pilchie 已提交
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
    <Compile Include="Extensions\ArgumentSyntaxExtensions.cs" />
    <Compile Include="Extensions\BaseArgumentListSyntaxExtensions.cs" />
    <Compile Include="Extensions\BaseParameterListSyntaxExtensions.cs" />
    <Compile Include="Extensions\CastExpressionSyntaxExtensions.cs" />
    <Compile Include="Extensions\CompilationUnitSyntaxExtensions.cs" />
    <Compile Include="Extensions\ContextQuery\CSharpSyntaxContext.cs" />
    <Compile Include="Extensions\ContextQuery\SyntaxNodeExtensions.cs" />
    <Compile Include="Extensions\ContextQuery\SyntaxTokenExtensions.cs" />
    <Compile Include="Extensions\ContextQuery\SyntaxTreeExtensions.cs" />
    <Compile Include="Extensions\ConversionExtensions.cs" />
    <Compile Include="Extensions\CrefSyntaxExtensions.cs" />
    <Compile Include="Extensions\DirectiveSyntaxExtensions.cs" />
    <Compile Include="Extensions\DirectiveSyntaxExtensions.DirectiveInfo.cs" />
    <Compile Include="Extensions\DirectiveSyntaxExtensions.DirectiveSyntaxEqualityComparer.cs" />
    <Compile Include="Extensions\DirectiveSyntaxExtensions.DirectiveWalker.cs" />
    <Compile Include="Extensions\DocumentationCommentExtensions.cs" />
    <Compile Include="Extensions\ExpressionSyntaxExtensions.cs" />
    <Compile Include="Extensions\ForEachStatementSyntaxExtensions.cs" />
    <Compile Include="Extensions\ITypeParameterSymbolExtensions.cs" />
    <Compile Include="Extensions\ITypeSymbolExtensions.cs" />
    <Compile Include="Extensions\ITypeSymbolExtensions.ExpressionSyntaxGeneratorVisitor.cs" />
    <Compile Include="Extensions\ITypeSymbolExtensions.TypeSyntaxGeneratorVisitor.cs" />
    <Compile Include="Extensions\MemberDeclarationSyntaxExtensions.cs" />
    <Compile Include="Extensions\MemberDeclarationSyntaxExtensions.DeclarationFinder.cs" />
    <Compile Include="Extensions\MemberDeclarationSyntaxExtensions.LocalDeclarationMap.cs" />
    <Compile Include="Extensions\NamespaceDeclarationSyntaxExtensions.cs" />
    <Compile Include="Extensions\NameSyntaxExtensions.cs" />
    <Compile Include="Extensions\OperatorPrecedence.cs" />
    <Compile Include="Extensions\ParenthesizedExpressionSyntaxExtensions.cs" />
    <Compile Include="Extensions\QueryExpressionSyntaxExtensions.cs" />
    <Compile Include="Extensions\SeparatedSyntaxListExtensions.cs" />
    <Compile Include="Extensions\SimpleNameSyntaxExtensions.cs" />
    <Compile Include="Extensions\StatementSyntaxExtensions.cs" />
    <Compile Include="Extensions\StringExtensions.cs" />
    <Compile Include="Extensions\SymbolDisplayPartExtensions.cs" />
P
Pharring 已提交
137
    <Compile Include="Extensions\SyntaxKindExtensions.cs" />
P
Pilchie 已提交
138 139 140 141 142 143 144 145 146 147 148 149
    <Compile Include="Extensions\SyntaxListExtensions.cs" />
    <Compile Include="Extensions\SyntaxNodeExtensions.cs" />
    <Compile Include="Extensions\SyntaxNodeExtensions.SingleLineRewriter.cs" />
    <Compile Include="Extensions\SyntaxTokenExtensions.cs" />
    <Compile Include="Extensions\SyntaxTokenListExtensions.cs" />
    <Compile Include="Extensions\SyntaxTreeExtensions.cs" />
    <Compile Include="Extensions\SyntaxTriviaExtensions.cs" />
    <Compile Include="Extensions\SyntaxTriviaListExtensions.cs" />
    <Compile Include="Extensions\TypeDeclarationSyntaxExtensions.cs" />
    <Compile Include="Extensions\TypeSyntaxExtensions.cs" />
    <Compile Include="Extensions\VariableDeclaratorExtensions.cs" />
    <Compile Include="Formatting\CSharpFormattingOptions.cs" />
150
    <Compile Include="Formatting\CSharpFormattingOptionsProvider.cs" />
P
Pilchie 已提交
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
    <Compile Include="Formatting\CSharpSyntaxFormattingService.cs" />
    <Compile Include="Formatting\DefaultOperationProvider.cs" />
    <Compile Include="Formatting\Engine\AggregatedFormattingResult.cs" />
    <Compile Include="Formatting\Engine\CSharpFormatEngine.cs" />
    <Compile Include="Formatting\Engine\CSharpStructuredTriviaFormatEngine.cs" />
    <Compile Include="Formatting\Engine\FormattingResult.cs" />
    <Compile Include="Formatting\Engine\Trivia\CSharpTriviaFormatter.cs" />
    <Compile Include="Formatting\Engine\Trivia\TriviaDataFactory.Analyzer.cs" />
    <Compile Include="Formatting\Engine\Trivia\TriviaDataFactory.CodeShapeAnalyzer.cs" />
    <Compile Include="Formatting\Engine\Trivia\TriviaDataFactory.ComplexTrivia.cs" />
    <Compile Include="Formatting\Engine\Trivia\TriviaDataFactory.cs" />
    <Compile Include="Formatting\Engine\Trivia\TriviaDataFactory.FormattedComplexTrivia.cs" />
    <Compile Include="Formatting\Engine\Trivia\TriviaDataFactory.ModifiedComplexTrivia.cs" />
    <Compile Include="Formatting\Engine\Trivia\TriviaRewriter.cs" />
    <Compile Include="Formatting\FormattingHelpers.cs" />
    <Compile Include="Formatting\Rules\AnchorIndentationFormattingRule.cs" />
    <Compile Include="Formatting\Rules\BaseFormattingRule.cs" />
168
    <Compile Include="Formatting\Rules\ElasticTriviaFormattingRule.cs" />
P
Pilchie 已提交
169 170 171 172 173 174 175 176 177 178 179 180 181
    <Compile Include="Formatting\Rules\EndOfFileTokenFormattingRule.cs" />
    <Compile Include="Formatting\Rules\IndentBlockFormattingRule.cs" />
    <Compile Include="Formatting\Rules\IndentUserSettingsFormattingRule.cs" />
    <Compile Include="Formatting\Rules\NewLineUserSettingFormattingRule.cs" />
    <Compile Include="Formatting\Rules\QueryExpressionFormattingRule.cs" />
    <Compile Include="Formatting\Rules\SpacingFormattingRule.cs" />
    <Compile Include="Formatting\Rules\StructuredTriviaFormattingRule.cs" />
    <Compile Include="Formatting\Rules\SuppressFormattingRule.cs" />
    <Compile Include="Formatting\Rules\TokenBasedFormattingRule.cs" />
    <Compile Include="Formatting\Rules\WrappingFormattingRule.cs" />
    <Compile Include="LanguageServices\CSharpCompilationFactoryService.cs" />
    <Compile Include="LanguageServices\CSharpSemanticFactsService.cs" />
    <Compile Include="LanguageServices\CSharpSymbolDeclarationService.cs" />
182
    <Compile Include="LanguageServices\CSharpSyntaxFactsService.cs" />
P
Pilchie 已提交
183 184 185 186 187 188
    <Compile Include="LanguageServices\CSharpSyntaxTreeFactory.PathSyntaxReference.cs" />
    <Compile Include="LanguageServices\CSharpSyntaxTreeFactoryService.cs" />
    <Compile Include="LanguageServices\CSharpSyntaxTreeFactoryService.NullSyntaxReference.cs" />
    <Compile Include="LanguageServices\CSharpSyntaxTreeFactoryService.PositionalSyntaxReference.cs" />
    <Compile Include="LanguageServices\CSharpSyntaxTreeFactoryService.RecoverableSyntaxTree.cs" />
    <Compile Include="LanguageServices\CSharpTypeInferenceService.cs" />
189
    <Compile Include="LanguageServices\CSharpTypeInferenceService.TypeInferrer.cs" />
190
    <Compile Include="LinkedFiles\CSharpLinkedFileMergeConflictCommentAdditionService.cs" />
P
Pilchie 已提交
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
    <Compile Include="Recommendations\CSharpRecommendationService.cs" />
    <Compile Include="Rename\CSharpRenameRewriterLanguageService.cs" />
    <Compile Include="Rename\LabelConflictVisitor.cs" />
    <Compile Include="Rename\LocalConflictVisitor.cs" />
    <Compile Include="Simplification\AbstractCSharpReducer.AbstractExpressionRewriter.cs" />
    <Compile Include="Simplification\AbstractCSharpReducer.cs" />
    <Compile Include="Simplification\CSharpCastReducer.cs" />
    <Compile Include="Simplification\CSharpCastReducer.Rewriter.cs" />
    <Compile Include="Simplification\CSharpEscapingReducer.cs" />
    <Compile Include="Simplification\CSharpEscapingReducer.Rewriter.cs" />
    <Compile Include="Simplification\CSharpExtensionMethodReducer.cs" />
    <Compile Include="Simplification\CSharpExtensionMethodReducer.Rewriter.cs" />
    <Compile Include="Simplification\CSharpMiscellaneousReducer.cs" />
    <Compile Include="Simplification\CSharpMiscellaneousReducer.Rewriter.cs" />
    <Compile Include="Simplification\CSharpNameReducer.cs" />
    <Compile Include="Simplification\CSharpNameReducer.Rewriter.cs" />
    <Compile Include="Simplification\CSharpParenthesesReducer.cs" />
    <Compile Include="Simplification\CSharpParenthesesReducer.Rewriter.cs" />
    <Compile Include="Simplification\CSharpSimplificationService.cs" />
    <Compile Include="Simplification\CSharpSimplificationService.Expander.cs" />
    <Compile Include="Simplification\CSharpSimplificationService.NodesAndTokensToReduceComputer.cs" />
    <Compile Include="Utilities\CompilationOptionsConversion.cs" />
    <Compile Include="Utilities\FormattingRangeHelper.cs" />
    <Compile Include="Utilities\NameSyntaxComparer.cs" />
    <Compile Include="Utilities\NameSyntaxIterator.cs" />
    <Compile Include="Utilities\SpeculationAnalyzer.cs" />
    <Compile Include="Utilities\SyntaxKindSet.cs" />
    <Compile Include="Utilities\TokenComparer.cs" />
    <Compile Include="Utilities\TypeSyntaxComparer.cs" />
    <Compile Include="Utilities\UsingsAndExternAliasesDirectiveComparer.cs" />
    <Compile Include="Utilities\UsingsAndExternAliasesOrganizer.cs" />
  </ItemGroup>
  <ItemGroup>
    <Folder Include="CodeCleanup\Providers\" />
  </ItemGroup>
  <ItemGroup>
    <EmbeddedResource Include="CSharpWorkspaceResources.resx">
      <Generator>ResXFileCodeGenerator</Generator>
      <LastGenOutput>CSharpWorkspaceResources.Designer.cs</LastGenOutput>
    </EmbeddedResource>
  </ItemGroup>
  <ItemGroup>
    <Compile Include="Formatting\Engine\Trivia\CSharpTriviaFormatter.DocumentationCommentExteriorCommentRewriter.cs" />
  </ItemGroup>
235
  <ItemGroup>
236
    <None Include="project.json" />
J
Jared Parsons 已提交
237 238
    <PublicAPI Include="PublicAPI.Shipped.txt" />
    <PublicAPI Include="PublicAPI.Unshipped.txt" />
239
  </ItemGroup>
P
Pilchie 已提交
240
  <ImportGroup Label="Targets">
A
Andy Gocke 已提交
241
    <Import Project="..\..\..\..\build\Targets\VSL.Imports.targets" />
P
Pilchie 已提交
242
  </ImportGroup>
243
</Project>