APISampleUnitTestsVB.vbproj 3.6 KB
Newer Older
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. -->
3
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
J
Jared Parsons 已提交
4
  <Import Project="..\..\..\..\build\Targets\Settings.props" />
5
  <PropertyGroup>
6
    <TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
7
    <RuntimeIdentifiers>win7</RuntimeIdentifiers>
8
    <RoslynProjectType>UnitTest</RoslynProjectType>
9 10
  </PropertyGroup>
  <ItemGroup Label="Project References">
J
Jonathon Marolf 已提交
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
    <ProjectReference Include="..\..\..\..\src\Compilers\Core\Portable\CodeAnalysis.csproj">
      <Project>{1EE8CAD3-55F9-4D91-96B2-084641DA9A6C}</Project>
      <Name>Microsoft.CodeAnalysis</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\..\..\src\Compilers\VisualBasic\Portable\BasicCodeAnalysis.vbproj">
      <Project>{2523D0E6-DF32-4A3E-8AE0-A19BFFAE2EF6}</Project>
      <Name>Microsoft.CodeAnalysis.VisualBasic</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\..\..\src\Workspaces\Core\Portable\Workspaces.csproj">
      <Project>{5F8D2414-064A-4B3A-9B42-8E2A04246BE5}</Project>
      <Name>Microsoft.CodeAnalysis.Workspaces</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\..\..\src\Workspaces\Core\Desktop\Workspaces.Desktop.csproj">
      <Project>{2E87FA96-50BB-4607-8676-46521599F998}</Project>
      <Name>Microsoft.CodeAnalysis.Workspaces.Desktop</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\..\..\src\Workspaces\VisualBasic\Portable\BasicWorkspace.vbproj">
      <Project>{57CA988D-F010-4BF2-9A2E-07D6DCD2FF2C}</Project>
      <Name>Microsoft.CodeAnalysis.VisualBasic.Workspaces</Name>
    </ProjectReference>
31 32 33 34
  </ItemGroup>
  <PropertyGroup>
    <NonShipping>true</NonShipping>
    <ScrubbedSamplePath>VisualBasic\APISampleUnitTestsVB</ScrubbedSamplePath>
35
    <Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
36
    <PlatformTarget>AnyCPU</PlatformTarget>
37 38 39
    <ProjectGuid>{A5C3CAA6-206D-41D1-9BE9-D8B5437D0D95}</ProjectGuid>
    <OutputType>Library</OutputType>
    <RootNamespace>APISampleUnitTestsVB</RootNamespace>
J
Jared Parsons 已提交
40
    <AssemblyName>APISampleUnitTestsVB.UnitTests</AssemblyName>
41
    <VBRuntime>Default</VBRuntime>
42 43
    <ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{F184B08F-C81C-45F6-A57F-5ABD9991F28F}</ProjectTypeGuids>
  </PropertyGroup>
44 45
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'" />
46
  <ItemGroup>
47
    <Reference Include="System" />
48 49 50
    <Reference Include="System.Core" />
    <Reference Include="System.Xml" />
    <Reference Include="System.Xml.Linq" />
51 52 53 54 55 56 57 58 59
    <PackageReference Include="xunit">
      <Version>$(xunitVersion)</Version>
    </PackageReference>
    <PackageReference Include="xunit.runner.console">
      <Version>$(xunitrunnerconsoleVersion)</Version>
    </PackageReference>
    <PackageReference Include="xunit.runner.visualstudio">
      <Version>$(xunitrunnervisualstudioVersion)</Version>
    </PackageReference>
60 61 62 63 64 65 66 67 68 69 70 71 72 73
  </ItemGroup>
  <ItemGroup>
    <Import Include="System.Xml.Linq" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="Compilations.vb" />
    <Compile Include="Extensions.vb" />
    <Compile Include="FAQ.vb" />
    <Compile Include="My Project\AssemblyInfo.vb" />
    <Compile Include="Parsing.vb" />
    <Compile Include="SymbolsAndSemantics.vb" />
    <Compile Include="SyntaxTrees.vb" />
    <Compile Include="TestCodeContainer.vb" />
  </ItemGroup>
J
Jared Parsons 已提交
74
  <Import Project="..\..\..\..\build\Targets\Imports.targets" />
75
</Project>