Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge release/15.5 to master #1693

Merged
merged 11 commits into from
Oct 30, 2017
6 changes: 3 additions & 3 deletions build/DependencyVersions.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
</PropertyGroup>

<PropertyGroup>
<MsBuildPackagesVersion>15.2.0-preview-000093-02</MsBuildPackagesVersion>
<DependencyModelVersion>2.0.0-preview1-001960</DependencyModelVersion>
<PlatformAbstractionsVersion>2.0.0-preview1-001960</PlatformAbstractionsVersion>
<MsBuildPackagesVersion>15.4.8</MsBuildPackagesVersion>
<DependencyModelVersion>2.0.0</DependencyModelVersion>
<PlatformAbstractionsVersion>2.0.0</PlatformAbstractionsVersion>
<NuGetVersion>4.5.0-preview2-4529</NuGetVersion>
<NewtonsoftJsonVersion>9.0.1</NewtonsoftJsonVersion>
<SystemReflectionMetadataVersion>1.4.2</SystemReflectionMetadataVersion>
Expand Down
15 changes: 15 additions & 0 deletions build/build.proj
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,22 @@
Targets="Pack"
Properties="$(CommonMSBuildGlobalProperties);NoBuild=true"
/>
</Target>

<Target Name="BuildForCli">
<MSBuild Projects="@(NuGetProjectFile)"
Targets="Restore"
Properties="$(CommonMSBuildGlobalProperties)" />

<MSBuild Projects="@(NuGetProjectFile)"
Targets="Build"
Properties="$(CommonMSBuildGlobalProperties)" />

<MSBuild BuildInParallel="true"
Projects="@(NuGetProjectFile)"
Targets="Pack"
Properties="$(CommonMSBuildGlobalProperties);NoBuild=true"
/>
</Target>

<Target Name="CleanNuGetPackages">
Expand Down