VisualBasicSyntaxGenerator.vbproj 3.4 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
  <PropertyGroup>
    <Nonshipping>true</Nonshipping>
    <Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
8
    <PlatformTarget>AnyCPU</PlatformTarget>
P
Pilchie 已提交
9 10 11
    <ProjectGuid>{6AA96934-D6B7-4CC8-990D-DB6B9DD56E34}</ProjectGuid>
    <OutputType>Exe</OutputType>
    <StartupObject>Microsoft.CodeAnalysis.VisualBasic.Internal.VBSyntaxGenerator.Program</StartupObject>
12
    <RootNamespace>Microsoft.CodeAnalysis.VisualBasic.Internal.VBSyntaxGenerator</RootNamespace>
P
Pilchie 已提交
13 14 15
    <AssemblyName>VBSyntaxGenerator</AssemblyName>
    <OptionStrict>Off</OptionStrict>
    <OptionInfer>On</OptionInfer>
J
Jared Parsons 已提交
16
    <VBRuntime>Embed</VBRuntime>
17 18 19 20
    <AutoGenerateBindingRedirects>True</AutoGenerateBindingRedirects>
    <ProjectTypeGuids>{14182A97-F7F0-4C62-8B27-98AA8AE2109A};{F184B08F-C81C-45F6-A57F-5ABD9991F28F}</ProjectTypeGuids>
    <TargetFrameworkIdentifier>.NETPortable</TargetFrameworkIdentifier>
    <TargetFrameworkVersion>v5.0</TargetFrameworkVersion>
21 22
    <CopyNuGetImplementations>false</CopyNuGetImplementations>
    <CopyReferencesByDefault>false</CopyReferencesByDefault>
23
    <NonShipping>true</NonShipping>
24
    <UseCommonOutputDirectory>true</UseCommonOutputDirectory>
25
    <RoslynProjectType>ExeNonDeployment</RoslynProjectType>
P
Pilchie 已提交
26
  </PropertyGroup>
J
Jared Parsons 已提交
27 28
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "></PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "></PropertyGroup>
P
Pilchie 已提交
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
  <ItemGroup>
    <Import Include="Microsoft.VisualBasic" />
    <Import Include="System" />
    <Import Include="System.Collections" />
    <Import Include="System.Collections.Generic" />
    <Import Include="System.Collections.ObjectModel" />
    <Import Include="System.Diagnostics" />
    <Import Include="System.Linq" />
    <Import Include="System.Xml.Linq" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="GreenNodes\GreenNodeFactoryWriter.vb" />
    <Compile Include="GreenNodes\GreenNodeWriter.vb" />
    <Compile Include="Program.vb" />
    <Compile Include="RedNodes\RedNodeFactoryWriter.vb" />
    <Compile Include="RedNodes\RedNodeWriter.vb" />
    <Compile Include="RedNodes\SyntaxFactsWriter.vb" />
    <Compile Include="Tests\TestWriter.vb" />
    <Compile Include="Util\WriteCsvNames.vb" />
    <Compile Include="Util\WriteDumper.vb" />
    <Compile Include="Util\WriteUtils.vb" />
    <Compile Include="Util\XmlRenamer.vb" />
    <Compile Include="XML\ParseTreeDescription.vb" />
    <Compile Include="XML\ReadTree.vb" />
    <Compile Include="XML\TreeValidator.vb" />
  </ItemGroup>
  <ItemGroup>
    <Folder Include="My Project\" />
  </ItemGroup>
  <ItemGroup>
59
    <Content Include="..\..\..\..\..\Compilers\VisualBasic\Portable\Syntax\Syntax.xml">
P
Pilchie 已提交
60 61 62 63
      <Link>XML\Syntax.xml</Link>
    </Content>
  </ItemGroup>
  <ItemGroup>
64 65 66
    <EmbeddedResource Include="VBSyntaxModelSchema.xsd">
      <LogicalName>VBSyntaxModelSchema.xsd</LogicalName>
    </EmbeddedResource>
P
Pilchie 已提交
67
  </ItemGroup>
68
  <ItemGroup>
69
    <None Include="project.json" />
70
  </ItemGroup>
J
Jared Parsons 已提交
71
  <Import Project="..\..\..\..\..\..\build\Targets\Imports.targets" />
72
</Project>