Skip to content

Commit d0b0175

Browse files
author
Christy Henriksson
committed
PR feedback
1 parent 6739323 commit d0b0175

2 files changed

Lines changed: 12 additions & 18 deletions

File tree

build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ param (
1010
[string]$PackageSuffix,
1111
[string]$Branch,
1212
[string]$CommitSHA,
13-
[string]$BuildBranch = '306fec22edac68336d7e32124d51248734c3a395'
13+
[string]$BuildBranch = 'cb604c2cd1b2f7f71fb574cdda4c83ddb1464cc7'
1414
)
1515

1616
Set-StrictMode -Version 1.0

src/NuGetGallery.Core/NuGetGallery.Core.csproj

Lines changed: 11 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>
5-
<Description>Core support library for NuGet Gallery Frontend and Backend</Description>
65
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
76
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
87
<ProjectGuid>{097B2CDD-9623-4C34-93C2-D373D51F5B4E}</ProjectGuid>
@@ -20,6 +19,16 @@
2019
<BuildPackage>true</BuildPackage>
2120
<TargetFrameworkProfile />
2221
</PropertyGroup>
22+
<PropertyGroup>
23+
<Description>Core support library for NuGet Gallery Frontend and Backend</Description>
24+
<PackageId Condition="'$(PackageId)' == ''">$(MSBuildProjectName)</PackageId>
25+
<Authors>.NET Foundation</Authors>
26+
<PackageLicenseUrl>https://github.com/NuGet/NuGetGallery/blob/master/LICENSE.txt</PackageLicenseUrl>
27+
<PackageProjectUrl>https://github.com/NuGet/NuGetGallery</PackageProjectUrl>
28+
<Copyright>© .NET Foundation. All rights reserved.</Copyright>
29+
<IncludeSymbols Condition="'$(IncludeSymbols)' == ''">true</IncludeSymbols>
30+
<NoPackageAnalysis Condition="'$(NoPackageAnalysis)' == ''">true</NoPackageAnalysis>
31+
</PropertyGroup>
2332
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2433
<DebugSymbols>true</DebugSymbols>
2534
<DebugType>full</DebugType>
@@ -249,14 +258,11 @@
249258
<PackageReference Include="Newtonsoft.Json">
250259
<Version>9.0.1</Version>
251260
</PackageReference>
252-
<PackageReference Include="Microsoft.Web.Xdt">
253-
<Version>2.1.1</Version>
254-
</PackageReference>
255261
<PackageReference Include="Microsoft.WindowsAzure.ConfigurationManager">
256262
<Version>3.1.0</Version>
257263
</PackageReference>
258264
<PackageReference Include="NuGet.Build.Tasks.Pack">
259-
<Version>5.0.0-preview1.5429</Version>
265+
<Version>4.8.0</Version>
260266
<PrivateAssets>all</PrivateAssets>
261267
</PackageReference>
262268
<PackageReference Include="NuGet.Packaging">
@@ -272,18 +278,6 @@
272278
<Version>7.1.2</Version>
273279
</PackageReference>
274280
</ItemGroup>
275-
<Target Name="PopulateNuspec" BeforeTargets="GenerateNuspec">
276-
<PropertyGroup>
277-
<PackageId Condition="'$(PackageId)' == ''">$(MSBuildProjectName)</PackageId>
278-
<Title Condition="'$(Title)' == ''">$(PackageId)</Title>
279-
<Authors>.NET Foundation</Authors>
280-
<PackageLicenseUrl>https://github.com/NuGet/NuGetGallery/blob/master/LICENSE.txt</PackageLicenseUrl>
281-
<PackageProjectUrl>https://github.com/NuGet/NuGetGallery</PackageProjectUrl>
282-
<Copyright>© .NET Foundation. All rights reserved.</Copyright>
283-
<IncludeSymbols Condition="'$(IncludeSymbols)' == ''">true</IncludeSymbols>
284-
<NoPackageAnalysis Condition="'$(NoPackageAnalysis)' == ''">true</NoPackageAnalysis>
285-
</PropertyGroup>
286-
</Target>
287281
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
288282
<PropertyGroup>
289283
<SignPath>..\..\build</SignPath>

0 commit comments

Comments
 (0)