ImplementNotifyPropertyChangedVB.UnitTests.vbproj 4.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 6
  <PropertyGroup>
    <Nonshipping>true</Nonshipping>
7
    <Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
8
    <PlatformTarget>AnyCPU</PlatformTarget>
9 10 11 12 13
    <ProjectGuid>{EF5ACC32-7644-4CF0-87FC-AE9AFD0DB4D8}</ProjectGuid>
    <OutputType>Library</OutputType>
    <RootNamespace>ImplementNotifyPropertyChangedVB.UnitTests</RootNamespace>
    <AssemblyName>ImplementNotifyPropertyChangedVB.UnitTests</AssemblyName>
    <VBRuntime>Default</VBRuntime>
14
    <TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
15
    <RoslynProjectType>UnitTest</RoslynProjectType>
16 17 18 19 20
  </PropertyGroup>
  <ItemGroup Label="File References">
    <Folder Include="My Project\" />
  </ItemGroup>
  <ItemGroup Label="Project References">
J
Jonathon Marolf 已提交
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
    <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>
J
Jared Parsons 已提交
37 38 39 40 41 42 43 44 45 46 47 48
    <ProjectReference Include="..\..\..\..\Compilers\CSharp\Portable\CSharpCodeAnalysis.csproj">
      <Project>{b501a547-c911-4a05-ac6e-274a50dff30e}</Project>
      <Name>CSharpCodeAnalysis</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\..\..\Compilers\Test\Resources\Core\CompilerTestResources.csproj">
      <Project>{7fe6b002-89d8-4298-9b1b-0b5c247dd1fd}</Project>
      <Name>CompilerTestResources</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\..\..\Test\PdbUtilities\PdbUtilities.csproj">
      <Project>{afde6bea-5038-4a4a-a88e-dbd2e4088eed}</Project>
      <Name>PdbUtilities</Name>
    </ProjectReference>
J
Jared Parsons 已提交
49 50 51 52
    <ProjectReference Include="..\..\..\..\Test\Utilities\Desktop\TestUtilities.Desktop.csproj">
      <Project>{76c6f005-c89d-4348-bb4a-391898dbeb52}</Project>
      <Name>TestUtilities.Desktop</Name>
    </ProjectReference>
J
Jared Parsons 已提交
53 54 55 56
    <ProjectReference Include="..\..\..\..\Test\Utilities\Portable.FX45\TestUtilities.FX45.csproj">
      <Project>{f7712928-1175-47b3-8819-ee086753dee2}</Project>
      <Name>TestUtilities.FX45</Name>
    </ProjectReference>
57 58 59 60
    <ProjectReference Include="..\..\..\..\Test\Utilities\Portable\TestUtilities.csproj">
      <Project>{ccbd3438-3e84-40a9-83ad-533f23bcfca5}</Project>
      <Name>TestUtilities</Name>
    </ProjectReference>
J
Jared Parsons 已提交
61 62 63 64
    <ProjectReference Include="..\..\..\..\Workspaces\VisualBasic\Portable\BasicWorkspace.vbproj">
      <Project>{57ca988d-f010-4bf2-9a2e-07d6dcd2ff2c}</Project>
      <Name>BasicWorkspace</Name>
    </ProjectReference>
J
Jonathon Marolf 已提交
65 66 67 68
    <ProjectReference Include="..\..\..\Shared\UnitTestFramework\UnitTestFramework.csproj">
      <Project>{d571f126-f0b6-487e-bb79-e91eaee46f4f}</Project>
      <Name>UnitTestFramework</Name>
    </ProjectReference>
69 70 71 72 73
    <ProjectReference Include="..\Impl\ImplementNotifyPropertyChangedVB.vbproj">
      <Project>{C182B3BA-431B-475E-ABA8-21A56283B493}</Project>
      <Name>ImplementNotifyPropertyChangedVB</Name>
    </ProjectReference>
  </ItemGroup>
74 75
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'" />
76 77 78 79 80 81 82 83 84 85 86
  <ItemGroup>
    <Reference Include="System" />
    <Reference Include="System.Core" />
    <Reference Include="System.Data" />
    <Reference Include="System.Data.DataSetExtensions" />
    <Reference Include="System.Xml" />
    <Reference Include="System.Xml.Linq" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="CodeRefactoringTests.vb" />
  </ItemGroup>
87
  <ItemGroup>
88
    <None Include="project.json" />
89
  </ItemGroup>
J
Jared Parsons 已提交
90
  <Import Project="..\..\..\..\..\build\Targets\Imports.targets" />
J
Jared Parsons 已提交
91
</Project>