Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
<PropertyGroup Label="Version settings">
<AspNetCoreMajorVersion>3</AspNetCoreMajorVersion>
<AspNetCoreMinorVersion>1</AspNetCoreMinorVersion>
<AspNetCorePatchVersion>13</AspNetCorePatchVersion>
<AspNetCorePatchVersion>14</AspNetCorePatchVersion>
<ValidateBasline>false</ValidateBasline>

<PreReleasePreviewNumber>0</PreReleasePreviewNumber>
<ComponentsWebAssemblyMajorVersion>3</ComponentsWebAssemblyMajorVersion>
<ComponentsWebAssemblyMinorVersion>2</ComponentsWebAssemblyMinorVersion>
Expand Down
3 changes: 2 additions & 1 deletion eng/scripts/install-nginx-mac.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env bash

brew update
brew install openssl nginx
brew list openssl || brew install openssl
brew list nginx || brew install nginx
3 changes: 2 additions & 1 deletion eng/targets/Packaging.targets
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<Project>

<Target Name="EnsureBaselineIsUpdated"
Condition=" '$(IsServicingBuild)' == 'true' AND
Condition=" '$(ValidateBasline)' == 'true' AND
'$(IsServicingBuild)' == 'true' AND
'$(AspNetCoreBaselineVersion)' != '$(PreviousAspNetCoreReleaseVersion)' AND
'$(MSBuildProjectName)' != 'BaselineGenerator' AND
'$(MSBuildProjectName)' != 'RepoTasks' "
Expand Down