Microsoft.CodeAnalysis.VisualBasic.CommandLine.UnitTests.vbproj 2.2 KB
Newer Older
P
Pilchie 已提交
1
<?xml version="1.0" encoding="utf-8"?>
J
Jonathon Marolf 已提交
2
<!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the LICENSE file in the project root for more information. -->
3
<Project Sdk="Microsoft.NET.Sdk">
P
Pilchie 已提交
4 5
  <PropertyGroup>
    <OutputType>Library</OutputType>
T
Tomas Matousek 已提交
6
    <TargetFramework>net472</TargetFramework>
7
    <RootNamespace></RootNamespace>
8
    <GenerateMicrosoftCodeAnalysisCommitHashAttribute>true</GenerateMicrosoftCodeAnalysisCommitHashAttribute>
9 10 11 12 13 14

    <!-- 
      Skipped because we appear to be missing things necessary to compile vb.net.
      See https://github.com/mono/mono/issues/10679 
    -->
    <SkipTests Condition="'$(TestRuntime)' == 'Mono'">true</SkipTests>
P
Pilchie 已提交
15 16
  </PropertyGroup>
  <ItemGroup Label="Project References">
J
Jared Parsons 已提交
17 18 19
    <ProjectReference Include="..\..\..\..\Test\PdbUtilities\Roslyn.Test.PdbUtilities.csproj" />
    <ProjectReference Include="..\..\..\..\Test\Utilities\Portable\Roslyn.Test.Utilities.csproj" />
    <ProjectReference Include="..\..\..\CSharp\Portable\Microsoft.CodeAnalysis.CSharp.csproj" />
J
Jared Parsons 已提交
20
    <ProjectReference Include="..\..\..\Server\VBCSCompiler\VBCSCompiler.csproj" />
J
Jared Parsons 已提交
21 22
    <ProjectReference Include="..\..\..\Core\Portable\Microsoft.CodeAnalysis.csproj" />
    <ProjectReference Include="..\..\..\Test\Utilities\VisualBasic\Microsoft.CodeAnalysis.VisualBasic.Test.Utilities.vbproj" />
23
    <ProjectReference Include="..\..\vbc\vbc.csproj" ReferenceOutputAssembly="false" OutputItemType="RoslynReferenceToDependencyDirectory" />
J
Jared Parsons 已提交
24 25
    <ProjectReference Include="..\..\Portable\Microsoft.CodeAnalysis.VisualBasic.vbproj" />
    <ProjectReference Include="..\..\..\Test\Resources\Core\Microsoft.CodeAnalysis.Compiler.Test.Resources.csproj" />
P
Pilchie 已提交
26 27 28 29 30 31 32 33 34 35 36
  </ItemGroup>
  <ItemGroup>
    <Reference Include="System" />
    <Reference Include="System.Core" />
    <Reference Include="System.Xml" />
    <Reference Include="System.Xml.Linq" />
  </ItemGroup>
  <ItemGroup>
    <Import Include="System.Xml.Linq" />
  </ItemGroup>
  <ItemGroup>
37
    <EmbeddedResource Include="../../vbc/vbc.rsp" Link="Resources\vbc.rsp" />
P
Pilchie 已提交
38 39 40 41
  </ItemGroup>
  <ItemGroup>
    <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
  </ItemGroup>
J
Jared Parsons 已提交
42
</Project>