CSharpCodeAnalysis.csproj 59.6 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>{B501A547-C911-4A05-AC6E-274A50DFF30E}</ProjectGuid>
    <OutputType>Library</OutputType>
    <RootNamespace>Microsoft.CodeAnalysis.CSharp</RootNamespace>
    <AssemblyName>Microsoft.CodeAnalysis.CSharp</AssemblyName>
    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
15
    <SolutionDir Condition="'$(SolutionDir)' == '' OR '$(SolutionDir)' == '*Undefined*'">..\..\..\..\</SolutionDir>
T
Tomas Matousek 已提交
16 17 18
    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
    <TargetFrameworkProfile>Profile7</TargetFrameworkProfile>
    <TargetFrameworkIdentifier>.NETPortable</TargetFrameworkIdentifier>
19
    <ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
20
    <RestorePackages>true</RestorePackages>
G
gafter 已提交
21
    <ServiceablePackage>true</ServiceablePackage>
P
Pilchie 已提交
22 23
  </PropertyGroup>
  <ItemGroup Label="Project References">
24 25 26
    <ProjectReference Include="..\..\..\Tools\Source\CompilerGeneratorTools\DeployCompilerGeneratorToolsRuntime\DeployCompilerGeneratorToolsRuntime.csproj">
      <Project>{6da08f12-32f2-4dd9-bbad-982eb71a2c9b}</Project>
      <Name>DeployCompilerGeneratorToolsRuntime</Name>
P
Pilchie 已提交
27 28
      <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
    </ProjectReference>
29
    <ProjectReference Include="..\..\Core\Portable\CodeAnalysis.csproj">
30 31 32
      <Project>{1EE8CAD3-55F9-4D91-96B2-084641DA9A6C}</Project>
      <Name>CodeAnalysis</Name>
    </ProjectReference>
P
Pilchie 已提交
33 34 35
  </ItemGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <AllowUnsafeBlocks>false</AllowUnsafeBlocks>
36
    <CodeAnalysisRuleSet>..\CSharpCodeAnalysisRules.ruleset</CodeAnalysisRuleSet>
P
Pilchie 已提交
37
  </PropertyGroup>
38 39 40
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <CodeAnalysisRuleSet>..\CSharpCodeAnalysisRules.ruleset</CodeAnalysisRuleSet>
  </PropertyGroup>
P
Pilchie 已提交
41 42 43
  <PropertyGroup>
    <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent>
  </PropertyGroup>
44 45 46 47 48 49 50 51 52 53 54 55 56 57
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
    <DebugSymbols>true</DebugSymbols>
    <OutDir>..\..\..\..\Binaries\Debug\amd64</OutDir>
    <CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
    <PlatformTarget>x64</PlatformTarget>
    <ErrorReport>prompt</ErrorReport>
    <CodeAnalysisRuleSet>..\CSharpCodeAnalysisRules.ruleset</CodeAnalysisRuleSet>
  </PropertyGroup>
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
    <OutDir>..\..\..\..\Binaries\Release\amd64</OutDir>
    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
    <Optimize>true</Optimize>
    <PlatformTarget>x64</PlatformTarget>
    <ErrorReport>prompt</ErrorReport>
58
    <CodeAnalysisRuleSet>..\CSharpCodeAnalysisRules.ruleset</CodeAnalysisRuleSet>
59
  </PropertyGroup>
P
Pilchie 已提交
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
  <ItemGroup>
    <Compile Include="Binder\AliasAndExternAliasDirective.cs" />
    <Compile Include="Binder\AliasAndUsingDirective.cs" />
    <Compile Include="Binder\Binder.cs" />
    <Compile Include="Binder\Binder.OverflowChecks.cs" />
    <Compile Include="Binder\Binder.QueryTranslationState.cs" />
    <Compile Include="Binder\Binder.QueryUnboundLambdaState.cs" />
    <Compile Include="Binder\Binder.RangeVariableMap.cs" />
    <Compile Include="Binder\Binder.WithQueryLambdaParametersBinder.cs" />
    <Compile Include="Binder\Binder_AnonymousTypes.cs" />
    <Compile Include="Binder\Binder_Attributes.cs" />
    <Compile Include="Binder\Binder_Await.cs" />
    <Compile Include="Binder\Binder_Constraints.cs" />
    <Compile Include="Binder\Binder_Conversions.cs" />
    <Compile Include="Binder\Binder_Crefs.cs" />
    <Compile Include="Binder\Binder_Expressions.cs" />
    <Compile Include="Binder\Binder_Flags.cs" />
T
TomasMatousek 已提交
77
    <Compile Include="Binder\Binder_Initializers.cs" />
78
    <Compile Include="Binder\Binder_InterpolatedString.cs" />
79
    <Compile Include="Binder\Binder_Invocation.cs" />
P
Pilchie 已提交
80 81 82 83
    <Compile Include="Binder\Binder_Lambda.cs" />
    <Compile Include="Binder\Binder_Lookup.cs" />
    <Compile Include="Binder\Binder_NameConflicts.cs" />
    <Compile Include="Binder\Binder_Operators.cs" />
84
    <Compile Include="Binder\Binder_Patterns.cs" />
P
Pilchie 已提交
85 86
    <Compile Include="Binder\Binder_Query.cs" />
    <Compile Include="Binder\Binder_QueryErrors.cs" />
87
    <Compile Include="Binder\Binder_Deconstruct.cs" />
P
Pilchie 已提交
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
    <Compile Include="Binder\Binder_Statements.cs" />
    <Compile Include="Binder\Binder_Symbols.cs" />
    <Compile Include="Binder\Binder_Unsafe.cs" />
    <Compile Include="Binder\Binder_XmlNameAttribute.cs" />
    <Compile Include="Binder\BinderFactory.BinderFactoryVisitor.cs" />
    <Compile Include="Binder\BinderFactory.cs" />
    <Compile Include="Binder\BinderFactory.NodeUsage.cs" />
    <Compile Include="Binder\BinderFlags.cs" />
    <Compile Include="Binder\BinderFlagsExtensions.cs" />
    <Compile Include="Binder\BlockBinder.cs" />
    <Compile Include="Binder\BuckStopsHereBinder.cs" />
    <Compile Include="Binder\CatchClauseBinder.cs" />
    <Compile Include="Binder\ConstantFieldsInProgress.cs" />
    <Compile Include="Binder\ConstantFieldsInProgressBinder.cs" />
    <Compile Include="Binder\ContextualAttributeBinder.cs" />
    <Compile Include="Binder\EarlyWellKnownAttributeBinder.cs" />
    <Compile Include="Binder\ExecutableCodeBinder.cs" />
    <Compile Include="Binder\ExtensionMethodScope.cs" />
    <Compile Include="Binder\FixedStatementBinder.cs" />
    <Compile Include="Binder\ForEachEnumeratorInfo.cs" />
    <Compile Include="Binder\ForEachLoopBinder.cs" />
    <Compile Include="Binder\ForLoopBinder.cs" />
    <Compile Include="Binder\HostObjectModeBinder.cs" />
    <Compile Include="Binder\ImplicitlyTypedFieldBinder.cs" />
    <Compile Include="Binder\ImplicitlyTypedLocalBinder.cs" />
T
TomasMatousek 已提交
113
    <Compile Include="Binder\ImportChain.cs" />
P
Pilchie 已提交
114 115 116 117 118 119 120
    <Compile Include="Binder\Imports.cs" />
    <Compile Include="Binder\InContainerBinder.cs" />
    <Compile Include="Binder\InMethodBinder.cs" />
    <Compile Include="Binder\LocalBinderFactory.cs" />
    <Compile Include="Binder\LocalInProgressBinder.cs" />
    <Compile Include="Binder\LocalScopeBinder.cs" />
    <Compile Include="Binder\LockBinder.cs" />
121
    <Compile Include="Binder\LockOrUsingBinder.cs" />
P
Pilchie 已提交
122 123 124 125 126 127
    <Compile Include="Binder\LookupOptions.cs" />
    <Compile Include="Binder\LookupResult.cs" />
    <Compile Include="Binder\LookupResultKind.cs" />
    <Compile Include="Binder\LookupSymbolsInfo.cs" />
    <Compile Include="Binder\LoopBinderContext.cs" />
    <Compile Include="Binder\MethodGroupResolution.cs" />
128
    <Compile Include="Binder\NameofBinder.cs" />
P
Pilchie 已提交
129
    <Compile Include="Binder\NamespaceOrTypeAndUsingDirective.cs" />
N
Neal Gafter 已提交
130
    <Compile Include="Binder\PatternVariableFinder.cs" />
C
Charles Stoner 已提交
131
    <Compile Include="Binder\ScriptLocalScopeBinder.cs" />
132
    <Compile Include="Binder\PatternVariableBinder.cs" />
P
Pilchie 已提交
133 134
    <Compile Include="Binder\Semantics\AccessCheck.cs" />
    <Compile Include="Binder\Semantics\BestTypeInferrer.cs" />
135
    <Compile Include="Binder\Semantics\Conversions\BestIndex.cs" />
P
Pilchie 已提交
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
    <Compile Include="Binder\Semantics\Conversions\Conversion.cs" />
    <Compile Include="Binder\Semantics\Conversions\ConversionEasyOut.cs" />
    <Compile Include="Binder\Semantics\Conversions\ConversionKind.cs" />
    <Compile Include="Binder\Semantics\Conversions\ConversionKindExtensions.cs" />
    <Compile Include="Binder\Semantics\Conversions\Conversions.cs" />
    <Compile Include="Binder\Semantics\Conversions\ConversionsBase.cs" />
    <Compile Include="Binder\Semantics\Conversions\LambdaConversionResult.cs" />
    <Compile Include="Binder\Semantics\Conversions\TypeConversions.cs" />
    <Compile Include="Binder\Semantics\Conversions\UserDefinedConversionAnalysis.cs" />
    <Compile Include="Binder\Semantics\Conversions\UserDefinedConversionResult.cs" />
    <Compile Include="Binder\Semantics\Conversions\UserDefinedConversions.cs" />
    <Compile Include="Binder\Semantics\Conversions\UserDefinedExplicitConversions.cs" />
    <Compile Include="Binder\Semantics\Conversions\UserDefinedImplicitConversions.cs" />
    <Compile Include="Binder\Semantics\Operators\BinaryOperatorAnalysisResult.cs" />
    <Compile Include="Binder\Semantics\Operators\BinaryOperatorEasyOut.cs" />
    <Compile Include="Binder\Semantics\Operators\BinaryOperatorOverloadResolution.cs" />
    <Compile Include="Binder\Semantics\Operators\BinaryOperatorOverloadResolutionResult.cs" />
    <Compile Include="Binder\Semantics\Operators\BinaryOperatorSignature.cs" />
    <Compile Include="Binder\Semantics\Operators\OperatorAnalysisResultKind.cs" />
    <Compile Include="Binder\Semantics\Operators\OperatorFacts.cs" />
    <Compile Include="Binder\Semantics\Operators\OperatorKind.cs" />
    <Compile Include="Binder\Semantics\Operators\OperatorKindExtensions.cs" />
    <Compile Include="Binder\Semantics\Operators\UnaryOperatorAnalysisResult.cs" />
    <Compile Include="Binder\Semantics\Operators\UnaryOperatorEasyOut.cs" />
    <Compile Include="Binder\Semantics\Operators\UnaryOperatorOverloadResolution.cs" />
    <Compile Include="Binder\Semantics\Operators\UnaryOperatorOverloadResolutionResult.cs" />
    <Compile Include="Binder\Semantics\Operators\UnaryOperatorSignature.cs" />
    <Compile Include="Binder\Semantics\OverloadResolution\AnalyzedArguments.cs" />
    <Compile Include="Binder\Semantics\OverloadResolution\ArgumentAnalysisResult.cs" />
    <Compile Include="Binder\Semantics\OverloadResolution\ArgumentAnalysisResultKind.cs" />
    <Compile Include="Binder\Semantics\OverloadResolution\MemberAnalysisResult.cs" />
    <Compile Include="Binder\Semantics\OverloadResolution\MemberResolutionKind.cs" />
    <Compile Include="Binder\Semantics\OverloadResolution\MemberResolutionResult.cs" />
    <Compile Include="Binder\Semantics\OverloadResolution\MethodGroup.cs" />
    <Compile Include="Binder\Semantics\OverloadResolution\MethodTypeInference.cs" />
    <Compile Include="Binder\Semantics\OverloadResolution\OverloadResolution.cs" />
    <Compile Include="Binder\Semantics\OverloadResolution\OverloadResolution_ArgsToParameters.cs" />
    <Compile Include="Binder\Semantics\OverloadResolution\OverloadResolutionResult.cs" />
    <Compile Include="Binder\Semantics\SemanticFacts.cs" />
    <Compile Include="Binder\SingleLookupResult.cs" />
    <Compile Include="Binder\SwitchBinder.cs" />
177
    <Compile Include="Binder\SimpleLocalScopeBinder.cs" />
178
    <Compile Include="Binder\SwitchBinder_BindPatternSwitch.cs" />
P
Pilchie 已提交
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
    <Compile Include="Binder\TypeofBinder.cs" />
    <Compile Include="Binder\UsingStatementBinder.cs" />
    <Compile Include="Binder\WhileBinder.cs" />
    <Compile Include="Binder\WithClassTypeParametersBinder.cs" />
    <Compile Include="Binder\WithCrefTypeParametersBinder.cs" />
    <Compile Include="Binder\WithLambdaParametersBinder.cs" />
    <Compile Include="Binder\WithMethodTypeParametersBinder.cs" />
    <Compile Include="Binder\WithParametersBinder.cs" />
    <Compile Include="Binder\WithTypeParametersBinder.cs" />
    <Compile Include="BoundTree\BoundExpression.cs" />
    <Compile Include="BoundTree\BoundExpressionExtensions.cs" />
    <Compile Include="BoundTree\BoundMethodGroup.cs" />
    <Compile Include="BoundTree\BoundMethodGroupFlags.cs" />
    <Compile Include="BoundTree\BoundNode.cs" />
    <Compile Include="BoundTree\BoundNodeExtensions.cs" />
    <Compile Include="BoundTree\BoundObjectCreationExpression.cs" />
    <Compile Include="BoundTree\BoundQueryClause.cs" />
    <Compile Include="BoundTree\BoundSequencePoint.cs" />
    <Compile Include="BoundTree\BoundStatementExtensions.cs" />
    <Compile Include="BoundTree\BoundTreeRewriter.cs" />
    <Compile Include="BoundTree\BoundTreeVisitors.cs" />
    <Compile Include="BoundTree\BoundTreeWalker.cs" />
    <Compile Include="BoundTree\Constructors.cs" />
202
    <Compile Include="BoundTree\DecisionTree.cs" />
J
More  
John Hamby 已提交
203
    <Compile Include="BoundTree\Expression.cs" />
204
    <Compile Include="BoundTree\DeconstructionLocalPendingInference.cs" />
205
    <Compile Include="BoundTree\OutVarLocalPendingInference.cs" />
J
Julien 已提交
206
    <Compile Include="BoundTree\OutDeconstructVarPendingInference.cs" />
207
    <Compile Include="BoundTree\PseudoVariableExpressions.cs" />
P
Pilchie 已提交
208 209
    <Compile Include="BoundTree\Formatting.cs" />
    <Compile Include="BoundTree\NoOpStatementFlavor.cs" />
J
More  
John Hamby 已提交
210
    <Compile Include="BoundTree\Statement.cs" />
P
Pilchie 已提交
211 212 213 214 215 216 217 218 219
    <Compile Include="BoundTree\UnboundLambda.cs" />
    <Compile Include="CodeGen\CodeGenerator.cs" />
    <Compile Include="CodeGen\EmitAddress.cs" />
    <Compile Include="CodeGen\EmitArrayInitializer.cs" />
    <Compile Include="CodeGen\EmitConversion.cs" />
    <Compile Include="CodeGen\EmitExpression.cs" />
    <Compile Include="CodeGen\EmitOperators.cs" />
    <Compile Include="CodeGen\EmitStatement.cs" />
    <Compile Include="CodeGen\Optimizer.cs" />
T
Tomas Matousek 已提交
220
    <Compile Include="CommandLine\CSharpCommandLineArguments.cs" />
221
    <Compile Include="CommandLine\CommandLineDiagnosticFormatter.cs" />
T
Tomas Matousek 已提交
222
    <Compile Include="CommandLine\CSharpCommandLineParser.cs" />
223
    <Compile Include="CommandLine\CSharpCompiler.cs" />
P
Pilchie 已提交
224 225 226
    <Compile Include="Compilation\AttributeSemanticModel.cs" />
    <Compile Include="Compilation\AwaitExpressionInfo.cs" />
    <Compile Include="Compilation\BuiltInOperators.cs" />
227
    <Compile Include="Compilation\CSharpScriptCompilationInfo.cs" />
228 229
    <Compile Include="Compilation\SyntaxAndDeclarationManager.cs" />
    <Compile Include="Compilation\SyntaxAndDeclarationManager.LazyState.cs" />
230
    <Compile Include="Compilation\CSharpCompilerDiagnosticAnalyzer.cs" />
P
Pilchie 已提交
231 232
    <Compile Include="Compilation\CSharpCompilation.cs" />
    <Compile Include="Compilation\CSharpCompilationReference.cs" />
233
    <Compile Include="Compilation\CSharpDiagnosticFilter.cs" />
P
Pilchie 已提交
234 235
    <Compile Include="Compilation\CSharpSemanticModel.cs" />
    <Compile Include="Compilation\ForEachStatementInfo.cs" />
236
    <Compile Include="Compilation\InitializerSemanticModel.cs" />
P
Pilchie 已提交
237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
    <Compile Include="Compilation\LexicalOrderSymbolComparer.cs" />
    <Compile Include="Compilation\MemberSemanticModel.cs" />
    <Compile Include="Compilation\MemberSemanticModel.NodeMapBuilder.cs" />
    <Compile Include="Compilation\MemberSemanticModel.SpeculativeMemberSemanticModel.cs" />
    <Compile Include="Compilation\MethodBodySemanticModel.cs" />
    <Compile Include="Compilation\QueryClauseInfo.cs" />
    <Compile Include="Compilation\SpeculativeSyntaxTreeSemanticModel.cs" />
    <Compile Include="Compilation\SymbolInfoFactory.cs" />
    <Compile Include="Compilation\SyntaxTreeSemanticModel.cs" />
    <Compile Include="Compilation\SyntaxTreeSemanticModel_RegionAnalysisContext.cs" />
    <Compile Include="Compilation\TypeInfo.cs" />
    <Compile Include="Compiler\AnonymousTypeMethodBodySynthesizer.cs" />
    <Compile Include="Compiler\ClsComplianceChecker.cs" />
    <Compile Include="Compiler\DocumentationCommentCompiler.cs" />
    <Compile Include="Compiler\DocumentationCommentCompiler.DocumentationCommentWalker.cs" />
    <Compile Include="Compiler\DocumentationCommentCompiler.IncludeElementExpander.cs" />
    <Compile Include="Compiler\EntryPointCandidateFinder.cs" />
T
TomasMatousek 已提交
254
    <Compile Include="Compiler\MethodCompiler.cs" />
P
Pilchie 已提交
255 256
    <Compile Include="Compiler\MethodBodySynthesizer.cs" />
    <Compile Include="Compiler\MethodBodySynthesizer.Lowered.cs" />
257
    <Compile Include="Compiler\ModuleCompilationState.cs" />
T
TomasMatousek 已提交
258
    <Compile Include="Compiler\SynthesizedMetadataCompiler.cs" />
P
Pilchie 已提交
259 260
    <Compile Include="Compiler\TypeCompilationState.cs" />
    <Compile Include="Compiler\UnprocessedDocumentationCommentFinder.cs" />
261
    <Compile Include="CSharpCompilationOptions.cs" />
P
Pilchie 已提交
262
    <Compile Include="CSharpExtensions.cs" />
263
    <Compile Include="CSharpFileSystemExtensions.cs" />
264
    <Compile Include="CSharpParseOptions.cs" />
P
Pilchie 已提交
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
    <Compile Include="CSharpResources.Designer.cs">
      <AutoGen>True</AutoGen>
      <DesignTime>True</DesignTime>
      <DependentUpon>CSharpResources.resx</DependentUpon>
    </Compile>
    <Compile Include="Declarations\Declaration.cs" />
    <Compile Include="Declarations\DeclarationKind.cs" />
    <Compile Include="Declarations\DeclarationModifiers.cs" />
    <Compile Include="Declarations\DeclarationTable.Cache.cs" />
    <Compile Include="Declarations\DeclarationTable.cs" />
    <Compile Include="Declarations\DeclarationTreeBuilder.cs" />
    <Compile Include="Declarations\MergedNamespaceDeclaration.cs" />
    <Compile Include="Declarations\MergedNamespaceOrTypeDeclaration.cs" />
    <Compile Include="Declarations\MergedTypeDeclaration.cs" />
    <Compile Include="Declarations\RootSingleNamespaceDeclaration.cs" />
    <Compile Include="Declarations\SingleNamespaceDeclaration.cs" />
    <Compile Include="Declarations\SingleNamespaceDeclarationEx.cs" />
    <Compile Include="Declarations\SingleNamespaceOrTypeDeclaration.cs" />
    <Compile Include="Declarations\SingleTypeDeclaration.cs" />
    <Compile Include="DocumentationComments\DocumentationCommentIDVisitor.cs" />
    <Compile Include="DocumentationComments\DocumentationCommentIDVisitor.PartVisitor.cs" />
    <Compile Include="DocumentationComments\PEDocumentationCommentUtils.cs" />
    <Compile Include="DocumentationComments\SourceDocumentationCommentUtils.cs" />
288
    <Compile Include="Emitter\EditAndContinue\CSharpDefinitionMap.cs" />
289 290
    <Compile Include="Emitter\EditAndContinue\EmitHelpers.cs" />
    <Compile Include="Emitter\EditAndContinue\PEDeltaAssemblyBuilder.cs" />
291
    <Compile Include="Emitter\EditAndContinue\CSharpSymbolMatcher.cs" />
P
Pilchie 已提交
292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
    <Compile Include="Emitter\Model\ArrayTypeSymbolAdapter.cs" />
    <Compile Include="Emitter\Model\AssemblyReference.cs" />
    <Compile Include="Emitter\Model\AttributeDataAdapter.cs" />
    <Compile Include="Emitter\Model\CustomModifierAdapter.cs" />
    <Compile Include="Emitter\Model\DynamicTypeSymbolAdapter.cs" />
    <Compile Include="Emitter\Model\EventSymbolAdapter.cs" />
    <Compile Include="Emitter\Model\ExpandedVarargsMethodReference.cs" />
    <Compile Include="Emitter\Model\FieldSymbolAdapter.cs" />
    <Compile Include="Emitter\Model\GenericMethodInstanceReference.cs" />
    <Compile Include="Emitter\Model\GenericNamespaceTypeInstanceReference.cs" />
    <Compile Include="Emitter\Model\GenericNestedTypeInstanceReference.cs" />
    <Compile Include="Emitter\Model\GenericTypeInstanceReference.cs" />
    <Compile Include="Emitter\Model\MethodReference.cs" />
    <Compile Include="Emitter\Model\MethodSymbolAdapter.cs" />
    <Compile Include="Emitter\Model\ModuleReference.cs" />
    <Compile Include="Emitter\Model\NamedTypeReference.cs" />
    <Compile Include="Emitter\Model\NamedTypeSymbolAdapter.cs" />
T
TomasMatousek 已提交
309
    <Compile Include="Emitter\Model\NamespaceSymbolAdapter.cs" />
P
Pilchie 已提交
310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337
    <Compile Include="Emitter\Model\ParameterSymbolAdapter.cs">
      <SubType>Code</SubType>
    </Compile>
    <Compile Include="Emitter\Model\ParameterTypeInformation.cs" />
    <Compile Include="Emitter\Model\PEAssemblyBuilder.cs" />
    <Compile Include="Emitter\Model\PEModuleBuilder.cs" />
    <Compile Include="Emitter\Model\PENetModuleBuilder.cs" />
    <Compile Include="Emitter\Model\PointerTypeSymbolAdapter.cs" />
    <Compile Include="Emitter\Model\PropertySymbolAdapter.cs" />
    <Compile Include="Emitter\Model\SpecializedFieldReference.cs" />
    <Compile Include="Emitter\Model\SpecializedGenericMethodInstanceReference.cs" />
    <Compile Include="Emitter\Model\SpecializedGenericNestedTypeInstanceReference.cs" />
    <Compile Include="Emitter\Model\SpecializedMethodReference.cs" />
    <Compile Include="Emitter\Model\SpecializedNestedTypeReference.cs" />
    <Compile Include="Emitter\Model\SymbolAdapter.cs" />
    <Compile Include="Emitter\Model\TypeMemberReference.cs" />
    <Compile Include="Emitter\Model\TypeParameterSymbolAdapter.cs" />
    <Compile Include="Emitter\NoPia\EmbeddedEvent.cs" />
    <Compile Include="Emitter\NoPia\EmbeddedField.cs" />
    <Compile Include="Emitter\NoPia\EmbeddedMethod.cs" />
    <Compile Include="Emitter\NoPia\EmbeddedParameter.cs" />
    <Compile Include="Emitter\NoPia\EmbeddedProperty.cs" />
    <Compile Include="Emitter\NoPia\EmbeddedType.cs" />
    <Compile Include="Emitter\NoPia\EmbeddedTypeParameter.cs" />
    <Compile Include="Emitter\NoPia\EmbeddedTypesManager.cs" />
    <Compile Include="Errors\CSDiagnostic.cs" />
    <Compile Include="Errors\CSDiagnosticInfo.cs" />
    <Compile Include="Errors\CSharpDiagnosticFormatter.cs" />
338
    <Compile Include="Errors\DiagnosticBagExtensions.cs" />
P
Pilchie 已提交
339 340 341 342 343 344 345 346 347 348 349 350 351 352
    <Compile Include="Errors\DiagnosticInfoWithSymbols.cs" />
    <Compile Include="Errors\ErrorFacts.cs" />
    <Compile Include="Errors\LazyObsoleteDiagnosticInfo.cs" />
    <Compile Include="Errors\MessageID.cs" />
    <Compile Include="Errors\MessageProvider.cs" />
    <Compile Include="Errors\SyntaxDiagnosticInfo.cs" />
    <Compile Include="Errors\XmlParseErrorCode.cs" />
    <Compile Include="Errors\XmlSyntaxDiagnosticInfo.cs" />
    <Compile Include="FlowAnalysis\AbstractFlowPass.cs" />
    <Compile Include="FlowAnalysis\AbstractRegionControlFlowPass.cs" />
    <Compile Include="FlowAnalysis\AbstractRegionDataFlowPass.cs" />
    <Compile Include="FlowAnalysis\AlwaysAssignedWalker.cs" />
    <Compile Include="FlowAnalysis\ControlFlowAnalysis.cs" />
    <Compile Include="FlowAnalysis\ControlFlowPass.cs" />
353
    <Compile Include="FlowAnalysis\CSharpDataFlowAnalysis.cs" />
P
Pilchie 已提交
354 355 356 357 358 359 360 361 362 363
    <Compile Include="FlowAnalysis\DataFlowPass.cs" />
    <Compile Include="FlowAnalysis\DataFlowPass.VariableIdentifier.cs" />
    <Compile Include="FlowAnalysis\DataFlowsInWalker.cs" />
    <Compile Include="FlowAnalysis\DataFlowsOutWalker.cs" />
    <Compile Include="FlowAnalysis\EmptyStructTypeCache.cs" />
    <Compile Include="FlowAnalysis\EntryPointsWalker.cs" />
    <Compile Include="FlowAnalysis\ExitPointsWalker.cs" />
    <Compile Include="FlowAnalysis\FlowAnalysisPass.cs" />
    <Compile Include="FlowAnalysis\PreciseAbstractFlowPass.AbstractLocalState.cs" />
    <Compile Include="FlowAnalysis\PreciseAbstractFlowPass.cs" />
364
    <Compile Include="FlowAnalysis\PreciseAbstractFlowPass_Switch.cs" />
P
Pilchie 已提交
365 366 367 368 369 370
    <Compile Include="FlowAnalysis\ReadWriteWalker.cs" />
    <Compile Include="FlowAnalysis\RegionAnalysisContext.cs" />
    <Compile Include="FlowAnalysis\RegionReachableWalker.cs" />
    <Compile Include="FlowAnalysis\UnassignedAddressTakenVariablesWalker.cs" />
    <Compile Include="FlowAnalysis\UnassignedVariablesWalker.cs" />
    <Compile Include="FlowAnalysis\VariablesDeclaredWalker.cs" />
P
Paul Vick 已提交
371
    <Compile Include="GlobalSuppressions.cs" />
P
Pilchie 已提交
372
    <Compile Include="LanguageVersion.cs" />
373
    <Compile Include="Lowering\AsyncRewriter\AsyncConstructor.cs" />
374
    <Compile Include="Lowering\AsyncRewriter\AsyncExceptionHandlerRewriter.cs" />
375 376 377 378
    <Compile Include="Lowering\AsyncRewriter\AsyncMethodBuilderMemberCollection.cs" />
    <Compile Include="Lowering\AsyncRewriter\AsyncMethodToStateMachineRewriter.cs" />
    <Compile Include="Lowering\AsyncRewriter\AsyncRewriter.cs" />
    <Compile Include="Lowering\AsyncRewriter\AsyncStateMachine.cs" />
379
    <Compile Include="Lowering\AsyncRewriter\AwaitExpressionSpiller.cs" />
P
Pilchie 已提交
380 381 382 383 384
    <Compile Include="Lowering\DiagnosticsPass_ExpressionTrees.cs" />
    <Compile Include="Lowering\DiagnosticsPass_Warnings.cs" />
    <Compile Include="Lowering\Extensions.cs" />
    <Compile Include="Lowering\InitializerRewriter.cs" />
    <Compile Include="Lowering\IteratorRewriter\IteratorConstructor.cs" />
385 386 387
    <Compile Include="Lowering\IteratorRewriter\IteratorFinallyMethodSymbol.cs" />
    <Compile Include="Lowering\IteratorRewriter\IteratorMethodToStateMachineRewriter.IteratorFinallyFrame.cs" />
    <Compile Include="Lowering\IteratorRewriter\IteratorMethodToStateMachineRewriter.cs" />
P
Pilchie 已提交
388
    <Compile Include="Lowering\IteratorRewriter\IteratorRewriter.cs" />
389 390
    <Compile Include="Lowering\IteratorRewriter\IteratorStateMachine.cs" />
    <Compile Include="Lowering\IteratorRewriter\IteratorMethodToStateMachineRewriter.YieldsInTryAnalysis.cs" />
391
    <Compile Include="Lowering\LambdaRewriter\ClosureKind.cs" />
P
Pilchie 已提交
392
    <Compile Include="Lowering\LambdaRewriter\ExpressionLambdaRewriter.cs" />
393 394
    <Compile Include="Lowering\LambdaRewriter\LambdaCapturedVariable.cs" />
    <Compile Include="Lowering\LambdaRewriter\LambdaFrameConstructor.cs" />
P
Pilchie 已提交
395 396
    <Compile Include="Lowering\LambdaRewriter\LambdaRewriter.Analysis.cs" />
    <Compile Include="Lowering\LambdaRewriter\LambdaRewriter.cs" />
397 398 399
    <Compile Include="Lowering\LambdaRewriter\LambdaFrame.cs" />
    <Compile Include="Lowering\LambdaRewriter\SynthesizedLambdaMethod.cs" />
    <Compile Include="Lowering\LocalRewriter\DynamicSiteContainer.cs" />
P
Pilchie 已提交
400 401 402 403 404 405 406 407 408 409
    <Compile Include="Lowering\LocalRewriter\LocalRewriter.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_AnonymousObjectCreation.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_AsOperator.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_AssignmentOperator.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_Await.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_BinaryOperator.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_Block.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_BreakStatement.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_Call.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_CompoundAssignmentOperator.cs" />
410
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_ConditionalAccess.cs" />
P
Pilchie 已提交
411 412 413
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_ConditionalOperator.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_ContinueStatement.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_Conversion.cs" />
414
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_DeconstructionAssignmentOperator.cs" />
P
Pilchie 已提交
415 416 417 418 419 420 421 422 423 424 425 426 427 428
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_DelegateCreationExpression.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_DoStatement.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_Event.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_ExpressionStatement.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_Field.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_FixedStatement.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_ForEachStatement.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_ForStatement.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_GotoStatement.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_HostObjectMemberReference.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_IfStatement.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_IndexerAccess.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_IsOperator.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_LabeledStatement.cs" />
N
Neal Gafter 已提交
429
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_PatternSwitchStatement.cs" />
V
VSadov 已提交
430
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_TupleCreationExpression.cs" />
P
Pilchie 已提交
431 432 433 434 435 436 437
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_Literal.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_LocalDeclaration.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_LockStatement.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_MultipleLocalDeclarations.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_NullCoalescingOperator.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_ObjectCreationExpression.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_ObjectOrCollectionInitializerExpression.cs" />
N
Neal Gafter 已提交
438
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_Patterns.cs" />
P
Pilchie 已提交
439 440 441 442 443 444 445 446
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_PointerElementAccess.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_PreviousSubmissionReference.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_PropertyAccess.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_Query.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_ReturnStatement.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_SequencePoints.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_StackAlloc.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_StringConcat.cs" />
447
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_StringInterpolation.cs" />
P
Pilchie 已提交
448 449 450 451 452 453 454 455 456 457 458 459
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_SwitchStatement.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_ThrowStatement.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_TryStatement.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_UnaryOperator.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_UsingStatement.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_WhileStatement.cs" />
    <Compile Include="Lowering\LocalRewriter\LocalRewriter_Yield.cs" />
    <Compile Include="Lowering\LocalRewriter\LoweredDynamicOperation.cs" />
    <Compile Include="Lowering\LocalRewriter\LoweredDynamicOperationFactory.cs" />
    <Compile Include="Lowering\MethodToClassRewriter.cs" />
    <Compile Include="Lowering\StateMachineRewriter\CapturedSymbol.cs" />
    <Compile Include="Lowering\StateMachineRewriter\IteratorAndAsyncCaptureWalker.cs" />
460 461
    <Compile Include="Lowering\StateMachineRewriter\MethodToStateMachineRewriter.cs" />
    <Compile Include="Lowering\StateMachineRewriter\StateMachineFieldSymbol.cs" />
P
Pilchie 已提交
462 463
    <Compile Include="Lowering\StateMachineRewriter\StateMachineRewriter.cs" />
    <Compile Include="Lowering\StateMachineRewriter\StateMachineStates.cs" />
464
    <Compile Include="Lowering\StateMachineRewriter\StateMachineTypeSymbol.cs" />
465
    <Compile Include="Lowering\StateMachineRewriter\SynthesizedStateMachineProperty.cs" />
P
Pilchie 已提交
466
    <Compile Include="Lowering\SynthesizedMethodBaseSymbol.cs" />
467
    <Compile Include="Lowering\StateMachineRewriter\SynthesizedStateMachineMethod.cs" />
P
Pilchie 已提交
468 469 470 471 472 473 474 475 476 477 478 479 480
    <Compile Include="Lowering\SynthesizedSubmissionFields.cs" />
    <Compile Include="Lowering\SyntheticBoundNodeFactory.cs" />
    <Compile Include="Lowering\UnmatchedGotoFinder.cs" />
    <Compile Include="Parser\AbstractLexer.cs" />
    <Compile Include="Parser\BlendedNode.cs" />
    <Compile Include="Parser\Blender.cs" />
    <Compile Include="Parser\Blender.Cursor.cs" />
    <Compile Include="Parser\Blender.Reader.cs" />
    <Compile Include="Parser\CharacterInfo.cs" />
    <Compile Include="Parser\DirectiveParser.cs" />
    <Compile Include="Parser\Directives.cs" />
    <Compile Include="Parser\DocumentationCommentParser.cs" />
    <Compile Include="Parser\DocumentationCommentXmlTokens.cs" />
481
    <Compile Include="Parser\LanguageParser_Patterns.cs" />
P
Pilchie 已提交
482
    <Compile Include="Parser\LanguageParser.cs" />
483
    <Compile Include="Parser\LanguageParser_InterpolatedString.cs" />
P
Pilchie 已提交
484 485
    <Compile Include="Parser\Lexer.cs" />
    <Compile Include="Parser\LexerCache.cs" />
486
    <Compile Include="Parser\Lexer_StringLiteral.cs" />
P
Pilchie 已提交
487 488 489 490 491 492 493 494 495 496 497 498 499 500 501
    <Compile Include="Parser\QuickScanner.cs" />
    <Compile Include="Parser\SlidingTextWindow.cs" />
    <Compile Include="Parser\SyntaxFactoryContext.cs" />
    <Compile Include="Parser\SyntaxListPool.cs" />
    <Compile Include="Parser\SyntaxParser.cs" />
    <Compile Include="Parser\SyntaxParser.ResetPoint.cs" />
    <Compile Include="SymbolDisplay\ObjectDisplay.cs" />
    <Compile Include="SymbolDisplay\SymbolDisplay.cs" />
    <Compile Include="SymbolDisplay\SymbolDisplayVisitor.cs" />
    <Compile Include="SymbolDisplay\SymbolDisplayVisitor.Members.cs" />
    <Compile Include="SymbolDisplay\SymbolDisplayVisitor.Types.cs" />
    <Compile Include="SymbolDisplay\SymbolDisplayVisitor_Constants.cs" />
    <Compile Include="SymbolDisplay\SymbolDisplayVisitor_Minimal.cs" />
    <Compile Include="Symbols\AbstractTypeMap.cs" />
    <Compile Include="Symbols\AbstractTypeParameterMap.cs" />
502
    <Compile Include="Symbols\AccessibilityExtensions.cs" />
P
Pilchie 已提交
503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519
    <Compile Include="Symbols\AliasSymbol.cs" />
    <Compile Include="Symbols\AnonymousTypes\AnonymousTypeDescriptor.cs" />
    <Compile Include="Symbols\AnonymousTypes\AnonymousTypeField.cs" />
    <Compile Include="Symbols\AnonymousTypes\AnonymousTypeManager.cs" />
    <Compile Include="Symbols\AnonymousTypes\AnonymousTypeManager.SymbolCollection.cs" />
    <Compile Include="Symbols\AnonymousTypes\AnonymousTypeManager.Templates.cs" />
    <Compile Include="Symbols\AnonymousTypes\PublicSymbols\AnonymousType.TypePublicSymbol.cs" />
    <Compile Include="Symbols\AnonymousTypes\SynthesizedSymbols\AnonymousType.ConstructorSymbol.cs" />
    <Compile Include="Symbols\AnonymousTypes\SynthesizedSymbols\AnonymousType.EqualsMethodSymbol.cs" />
    <Compile Include="Symbols\AnonymousTypes\SynthesizedSymbols\AnonymousType.FieldSymbol.cs" />
    <Compile Include="Symbols\AnonymousTypes\SynthesizedSymbols\AnonymousType.GetHashCodeMethodSymbol.cs" />
    <Compile Include="Symbols\AnonymousTypes\SynthesizedSymbols\AnonymousType.PropertyAccessorSymbol.cs" />
    <Compile Include="Symbols\AnonymousTypes\SynthesizedSymbols\AnonymousType.PropertySymbol.cs" />
    <Compile Include="Symbols\AnonymousTypes\SynthesizedSymbols\AnonymousType.SynthesizedMethodBase.cs" />
    <Compile Include="Symbols\AnonymousTypes\SynthesizedSymbols\AnonymousType.TemplateSymbol.cs" />
    <Compile Include="Symbols\AnonymousTypes\SynthesizedSymbols\AnonymousType.ToStringMethodSymbol.cs" />
    <Compile Include="Symbols\AnonymousTypes\SynthesizedSymbols\AnonymousType.TypeParameterSymbol.cs" />
520
    <Compile Include="Symbols\Tuples\TupleEventSymbol.cs" />
521
    <Compile Include="Symbols\Tuples\TupleFieldSymbol.cs" />
522 523 524
    <Compile Include="Symbols\Tuples\TupleMethodSymbol.cs" />
    <Compile Include="Symbols\Tuples\TupleParameterSymbol.cs" />
    <Compile Include="Symbols\Tuples\TupleErrorFieldSymbol.cs" />
525
    <Compile Include="Symbols\Tuples\TuplePropertySymbol.cs" />
526
    <Compile Include="Symbols\Tuples\TupleTypeSymbol.cs" />
P
Pilchie 已提交
527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555
    <Compile Include="Symbols\ArrayTypeSymbol.cs" />
    <Compile Include="Symbols\AssemblySymbol.cs" />
    <Compile Include="Symbols\Attributes\AttributeData.cs" />
    <Compile Include="Symbols\Attributes\PEAttributeData.cs" />
    <Compile Include="Symbols\Attributes\RetargetingAttributeData.cs" />
    <Compile Include="Symbols\Attributes\SourceAttributeData.cs" />
    <Compile Include="Symbols\Attributes\WellKnownAttributeData\ParameterEarlyWellKnownAttributeData.cs" />
    <Compile Include="Symbols\Attributes\WellKnownAttributeData\PropertyEarlyWellKnownAttributeData.cs" />
    <Compile Include="Symbols\Attributes\WellKnownAttributeData\TypeWellKnownAttributeData.cs" />
    <Compile Include="Symbols\BaseTypeAnalysis.cs" />
    <Compile Include="Symbols\ByRefReturnErrorTypeSymbol.cs" />
    <Compile Include="Symbols\Compilation_WellKnownMembers.cs" />
    <Compile Include="Symbols\CompletionPart.cs" />
    <Compile Include="Symbols\ConstantValueUtils.cs" />
    <Compile Include="Symbols\ConstraintsHelper.cs" />
    <Compile Include="Symbols\ConstructedMethodSymbol.cs" />
    <Compile Include="Symbols\ConstructedNamedTypeSymbol.cs" />
    <Compile Include="Symbols\ConversionSignatureComparer.cs" />
    <Compile Include="Symbols\CustomModifier.cs" />
    <Compile Include="Symbols\DynamicTypeEraser.cs" />
    <Compile Include="Symbols\DynamicTypeSymbol.cs" />
    <Compile Include="Symbols\EnumConversions.cs" />
    <Compile Include="Symbols\ErrorMethodSymbol.cs" />
    <Compile Include="Symbols\ErrorPropertySymbol.cs" />
    <Compile Include="Symbols\ErrorTypeSymbol.cs" />
    <Compile Include="Symbols\ErrorTypeSymbol.ErrorTypeParameterSymbol.cs" />
    <Compile Include="Symbols\EventSymbol.cs" />
    <Compile Include="Symbols\EventSymbolExtensions.cs" />
    <Compile Include="Symbols\ExtendedErrorTypeSymbol.cs" />
556
    <Compile Include="Symbols\FieldOrPropertyInitializer.cs" />
P
Pilchie 已提交
557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580
    <Compile Include="Symbols\FieldSymbol.cs" />
    <Compile Include="Symbols\LabelSymbol.cs" />
    <Compile Include="Symbols\LexicalSortKey.cs" />
    <Compile Include="Symbols\LocalDeclarationKind.cs" />
    <Compile Include="Symbols\LocalSymbol.cs" />
    <Compile Include="Symbols\MemberSignatureComparer.cs" />
    <Compile Include="Symbols\MemberSymbolExtensions.cs" />
    <Compile Include="Symbols\MergedNamespaceSymbol.cs" />
    <Compile Include="Symbols\Metadata\PE\DynamicTypeDecoder.cs" />
    <Compile Include="Symbols\Metadata\PE\MemberRefMetadataDecoder.cs" />
    <Compile Include="Symbols\Metadata\PE\MetadataDecoder.cs" />
    <Compile Include="Symbols\Metadata\PE\PEAssemblySymbol.cs" />
    <Compile Include="Symbols\Metadata\PE\PEEventSymbol.cs" />
    <Compile Include="Symbols\Metadata\PE\PEFieldSymbol.cs" />
    <Compile Include="Symbols\Metadata\PE\PEGlobalNamespaceSymbol.cs" />
    <Compile Include="Symbols\Metadata\PE\PEMethodSymbol.cs" />
    <Compile Include="Symbols\Metadata\PE\PEModuleSymbol.cs" />
    <Compile Include="Symbols\Metadata\PE\PENamedTypeSymbol.cs" />
    <Compile Include="Symbols\Metadata\PE\PENamespaceSymbol.cs" />
    <Compile Include="Symbols\Metadata\PE\PENestedNamespaceSymbol.cs" />
    <Compile Include="Symbols\Metadata\PE\PEParameterSymbol.cs" />
    <Compile Include="Symbols\Metadata\PE\PEPropertySymbol.cs" />
    <Compile Include="Symbols\Metadata\PE\PETypeParameterSymbol.cs" />
    <Compile Include="Symbols\MetadataOrSourceAssemblySymbol.cs" />
581
    <Compile Include="Symbols\Metadata\PE\SymbolFactory.cs" />
P
Pilchie 已提交
582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636
    <Compile Include="Symbols\MethodSymbol.cs" />
    <Compile Include="Symbols\MethodSymbolExtensions.cs" />
    <Compile Include="Symbols\MissingAssemblySymbol.cs" />
    <Compile Include="Symbols\MissingCorLibrarySymbol.cs" />
    <Compile Include="Symbols\MissingMetadataTypeSymbol.cs" />
    <Compile Include="Symbols\MissingModuleSymbol.cs" />
    <Compile Include="Symbols\MissingNamespaceSymbol.cs" />
    <Compile Include="Symbols\ModuleSymbol.cs" />
    <Compile Include="Symbols\MutableTypeMap.cs" />
    <Compile Include="Symbols\NamedTypeSymbol.cs" />
    <Compile Include="Symbols\NamespaceExtent.cs" />
    <Compile Include="Symbols\NamespaceOrTypeSymbol.cs" />
    <Compile Include="Symbols\NamespaceSymbol.cs" />
    <Compile Include="Symbols\NonMissingAssemblySymbol.cs" />
    <Compile Include="Symbols\NonMissingModuleSymbol.cs" />
    <Compile Include="Symbols\NoPiaAmbiguousCanonicalTypeSymbol.cs" />
    <Compile Include="Symbols\NoPiaIllegalGenericInstantiationSymbol.cs" />
    <Compile Include="Symbols\NoPiaMissingCanonicalTypeSymbol.cs" />
    <Compile Include="Symbols\ObsoleteAttributeHelpers.cs" />
    <Compile Include="Symbols\OverriddenOrHiddenMembersHelpers.cs" />
    <Compile Include="Symbols\OverriddenOrHiddenMembersResult.cs" />
    <Compile Include="Symbols\ParameterSignature.cs" />
    <Compile Include="Symbols\ParameterSymbol.cs" />
    <Compile Include="Symbols\PointerTypeSymbol.cs" />
    <Compile Include="Symbols\PreprocessingSymbol.cs" />
    <Compile Include="Symbols\PropertyOrEventSymbolExtensions.cs" />
    <Compile Include="Symbols\PropertySymbol.cs" />
    <Compile Include="Symbols\PropertySymbolExtensions.cs" />
    <Compile Include="Symbols\RangeVariableSymbol.cs" />
    <Compile Include="Symbols\ReducedExtensionMethodSymbol.cs" />
    <Compile Include="Symbols\ReferenceManager.cs" />
    <Compile Include="Symbols\RefKindExtensions.cs" />
    <Compile Include="Symbols\Retargeting\RetargetingAssemblySymbol.cs" />
    <Compile Include="Symbols\Retargeting\RetargetingEventSymbol.cs" />
    <Compile Include="Symbols\Retargeting\RetargetingFieldSymbol.cs" />
    <Compile Include="Symbols\Retargeting\RetargetingMethodSymbol.cs" />
    <Compile Include="Symbols\Retargeting\RetargetingModuleSymbol.cs" />
    <Compile Include="Symbols\Retargeting\RetargetingNamedTypeSymbol.cs" />
    <Compile Include="Symbols\Retargeting\RetargetingNamespaceSymbol.cs" />
    <Compile Include="Symbols\Retargeting\RetargetingParameterSymbol.cs" />
    <Compile Include="Symbols\Retargeting\RetargetingPropertySymbol.cs" />
    <Compile Include="Symbols\Retargeting\RetargetingSymbolTranslator.cs" />
    <Compile Include="Symbols\Retargeting\RetargetingTypeParameterSymbol.cs" />
    <Compile Include="Symbols\SignatureOnlyMethodSymbol.cs" />
    <Compile Include="Symbols\SignatureOnlyParameterSymbol.cs" />
    <Compile Include="Symbols\SignatureOnlyPropertySymbol.cs" />
    <Compile Include="Symbols\Source\AttributeLocation.cs" />
    <Compile Include="Symbols\Source\ConstantEvaluationHelpers.cs" />
    <Compile Include="Symbols\Source\CrefTypeParameterSymbol.cs" />
    <Compile Include="Symbols\Source\CustomModifierUtils.cs" />
    <Compile Include="Symbols\Source\ExplicitInterfaceHelpers.cs" />
    <Compile Include="Symbols\Source\IAttributeTargetSymbol.cs" />
    <Compile Include="Symbols\Source\ImplicitNamedTypeSymbol.cs" />
    <Compile Include="Symbols\Source\IndexedTypeParameterSymbol.cs" />
    <Compile Include="Symbols\Source\LambdaSymbol.cs" />
E
Evan Hauck 已提交
637
    <Compile Include="Symbols\Source\LocalFunctionSymbol.cs" />
P
Pilchie 已提交
638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672
    <Compile Include="Symbols\Source\ModifierUtils.cs" />
    <Compile Include="Symbols\Source\ParameterHelpers.cs" />
    <Compile Include="Symbols\Source\SourceAssemblySymbol.cs" />
    <Compile Include="Symbols\Source\SourceClonedParameterSymbol.cs" />
    <Compile Include="Symbols\Source\SourceComplexParameterSymbol.cs" />
    <Compile Include="Symbols\Source\SourceConstructorSymbol.cs" />
    <Compile Include="Symbols\Source\SourceCustomEventAccessorSymbol.cs" />
    <Compile Include="Symbols\Source\SourceCustomEventSymbol.cs" />
    <Compile Include="Symbols\Source\SourceDelegateMethodSymbol.cs" />
    <Compile Include="Symbols\Source\SourceDestructorSymbol.cs" />
    <Compile Include="Symbols\Source\SourceEnumConstantSymbol.cs" />
    <Compile Include="Symbols\Source\SourceEventAccessorSymbol.cs" />
    <Compile Include="Symbols\Source\SourceEventFieldSymbol.cs" />
    <Compile Include="Symbols\Source\SourceEventSymbol.cs" />
    <Compile Include="Symbols\Source\SourceFieldLikeEventSymbol.cs" />
    <Compile Include="Symbols\Source\SourceFieldSymbol.cs" />
    <Compile Include="Symbols\Source\SourceFixedFieldSymbol.cs" />
    <Compile Include="Symbols\Source\SourceLabelSymbol.cs" />
    <Compile Include="Symbols\Source\SourceLocalSymbol.cs" />
    <Compile Include="Symbols\Source\SourceMemberContainerSymbol.cs" />
    <Compile Include="Symbols\Source\SourceMemberContainerSymbol_ImplementationChecks.cs" />
    <Compile Include="Symbols\Source\SourceMemberFieldSymbol.cs" />
    <Compile Include="Symbols\Source\SourceMemberMethodSymbol.cs" />
    <Compile Include="Symbols\Source\SourceMethodSymbol.cs" />
    <Compile Include="Symbols\Source\SourceModuleSymbol.cs" />
    <Compile Include="Symbols\Source\SourceNamedTypeSymbol.cs" />
    <Compile Include="Symbols\Source\SourceNamedTypeSymbol_Bases.cs" />
    <Compile Include="Symbols\Source\SourceNamedTypeSymbol_Enum.cs" />
    <Compile Include="Symbols\Source\SourceNamespaceSymbol.cs" />
    <Compile Include="Symbols\Source\SourceNamespaceSymbol_Completion.cs" />
    <Compile Include="Symbols\Source\SourceParameterSymbol.cs" />
    <Compile Include="Symbols\Source\SourceParameterSymbolBase.cs" />
    <Compile Include="Symbols\Source\SourcePropertyAccessorSymbol.cs" />
    <Compile Include="Symbols\Source\SourcePropertySymbol.cs" />
    <Compile Include="Symbols\Source\SourceSimpleParameterSymbol.cs" />
E
Evan Hauck 已提交
673
    <Compile Include="Symbols\Source\SourceStrictComplexParameterSymbol.cs" />
P
Pilchie 已提交
674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702
    <Compile Include="Symbols\Source\SourceTypeParameterSymbol.cs" />
    <Compile Include="Symbols\Source\SourceUserDefinedConversionSymbol.cs" />
    <Compile Include="Symbols\Source\SourceUserDefinedOperatorSymbol.cs" />
    <Compile Include="Symbols\Source\SourceUserDefinedOperatorSymbolBase.cs" />
    <Compile Include="Symbols\Source\SynthesizedAttributeData.cs" />
    <Compile Include="Symbols\Source\ThisParameterSymbol.cs" />
    <Compile Include="Symbols\Source\TypeParameterBuilder.cs" />
    <Compile Include="Symbols\Source\TypeParameterConstraintClause.cs" />
    <Compile Include="Symbols\SpecialTypeExtensions.cs" />
    <Compile Include="Symbols\SubstitutedEventSymbol.cs" />
    <Compile Include="Symbols\SubstitutedFieldSymbol.cs" />
    <Compile Include="Symbols\SubstitutedMethodSymbol.cs" />
    <Compile Include="Symbols\SubstitutedNamedTypeSymbol.cs" />
    <Compile Include="Symbols\SubstitutedParameterSymbol.cs" />
    <Compile Include="Symbols\SubstitutedPropertySymbol.cs" />
    <Compile Include="Symbols\SubstitutedTypeParameterSymbol.cs" />
    <Compile Include="Symbols\Symbol.cs" />
    <Compile Include="Symbols\Symbol_Attributes.cs" />
    <Compile Include="Symbols\SymbolCompletionState.cs" />
    <Compile Include="Symbols\SymbolDistinguisher.cs" />
    <Compile Include="Symbols\SymbolExtensions.cs" />
    <Compile Include="Symbols\SymbolKindExtensions.cs" />
    <Compile Include="Symbols\SymbolVisitor.cs" />
    <Compile Include="Symbols\SymbolVisitor`1.cs" />
    <Compile Include="Symbols\SymbolVisitor`2.cs" />
    <Compile Include="Symbols\Synthesized\GeneratedLabelSymbol.cs" />
    <Compile Include="Symbols\Synthesized\GeneratedNameKind.cs" />
    <Compile Include="Symbols\Synthesized\GeneratedNames.cs" />
    <Compile Include="Symbols\Synthesized\SynthesizedAccessorValueParameterSymbol.cs" />
703
    <Compile Include="Symbols\Synthesized\SynthesizedBackingFieldSymbol.cs" />
P
Pilchie 已提交
704 705 706 707
    <Compile Include="Symbols\Synthesized\SynthesizedContainer.cs" />
    <Compile Include="Symbols\Synthesized\SynthesizedDelegateSymbol.cs" />
    <Compile Include="Symbols\Synthesized\SynthesizedEntryPointSymbol.cs" />
    <Compile Include="Symbols\Synthesized\SynthesizedEnumValueFieldSymbol.cs" />
708
    <Compile Include="Symbols\Synthesized\SynthesizedExplicitImplementationForwardingMethod.cs" />
P
Pilchie 已提交
709 710 711 712 713
    <Compile Include="Symbols\Synthesized\SynthesizedFieldLikeEventAccessorSymbol.cs" />
    <Compile Include="Symbols\Synthesized\SynthesizedFieldSymbol.cs" />
    <Compile Include="Symbols\Synthesized\SynthesizedFieldSymbolBase.cs" />
    <Compile Include="Symbols\Synthesized\SynthesizedGlobalMethodSymbol.cs" />
    <Compile Include="Symbols\Synthesized\SynthesizedInstanceConstructor.cs" />
714
    <Compile Include="Symbols\Synthesized\SynthesizedInstanceMethodSymbol.cs" />
P
Pilchie 已提交
715
    <Compile Include="Symbols\Synthesized\SynthesizedIntrinsicOperatorSymbol.cs" />
716
    <Compile Include="Symbols\Synthesized\SynthesizedLambdaCacheFieldSymbol.cs" />
P
Pilchie 已提交
717
    <Compile Include="Symbols\Synthesized\SynthesizedLocal.cs" />
718
    <Compile Include="Symbols\Synthesized\SynthesizedImplementationMethod.cs" />
P
Pilchie 已提交
719 720 721 722 723
    <Compile Include="Symbols\Synthesized\SynthesizedParameterSymbol.cs" />
    <Compile Include="Symbols\Synthesized\SynthesizedSealedPropertyAccessor.cs" />
    <Compile Include="Symbols\Synthesized\SynthesizedStaticConstructor.cs" />
    <Compile Include="Symbols\Synthesized\SynthesizedStringHashFunctionSymbol.cs" />
    <Compile Include="Symbols\Synthesized\SynthesizedSubmissionConstructor.cs" />
724
    <Compile Include="Symbols\Synthesized\SynthesizedInteractiveInitializerMethod.cs" />
725
    <Compile Include="Symbols\Synthesized\SynthesizedSubstitutedTypeParameterSymbol.cs" />
726
    <Compile Include="Symbols\Synthesized\TypeSubstitutedLocalSymbol.cs" />
P
Pilchie 已提交
727 728 729 730 731 732 733 734
    <Compile Include="Symbols\TypedConstantExtensions.cs" />
    <Compile Include="Symbols\TypeMap.cs" />
    <Compile Include="Symbols\TypeParameterBounds.cs" />
    <Compile Include="Symbols\TypeParameterSymbol.cs" />
    <Compile Include="Symbols\TypeParameterSymbolExtensions.cs" />
    <Compile Include="Symbols\TypeSymbol.cs" />
    <Compile Include="Symbols\TypeSymbol.SymbolAndDiagnostics.cs" />
    <Compile Include="Symbols\TypeSymbolExtensions.cs" />
735
    <Compile Include="Symbols\TypeUnification.cs" />
736
    <Compile Include="Symbols\TypeWithModifiers.cs" />
P
Pilchie 已提交
737 738 739
    <Compile Include="Symbols\UnboundGenericType.cs" />
    <Compile Include="Symbols\UnsupportedMetadataTypeSymbol.cs" />
    <Compile Include="Symbols\VarianceSafety.cs" />
740 741 742 743 744 745 746
    <Compile Include="Symbols\Wrapped\WrappedParameterSymbol.cs" />
    <Compile Include="Symbols\Wrapped\WrappedNamedTypeSymbol.cs" />
    <Compile Include="Symbols\Wrapped\WrappedEventSymbol.cs" />
    <Compile Include="Symbols\Wrapped\WrappedFieldSymbol.cs" />
    <Compile Include="Symbols\Wrapped\WrappedMethodSymbol.cs" />
    <Compile Include="Symbols\Wrapped\WrappedPropertySymbol.cs" />
    <Compile Include="Symbols\Wrapped\WrappedTypeParameterSymbol.cs" />
P
Pilchie 已提交
747
    <Compile Include="Syntax\AliasedQualifiedNameSyntax.cs" />
A
AlekseyTs 已提交
748
    <Compile Include="Syntax\ArgumentSyntax.cs" />
P
Pilchie 已提交
749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764
    <Compile Include="Syntax\ArrayRankSpecifierSyntax.cs" />
    <Compile Include="Syntax\AttributeSyntax.cs" />
    <Compile Include="Syntax\AttributeTargetSpecifierSyntax.cs" />
    <Compile Include="Syntax\BaseSyntaxNodeExtensions.cs" />
    <Compile Include="Syntax\CompilationUnitSyntax.cs" />
    <Compile Include="Syntax\CSharpLineDirectiveMap.cs" />
    <Compile Include="Syntax\CSharpPragmaWarningStateMap.cs" />
    <Compile Include="Syntax\CSharpSyntaxNode.cs" />
    <Compile Include="Syntax\CSharpSyntaxRewriter.cs" />
    <Compile Include="Syntax\CSharpSyntaxTree.cs" />
    <Compile Include="Syntax\CSharpSyntaxTree.ParsedSyntaxTree.cs" />
    <Compile Include="Syntax\CSharpSyntaxVisitor.cs" />
    <Compile Include="Syntax\CSharpSyntaxWalker.cs" />
    <Compile Include="Syntax\DeclarationStatementSyntax.cs" />
    <Compile Include="Syntax\DelegateDeclarationSyntax.cs" />
    <Compile Include="Syntax\DirectiveTriviaSyntax.cs" />
765
    <Compile Include="Syntax\EventFieldDeclarationSyntax.cs" />
P
Pilchie 已提交
766
    <Compile Include="Syntax\ExpressionStatementSyntax.cs" />
767 768
    <Compile Include="Syntax\FieldDeclarationSyntax.cs" />
    <Compile Include="Syntax\FixedStatementSyntax.cs" />
769
    <Compile Include="Syntax\ForEachStatementSyntax.cs" />
P
Pilchie 已提交
770
    <Compile Include="Syntax\GenericNameSyntax.cs" />
A
AlekseyTs 已提交
771
    <Compile Include="Syntax\InternalSyntax\BinaryExpressionSyntax.cs" />
772
    <Compile Include="Syntax\CSharpSyntaxTree.DebuggerSyntaxTree.cs" />
773 774 775 776 777
    <Compile Include="Syntax\ForStatementSyntax.cs" />
    <Compile Include="Syntax\LocalDeclarationStatementSyntax.cs" />
    <Compile Include="Syntax\ParenthesizedLambdaExpressionSyntax.cs" />
    <Compile Include="Syntax\ReturnStatementSyntax.cs" />
    <Compile Include="Syntax\SimpleLambdaExpressionSyntax.cs" />
778
    <Compile Include="Syntax\IdentifierNameSyntax.cs" />
779
    <Compile Include="Syntax\PropertyDeclarationSyntax.cs" />
P
Pilchie 已提交
780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813
    <Compile Include="Syntax\InternalSyntax\ChildSyntaxList.cs" />
    <Compile Include="Syntax\InternalSyntax\ChildSyntaxList.Enumerator.cs" />
    <Compile Include="Syntax\InternalSyntax\ChildSyntaxList.Reversed.cs" />
    <Compile Include="Syntax\InternalSyntax\ChildSyntaxList.Reversed.Enumerator.cs" />
    <Compile Include="Syntax\InternalSyntax\DirectiveTriviaSyntax.cs" />
    <Compile Include="Syntax\InternalSyntax\IdentifierNameSyntax.cs" />
    <Compile Include="Syntax\InternalSyntax\SeparatedSyntaxList.cs" />
    <Compile Include="Syntax\InternalSyntax\SeparatedSyntaxListBuilder.cs" />
    <Compile Include="Syntax\InternalSyntax\StructuredTriviaSyntax.cs" />
    <Compile Include="Syntax\InternalSyntax\Syntax.cs" />
    <Compile Include="Syntax\InternalSyntax\SyntaxDiagnosticInfoList.cs" />
    <Compile Include="Syntax\InternalSyntax\SyntaxLastTokenReplacer.cs" />
    <Compile Include="Syntax\InternalSyntax\SyntaxList.cs" />
    <Compile Include="Syntax\InternalSyntax\SyntaxList.WithLotsOfChildren.cs" />
    <Compile Include="Syntax\InternalSyntax\SyntaxList.WithManyChildren.cs" />
    <Compile Include="Syntax\InternalSyntax\SyntaxList.WithThreeChildren.cs" />
    <Compile Include="Syntax\InternalSyntax\SyntaxList.WithTwoChildren.cs" />
    <Compile Include="Syntax\InternalSyntax\SyntaxList`.Enumerator.cs" />
    <Compile Include="Syntax\InternalSyntax\SyntaxList`1.cs" />
    <Compile Include="Syntax\InternalSyntax\SyntaxListBuilder.cs" />
    <Compile Include="Syntax\InternalSyntax\SyntaxListBuilder`1.cs" />
    <Compile Include="Syntax\InternalSyntax\SyntaxListBuilderExtensions.cs" />
    <Compile Include="Syntax\InternalSyntax\SyntaxNode.cs" />
    <Compile Include="Syntax\InternalSyntax\SyntaxNodeCache.cs" />
    <Compile Include="Syntax\InternalSyntax\SyntaxRewriter.cs" />
    <Compile Include="Syntax\InternalSyntax\SyntaxToken.cs" />
    <Compile Include="Syntax\InternalSyntax\SyntaxToken.MissingTokenWithTrivia.cs" />
    <Compile Include="Syntax\InternalSyntax\SyntaxToken.SyntaxIdentifier.cs" />
    <Compile Include="Syntax\InternalSyntax\SyntaxToken.SyntaxIdentifierExtended.cs" />
    <Compile Include="Syntax\InternalSyntax\SyntaxToken.SyntaxIdentifierWithTrailingTrivia.cs" />
    <Compile Include="Syntax\InternalSyntax\SyntaxToken.SyntaxIdentifierWithTrivia.cs" />
    <Compile Include="Syntax\InternalSyntax\SyntaxToken.SyntaxLiteral.cs" />
    <Compile Include="Syntax\InternalSyntax\SyntaxToken.SyntaxLiteralWithTrivia.cs" />
    <Compile Include="Syntax\InternalSyntax\SyntaxToken.SyntaxTokenWithTrivia.cs" />
814
    <Compile Include="Syntax\InternalSyntax\SyntaxFirstTokenReplacer.cs" />
P
Pilchie 已提交
815 816
    <Compile Include="Syntax\InternalSyntax\SyntaxTrivia.cs" />
    <Compile Include="Syntax\InternalSyntax\SyntaxVisitor.cs" />
817
    <Compile Include="Syntax\AnonymousMethodExpressionSyntax.cs" />
818
    <Compile Include="Syntax\LookupPosition.cs" />
819
    <Compile Include="Syntax\IndexerDeclarationSyntax.cs" />
P
Pilchie 已提交
820 821
    <Compile Include="Syntax\MethodDeclarationSyntax.cs" />
    <Compile Include="Syntax\NamespaceDeclarationSyntax.cs" />
822
    <Compile Include="Syntax\NamespaceDeclarationSyntaxReference.cs" />
P
Pilchie 已提交
823
    <Compile Include="Syntax\NameSyntax.cs" />
824
    <Compile Include="Syntax\ParameterListSyntax.cs" />
P
Pilchie 已提交
825 826
    <Compile Include="Syntax\ParameterSyntax.cs" />
    <Compile Include="Syntax\QualifiedNameSyntax.cs" />
827 828 829
    <Compile Include="Syntax\ArrowExpressionClauseSyntax.cs" />
    <Compile Include="Syntax\EqualsValueClauseSyntax.cs" />
    <Compile Include="Syntax\IncompleteMemberSyntax.cs" />
P
Pilchie 已提交
830 831 832
    <Compile Include="Syntax\SeparatedSyntaxListBuilder.cs" />
    <Compile Include="Syntax\SimpleNameSyntax.cs" />
    <Compile Include="Syntax\SimpleSyntaxReference.cs" />
833
    <Compile Include="Syntax\SkippedTokensTriviaSyntax.cs" />
P
Pilchie 已提交
834 835 836 837
    <Compile Include="Syntax\StructuredTriviaSyntax.cs" />
    <Compile Include="Syntax\SyntaxEquivalence.cs" />
    <Compile Include="Syntax\SyntaxExtensions.cs" />
    <Compile Include="Syntax\SyntaxFactory.cs" />
838
    <Compile Include="Syntax\LambdaUtilities.cs" />
839
    <Compile Include="Syntax\SyntaxNormalizer.cs" />
P
Pilchie 已提交
840
    <Compile Include="Syntax\SyntaxKind.cs" />
P
Pharring 已提交
841
    <Compile Include="Syntax\SyntaxKindEqualityComparer.cs" />
842
    <Compile Include="Syntax\SyntaxKindFacts.cs" />
P
Pilchie 已提交
843 844 845 846 847 848 849 850 851 852 853
    <Compile Include="Syntax\SyntaxList.cs" />
    <Compile Include="Syntax\SyntaxList.SeparatedWithManyChildren.cs" />
    <Compile Include="Syntax\SyntaxList.WithManyChildren.cs" />
    <Compile Include="Syntax\SyntaxList.WithManyWeakChildren.cs" />
    <Compile Include="Syntax\SyntaxList.WithThreeChildren.cs" />
    <Compile Include="Syntax\SyntaxList.WithTwoChildren.cs" />
    <Compile Include="Syntax\SyntaxListBuilder.cs" />
    <Compile Include="Syntax\SyntaxListBuilder`1.cs" />
    <Compile Include="Syntax\SyntaxListBuilderExtensions.cs" />
    <Compile Include="Syntax\SyntaxNavigator.cs" />
    <Compile Include="Syntax\SyntaxNodeExtensions.cs" />
854
    <Compile Include="Syntax\SyntaxFacts.cs" />
P
Pilchie 已提交
855 856 857 858 859 860 861 862 863
    <Compile Include="Syntax\SyntaxNodeOrTokenListBuilder.cs" />
    <Compile Include="Syntax\SyntaxNodeRemover.cs" />
    <Compile Include="Syntax\SyntaxReplacer.cs" />
    <Compile Include="Syntax\SyntaxTokenListBuilder.cs" />
    <Compile Include="Syntax\SyntaxTreeDiagnosticEnumerator.cs" />
    <Compile Include="Syntax\SyntaxTriviaFunctions.cs" />
    <Compile Include="Syntax\SyntaxTriviaListBuilder.cs" />
    <Compile Include="Syntax\TypeDeclarationSyntax.cs" />
    <Compile Include="Syntax\TypeSyntax.cs" />
864
    <Compile Include="Syntax\VariableDeclarationSyntax.cs" />
P
Pilchie 已提交
865 866 867 868 869 870 871 872
    <Compile Include="Syntax\XmlNameAttributeElementKind.cs" />
    <Compile Include="Utilities\EnumExtensions.cs" />
    <Compile Include="Utilities\FirstAmongEqualsSet.cs" />
    <Compile Include="Utilities\FunctionExtensions.cs" />
    <Compile Include="Utilities\TypeSymbolExtensions.cs" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="Syntax\CSharpSyntaxTree.Dummy.cs" />
873
    <Content Include="UseSiteDiagnosticsCheckEnforcer\BaseLine.txt" />
P
Pilchie 已提交
874 875
    <Content Include="UseSiteDiagnosticsCheckEnforcer\Run.bat" />
    <None Include="FlowAnalysis\Flow Analysis Design.docx" />
876
    <None Include="project.json" />
P
Pilchie 已提交
877
    <None Include="Symbols\PublicSymbolTable.cd" />
878 879 880
    <None Include="..\CSharpCodeAnalysisRules.ruleset">
      <SubType>Designer</SubType>
    </None>
J
Jared Parsons 已提交
881 882
    <PublicAPI Include="PublicAPI.Shipped.txt" />
    <PublicAPI Include="PublicAPI.Unshipped.txt" />
P
Pilchie 已提交
883 884
  </ItemGroup>
  <ItemGroup>
885 886 887
    <BoundTreeDefinition Include="BoundTree\BoundNodes.xml">
      <SubType>Designer</SubType>
    </BoundTreeDefinition>
P
Pilchie 已提交
888 889 890
    <Compile Include="$(IntermediateOutputPath)BoundNodes.xml.Generated.cs" />
    <Compile Include="$(IntermediateOutputPath)ErrorFacts.Generated.cs" />
    <Compile Include="$(IntermediateOutputPath)Syntax.xml.Generated.cs" />
891
    <Compile Include="Errors\ErrorCode.cs" />
P
Pilchie 已提交
892 893 894 895 896 897
    <EmbeddedResource Include="CSharpResources.resx">
      <SubType>Designer</SubType>
      <Generator>ResXFileCodeGenerator</Generator>
      <LastGenOutput>CSharpResources.Designer.cs</LastGenOutput>
    </EmbeddedResource>
    <ErrorCode Include="Errors\ErrorCode.cs" />
898 899 900
    <SyntaxDefinition Include="Syntax\Syntax.xml">
      <SubType>Designer</SubType>
    </SyntaxDefinition>
P
Pilchie 已提交
901 902
  </ItemGroup>
  <ItemGroup>
A
acasey 已提交
903
    <InternalsVisibleTo Include="Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ExpressionCompiler" />
T
Renames  
TomasMatousek 已提交
904 905
    <InternalsVisibleTo Include="csc" />
    <InternalsVisibleTo Include="csi" />
906
    <InternalsVisibleTo Include="Microsoft.CodeAnalysis.CSharp.Scripting" />
T
Tomas Matousek 已提交
907
    <InternalsVisibleTo Include="Microsoft.CodeAnalysis.CSharp.InteractiveEditorFeatures" />
J
Jared Parsons 已提交
908
    <InternalsVisibleTo Include="Microsoft.CodeAnalysis.CompilerServer" />
P
Pilchie 已提交
909
    <InternalsVisibleTo Include="VBCSCompiler" />
J
Jared Parsons 已提交
910
    <InternalsVisibleTo Include="VBCSCompilerPortable" />
911
    <InternalsVisibleToTest Include="Roslyn.Compilers.UnitTests" />
P
Pilchie 已提交
912 913
    <InternalsVisibleToTest Include="Roslyn.Compilers.CSharp.CommandLine.UnitTests" />
    <InternalsVisibleToTest Include="Roslyn.Compilers.CSharp.Emit.UnitTests" />
A
Andy Gocke 已提交
914
    <InternalsVisibleToTest Include="Roslyn.Compilers.CSharp.WinRT.UnitTests" />
P
Pilchie 已提交
915 916 917 918 919
    <InternalsVisibleToTest Include="Roslyn.Compilers.CSharp.EnC.UnitTests" />
    <InternalsVisibleToTest Include="Roslyn.Compilers.CSharp.Semantic.UnitTests" />
    <InternalsVisibleToTest Include="Roslyn.Compilers.CSharp.Symbol.UnitTests" />
    <InternalsVisibleToTest Include="Roslyn.Compilers.CSharp.Syntax.UnitTests" />
    <InternalsVisibleToTest Include="Roslyn.Compilers.CSharp.Test.Utilities" />
920
    <InternalsVisibleToTest Include="Roslyn.Compilers.CSharp.Test.Utilities.Desktop" />
A
acasey 已提交
921
    <InternalsVisibleToTest Include="Roslyn.ExpressionEvaluator.CSharp.ExpressionCompiler.UnitTests" />
922 923
    <InternalsVisibleToTest Include="Roslyn.Test.Utilities.Desktop" />
    <InternalsVisibleToTest Include="Roslyn.Test.Utilities.FX45" />
924
    <InternalsVisibleToTest Include="Roslyn.Test.Utilities" />
925
    <InternalsVisibleToTest Include="Microsoft.CodeAnalysis.Scripting.UnitTests" />
T
Tomas Matousek 已提交
926
    <InternalsVisibleToTest Include="Microsoft.CodeAnalysis.Scripting.Destkop.UnitTests" />
927 928
    <InternalsVisibleToTest Include="Microsoft.CodeAnalysis.CSharp.Scripting.UnitTests" />
    <InternalsVisibleToTest Include="Microsoft.CodeAnalysis.CSharp.Scripting.Desktop.UnitTests" />
P
Pilchie 已提交
929
    <InternalsVisibleToTest Include="Roslyn.Services.Editor.CSharp.UnitTests" />
930
    <InternalsVisibleToTest Include="Roslyn.Services.Editor.UnitTests2" />
P
Pilchie 已提交
931
  </ItemGroup>
932
  <Import Project="..\CSharpAnalyzerDriver\CSharpAnalyzerDriver.projitems" Label="Shared" />
P
Pilchie 已提交
933
  <ImportGroup Label="Targets">
A
Andy Gocke 已提交
934
    <Import Project="..\..\..\..\build\Targets\VSL.Imports.targets" />
P
Pilchie 已提交
935
  </ImportGroup>
V
VSadov 已提交
936
</Project>