CSharpScriptingTest.Desktop.csproj 3.8 KB
Newer Older
1 2
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
J
Jared Parsons 已提交
3
  <Import Project="..\..\..\build\Targets\VSL.Settings.targets" />
4 5 6
  <PropertyGroup>
    <Nonshipping>true</Nonshipping>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
T
Tomas Matousek 已提交
7
    <ProjectGuid>{286B01F3-811A-40A7-8C1F-10C9BB0597F7}</ProjectGuid>
8 9
    <OutputType>Library</OutputType>
    <AppDesignerFolder>Properties</AppDesignerFolder>
10 11
    <RootNamespace>Microsoft.CodeAnalysis.CSharp.Scripting.UnitTests</RootNamespace>
    <AssemblyName>Microsoft.CodeAnalysis.CSharp.Scripting.Desktop.UnitTests</AssemblyName>
12
    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
T
Tomas Matousek 已提交
13
    <TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
14
    <RoslynProjectType>UnitTest</RoslynProjectType>
15
  </PropertyGroup>
T
Tomas Matousek 已提交
16 17 18 19 20 21 22 23
  <ItemGroup>
    <Reference Include="System" />
    <Reference Include="System.Data" />
    <Reference Include="System.Runtime.Serialization" />
    <Reference Include="System.Windows.Forms" />
    <Reference Include="System.Xml" />
    <Reference Include="System.Xml.Linq" />
  </ItemGroup>
J
Jared Parsons 已提交
24 25
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "></PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "></PropertyGroup>
26
  <ItemGroup>
T
Tomas Matousek 已提交
27
    <Compile Include="CsiTests.cs" />
28 29 30 31
    <Compile Include="InteractiveSessionTests.cs" />
    <Compile Include="ObjectFormatterTests.cs" />
  </ItemGroup>
  <ItemGroup>
32
    <ProjectReference Include="..\..\Compilers\Core\Portable\CodeAnalysis.csproj">
33
      <Project>{1ee8cad3-55f9-4d91-96b2-084641da9a6c}</Project>
34 35 36
      <Name>CodeAnalysis</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\Compilers\CSharp\Portable\CSharpCodeAnalysis.csproj">
37
      <Project>{b501a547-c911-4a05-ac6e-274a50dff30e}</Project>
38 39
      <Name>CSharpCodeAnalysis</Name>
    </ProjectReference>
40
    <ProjectReference Include="..\..\Compilers\Test\Resources\Core\CompilerTestResources.csproj">
41
      <Project>{7fe6b002-89d8-4298-9b1b-0b5c247dd1fd}</Project>
42 43
      <Name>CompilerTestResources</Name>
    </ProjectReference>
44 45 46 47
    <ProjectReference Include="..\..\Compilers\VisualBasic\Portable\BasicCodeAnalysis.vbproj">
      <Project>{2523d0e6-df32-4a3e-8ae0-a19bffae2ef6}</Project>
      <Name>BasicCodeAnalysis</Name>
    </ProjectReference>
T
Tomas Matousek 已提交
48 49 50 51 52 53 54 55
    <ProjectReference Include="..\..\Interactive\csi\csi.csproj">
      <Project>{14118347-ed06-4608-9c45-18228273c712}</Project>
      <Name>csi</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\Test\Utilities\Desktop\TestUtilities.Desktop.csproj">
      <Project>{76c6f005-c89d-4348-bb4a-391898dbeb52}</Project>
      <Name>TestUtilities.Desktop</Name>
    </ProjectReference>
T
Tomas Matousek 已提交
56 57 58
    <ProjectReference Include="..\..\Test\Utilities\Portable\TestUtilities.csproj">
      <Project>{ccbd3438-3e84-40a9-83ad-533f23bcfca5}</Project>
      <Name>TestUtilities</Name>
59
      <Aliases>global,PortableTestUtils</Aliases>
60
    </ProjectReference>
T
Tomas Matousek 已提交
61
    <ProjectReference Include="..\CoreTest\ScriptingTest.csproj">
62
      <Project>{2dae4406-7a89-4b5f-95c3-bc5472ce47ce}</Project>
T
Tomas Matousek 已提交
63 64
      <Name>ScriptingTest</Name>
    </ProjectReference>
65 66 67
    <ProjectReference Include="..\Core\Scripting.csproj">
      <Project>{12a68549-4e8c-42d6-8703-a09335f97997}</Project>
      <Name>Scripting</Name>
T
Tomas Matousek 已提交
68
    </ProjectReference>
69
    <ProjectReference Include="..\CSharp\CSharpScripting.csproj">
70
      <Project>{066f0dbd-c46c-4c20-afec-99829a172625}</Project>
71 72 73 74
      <Name>CSharpScripting</Name>
    </ProjectReference>
  </ItemGroup>
  <ItemGroup>
75
    <None Include="project.json" />
76
  </ItemGroup>
77 78 79
  <ItemGroup>
    <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
  </ItemGroup>
J
Jared Parsons 已提交
80 81
  <Import Project="..\..\..\build\Targets\VSL.Imports.targets" />
  <Import Project="..\..\..\build\Targets\Roslyn.Toolsets.Xunit.targets" />
J
Jared Parsons 已提交
82
</Project>