BasicExpressionCompiler.vbproj 6.4 KB
Newer Older
1 2 3
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <ImportGroup Label="Settings">
A
Andy Gocke 已提交
4
    <Import Project="..\..\..\..\..\build\Targets\VSL.Settings.targets" />
5 6 7 8 9 10
  </ImportGroup>
  <PropertyGroup>
    <Configuration Condition="'$(Configuration)' == ''">Debug</Configuration>
    <Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
    <ProjectGuid>{73242A2D-6300-499D-8C15-FADF7ECB185C}</ProjectGuid>
    <OutputType>Library</OutputType>
11
    <AuthenticodeCertificateName>WindowsPhone623</AuthenticodeCertificateName>
12 13
    <AssemblyName>Microsoft.CodeAnalysis.VisualBasic.ExpressionEvaluator.ExpressionCompiler</AssemblyName>
    <SolutionDir Condition="'$(SolutionDir)' == '' OR '$(SolutionDir)' == '*Undefined*'">..\..\..\..\..\</SolutionDir>
T
Tomas Matousek 已提交
14 15
    <TargetFrameworkVersion>v5.0</TargetFrameworkVersion>
    <TargetFrameworkProfile></TargetFrameworkProfile>
16
    <ProjectTypeGuids>{14182A97-F7F0-4C62-8B27-98AA8AE2109A};{F184B08F-C81C-45F6-A57F-5ABD9991F28F}</ProjectTypeGuids>
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
    <UseCommonOutputDirectory>True</UseCommonOutputDirectory>
    <RestorePackages>true</RestorePackages>
    <!-- Don't transitively copy output files, since everything builds to the same folder. -->
  </PropertyGroup>
  <ItemGroup Label="File References">
    <Reference Include="$(OutDir)Microsoft.VisualStudio.Debugger.Engine.dll" />
  </ItemGroup>
  <ItemGroup Label="Project References">
    <ProjectReference Include="..\..\..\Core\Source\Concord\Concord.csproj">
      <Project>{5002636a-fe8d-40bf-8818-ab513a2194fa}</Project>
      <Name>Concord</Name>
      <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
    </ProjectReference>
    <ProjectReference Include="..\..\..\..\Compilers\Core\Portable\CodeAnalysis.csproj">
      <Project>{1EE8CAD3-55F9-4D91-96B2-084641DA9A6C}</Project>
      <Name>CodeAnalysis</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\..\..\Compilers\VisualBasic\Portable\BasicCodeAnalysis.vbproj">
      <Project>{2523D0E6-DF32-4A3E-8AE0-A19BFFAE2EF6}</Project>
      <Name>BasicCodeAnalysis</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\..\Core\Source\ExpressionCompiler\ExpressionCompiler.csproj">
      <Project>{b8da3a90-a60c-42e3-9d8e-6c67b800c395}</Project>
      <Name>ExpressionCompiler</Name>
    </ProjectReference>
  </ItemGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <DebugSymbols>true</DebugSymbols>
    <DefineDebug>true</DefineDebug>
    <DefineTrace>true</DefineTrace>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <DefineTrace>true</DefineTrace>
    <Optimize>true</Optimize>
  </PropertyGroup>
  <ItemGroup>
    <VsdConfigXml Include="BasicExpressionCompiler.vsdconfigxml">
      <SubType>Designer</SubType>
    </VsdConfigXml>
  </ItemGroup>
  <ItemGroup>
    <InternalsVisibleToTest Include="Roslyn.ExpressionEvaluator.VisualBasic.ExpressionCompiler.UnitTests" />
59
    <InternalsVisibleToTypeScript Include="Microsoft.VisualStudio.ProductionBreakpoints.CodeAnalysis" />
60 61 62 63
  </ItemGroup>
  <ItemGroup>
    <Compile Include="Binders\EENamedTypeBinder.vb" />
    <Compile Include="Binders\ParametersAndLocalsBinder.vb" />
64
    <Compile Include="Binders\SuppressDiagnosticsBinder.vb" />
65 66
    <Compile Include="CompilationContext.vb" />
    <Compile Include="CompilationExtensions.vb" />
67
    <Compile Include="VisualBasicEESymbolProvider.vb" />
68
    <Compile Include="VisualBasicInScopeHoistedLocalsByName.vb" />
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
    <Compile Include="EETypeNameDecoder.vb" />
    <Compile Include="EEAssemblyBuilder.vb" />
    <Compile Include="EvaluationContext.vb" />
    <Compile Include="Resources.Designer.vb">
      <AutoGen>True</AutoGen>
      <DesignTime>True</DesignTime>
      <DependentUpon>Resources.resx</DependentUpon>
    </Compile>
    <Compile Include="Rewriters\CapturedVariableRewriter.vb" />
    <Compile Include="Rewriters\LocalDeclarationRewriter.vb" />
    <Compile Include="Rewriters\MayHaveSideEffectsVisitor.vb" />
    <Compile Include="Rewriters\PlaceholderLocalRewriter.vb" />
    <Compile Include="SymbolExtensions.vb" />
    <Compile Include="Symbols\DisplayClassInstance.vb" />
    <Compile Include="Symbols\EEDisplayClassFieldLocalSymbol.vb" />
    <Compile Include="Symbols\EELocalConstantSymbol.vb" />
    <Compile Include="Symbols\EELocalSymbol.vb" />
    <Compile Include="Symbols\DisplayClassVariable.vb" />
    <Compile Include="Symbols\EELocalSymbolBase.vb" />
    <Compile Include="Symbols\EEConstructorSymbol.vb" />
    <Compile Include="Symbols\EEMethodSymbol.vb" />
    <Compile Include="Symbols\EENamedTypeSymbol.vb" />
    <Compile Include="Symbols\EEStaticLocalSymbol.vb" />
    <Compile Include="Symbols\EETypeParameterSymbol.vb" />
    <Compile Include="Symbols\ObjectIdLocalSymbol.vb" />
    <Compile Include="Symbols\PlaceholderMethodSymbol.vb" />
    <Compile Include="Binders\PlaceholderLocalBinder.vb" />
    <Compile Include="Symbols\PlaceholderLocalSymbol.vb" />
    <Compile Include="Symbols\ExceptionLocalSymbol.vb" />
    <Compile Include="Symbols\ReturnValueLocalSymbol.vb" />
    <Compile Include="Symbols\SimpleTypeParameterSymbol.vb" />
    <Compile Include="Symbols\SynthesizedContextMethodSymbol.vb" />
    <Compile Include="Symbols\TypeSubstitutionExtensions.vb" />
    <Compile Include="SyntaxHelpers.vb" />
    <Compile Include="TypeParameterChecker.vb" />
104 105
    <Compile Include="VisualBasicCompileResult.vb" />
    <Compile Include="VisualBasicLocalAndMethod.vb" />
106 107 108 109 110 111 112 113 114 115
    <Compile Include="VisualBasicMetadataContext.vb" />
    <Compile Include="VisualBasicExpressionCompiler.vb" />
    <Compile Include="VisualBasicFrameDecoder.vb" />
    <Compile Include="VisualBasicInstructionDecoder.vb" />
    <Compile Include="VisualBasicLanguageInstructionDecoder.vb" />
  </ItemGroup>
  <ItemGroup>
    <Folder Include="My Project\" />
  </ItemGroup>
  <ItemGroup>
116
    <None Include="project.json" />
117 118 119 120 121 122 123 124 125 126 127
  </ItemGroup>
  <ItemGroup>
    <EmbeddedResource Include="Resources.resx">
      <CustomToolNamespace>Microsoft.CodeAnalysis.VisualBasic.ExpressionEvaluator</CustomToolNamespace>
      <Generator>ResXFileCodeGenerator</Generator>
      <LastGenOutput>Resources.Designer.vb</LastGenOutput>
      <SubType>Designer</SubType>
    </EmbeddedResource>
  </ItemGroup>
  <ImportGroup Label="Targets">
    <Import Project="..\..\..\..\Tools\Vsdconfig\Vsdconfig.targets" />
A
Andy Gocke 已提交
128
    <Import Project="..\..\..\..\..\build\Targets\VSL.Imports.targets" />
129
  </ImportGroup>
130
</Project>