FormatSolutionVB.vbproj 3.3 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 DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
4
  <Import Project="..\..\..\..\build\Targets\SettingsSdk.props" />
5
  <PropertyGroup>
6
    <Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
7
    <PlatformTarget>AnyCPU</PlatformTarget>
8 9 10 11
    <OutputType>Exe</OutputType>
    <StartupObject>Program</StartupObject>
    <AssemblyName>FormatSolution</AssemblyName>
    <MyType>Console</MyType>
12
    <TargetFramework>net46</TargetFramework>
A
Ashley Hauck 已提交
13
    <RuntimeIdentifiers>$(RoslynDesktopRuntimeIdentifiers)</RuntimeIdentifiers>
14
    <ScrubbedSamplePath>VisualBasic\FormatSolution</ScrubbedSamplePath>
15
    <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
16 17
    <OptionStrict>Off</OptionStrict>
    <NoWarn>$(NoWarn);42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
18 19
  </PropertyGroup>
  <ItemGroup Label="Project References">
J
Jared Parsons 已提交
20 21 22 23 24 25 26
    <ProjectReference Include="..\..\..\..\src\Compilers\Core\Portable\CodeAnalysis.csproj" />
    <ProjectReference Include="..\..\..\..\src\Compilers\CSharp\Portable\CSharpCodeAnalysis.csproj" />
    <ProjectReference Include="..\..\..\..\src\Compilers\VisualBasic\Portable\BasicCodeAnalysis.vbproj" />
    <ProjectReference Include="..\..\..\..\src\Workspaces\Core\Portable\Workspaces.csproj" />
    <ProjectReference Include="..\..\..\..\src\Workspaces\Core\Desktop\Workspaces.Desktop.csproj" />
    <ProjectReference Include="..\..\..\..\src\Workspaces\CSharp\Portable\CSharpWorkspace.csproj" />
    <ProjectReference Include="..\..\..\..\src\Workspaces\VisualBasic\Portable\BasicWorkspace.vbproj" />
27
  </ItemGroup>
28 29
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'" />
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
  <ItemGroup>
    <Import Include="System.Threading.Tasks" />
  </ItemGroup>
  <ItemGroup>
    <None Include="TestSolutionForVB\CSharpProject\CSharpClass.cs">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </None>
    <None Include="TestSolutionForVB\CSharpProject\CSharpProject.csproj">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </None>
    <None Include="TestSolutionForVB\Test.sln">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </None>
    <None Include="TestSolutionForVB\VisualBasicProject\VisualBasicClass.vb">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </None>
    <None Include="TestSolutionForVB\VisualBasicProject\VisualBasicProject.vbproj">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </None>
  </ItemGroup>
  <ItemGroup>
    <Folder Include="My Project\" />
  </ItemGroup>
53 54 55
  <ItemGroup>
    <Compile Remove="TestSolutionForVB\VisualBasicProject\VisualBasicClass.vb" />
  </ItemGroup>
56
  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
57 58 59 60 61 62
       Other similar extension points exist, see Microsoft.Common.targets.
  <Target Name="BeforeBuild">
  </Target>
  <Target Name="AfterBuild">
  </Target>
  -->
J
Jared Parsons 已提交
63
  <Import Project="..\..\..\..\build\Targets\Imports.targets" />
64
</Project>