SetupStep2.proj 1.5 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">
4

J
Cleanup  
Jared Parsons 已提交
5
  <Import Project="..\..\build\Targets\Settings.props" />
6 7 8 9 10

  <Target Name="Build">

    <!-- Build CoreXT packages for insertion into DevDiv (order of the following actions matters) -->
    <MSBuild Projects="DevDivInsertionFiles\DevDivInsertionFiles.sln" />
11
    <Exec Command="&quot;$(OutDir)\Exes\DevDivInsertionFiles\Roslyn.BuildDevDivInsertionFiles.exe&quot; &quot;$(OutDir)\&quot; &quot;$(MSBuildThisFileDirectory)\&quot; &quot;$(NuGetPackageRoot)&quot; $(AssemblyVersion)" LogStandardErrorAsError="true" />
12
    <MSBuild Projects="DevDivPackages\Roslyn.proj" />
13
    <MSBuild Projects="DevDivVsix\PortableFacades\PortableFacades.vsmanproj" />
14 15
    <MSBuild Projects="DevDivVsix\CompilersPackage\Microsoft.CodeAnalysis.Compilers.vsmanproj" />
    <MSBuild Projects="DevDivVsix\MicrosoftCodeAnalysisLanguageServices\Microsoft.CodeAnalysis.LanguageServices.vsmanproj" />
16

17 18
    <!-- Dependencies -->
    <!-- <MSBuild Projects="..\..\..\Closed\Test\Resources\TestResourcesProprietary.csproj" /> -->
19

20 21 22 23 24 25
    <!-- Microsoft.NetFX20 -->
    <MSBuild Projects="..\Dependencies\Microsoft.NetFX20\Microsoft.NetFX20.nuget.proj" />

    <!-- VSIX Gallery -->
    <MSBuild Projects="Vsix\Vsix.proj" />
  </Target>
26
</Project>