Microsoft.CodeAnalysis.VisualBasic.CommandLine.UnitTests.vbproj 4.0 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. -->
3
<Project Sdk="Microsoft.NET.Sdk">
P
Pilchie 已提交
4
  <PropertyGroup>
5
    <Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
6
    <PlatformTarget>AnyCPU</PlatformTarget>
P
Pilchie 已提交
7
    <OutputType>Library</OutputType>
8
    <TargetFramework>net46</TargetFramework>
9
    <RuntimeIdentifier>$(RoslynDesktopRuntimeIdentifier)</RuntimeIdentifier>
10
    <RoslynProjectType>UnitTest</RoslynProjectType>
11
    <RootNamespace></RootNamespace>
12
    <GenerateMicrosoftCodeAnalysisCommitHashAttribute>true</GenerateMicrosoftCodeAnalysisCommitHashAttribute>
P
Pilchie 已提交
13 14
  </PropertyGroup>
  <ItemGroup Label="Project References">
J
Jared Parsons 已提交
15 16 17
    <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 已提交
18
    <ProjectReference Include="..\..\..\Server\VBCSCompiler\VBCSCompiler.csproj" />
J
Jared Parsons 已提交
19 20
    <ProjectReference Include="..\..\..\Core\Portable\Microsoft.CodeAnalysis.csproj" />
    <ProjectReference Include="..\..\..\Test\Utilities\VisualBasic\Microsoft.CodeAnalysis.VisualBasic.Test.Utilities.vbproj" />
21
    <ProjectReference Include="..\..\vbc\vbc.csproj" ReferenceOutputAssembly="false" OutputItemType="RoslynReferenceToDependencyDirectory" />
J
Jared Parsons 已提交
22 23
    <ProjectReference Include="..\..\Portable\Microsoft.CodeAnalysis.VisualBasic.vbproj" />
    <ProjectReference Include="..\..\..\Test\Resources\Core\Microsoft.CodeAnalysis.Compiler.Test.Resources.csproj" />
P
Pilchie 已提交
24
  </ItemGroup>
25 26
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'" />
P
Pilchie 已提交
27 28 29 30 31 32 33 34 35 36
  <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
    <Compile Update="My Project\Application.Designer.vb">
P
Pilchie 已提交
38 39 40
      <AutoGen>True</AutoGen>
      <DependentUpon>Application.myapp</DependentUpon>
    </Compile>
41
    <Compile Update="My Project\Resources.Designer.vb">
P
Pilchie 已提交
42 43 44 45
      <AutoGen>True</AutoGen>
      <DesignTime>True</DesignTime>
      <DependentUpon>Resources.resx</DependentUpon>
    </Compile>
46
    <Compile Update="My Project\Settings.Designer.vb">
P
Pilchie 已提交
47 48 49 50
      <AutoGen>True</AutoGen>
      <DependentUpon>Settings.settings</DependentUpon>
      <DesignTimeSharedInput>True</DesignTimeSharedInput>
    </Compile>
51
    <Compile Update="CommandLineTestResources.Designer.vb">
52 53 54 55
      <AutoGen>True</AutoGen>
      <DesignTime>True</DesignTime>
      <DependentUpon>CommandLineTestResources.resx</DependentUpon>
    </Compile>
P
Pilchie 已提交
56 57
  </ItemGroup>
  <ItemGroup>
58
    <EmbeddedResource Update="My Project\Resources.resx">
P
Pilchie 已提交
59 60 61 62 63
      <Generator>VbMyResourcesResXFileCodeGenerator</Generator>
      <LastGenOutput>Resources.Designer.vb</LastGenOutput>
      <CustomToolNamespace>My.Resources</CustomToolNamespace>
      <SubType>Designer</SubType>
    </EmbeddedResource>
64
    <EmbeddedResource Update="CommandLineTestResources.resx">
65 66 67
      <Generator>ResXFileCodeGenerator</Generator>
      <LastGenOutput>CommandLineTestResources.Designer.vb</LastGenOutput>
    </EmbeddedResource>
P
Pilchie 已提交
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
  </ItemGroup>
  <ItemGroup>
    <None Include="My Project\Application.myapp">
      <Generator>MyApplicationCodeGenerator</Generator>
      <LastGenOutput>Application.Designer.vb</LastGenOutput>
    </None>
    <None Include="My Project\Settings.settings">
      <Generator>SettingsSingleFileGenerator</Generator>
      <CustomToolNamespace>My</CustomToolNamespace>
      <LastGenOutput>Settings.Designer.vb</LastGenOutput>
    </None>
  </ItemGroup>
  <ItemGroup>
    <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
  </ItemGroup>
J
Jared Parsons 已提交
83
</Project>