-
Notifications
You must be signed in to change notification settings - Fork 10.4k
[automated] Merge branch 'release/3.1' => 'master' #16834
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
Merged
dougbu
merged 17 commits into
dotnet:master
from
dotnet-maestro-bot:merge/release/3.1-to-master
Nov 5, 2019
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
7816ef9
Handle synchronous exceptions from partial (#16679)
ryanbrandenburg 41e15c3
Prevent VS warning for empty attribute (#16719)
ryanbrandenburg da12590
[release/3.1] Update dependencies from 2 repositories (#16742)
dotnet-maestro[bot] 57d21c4
Use new EventId for bad dev cert log (#16720)
halter73 83a09f6
[release/3.1] Update dependencies from 2 repositories (#16750)
dotnet-maestro[bot] 4d3eccc
Set new HTTPS environment variable when using out of process (#16713)
jkotalik 0ab7883
[release/3.1] Update dependencies from aspnet/EntityFrameworkCore (#1…
dotnet-maestro[bot] a0ee8b6
[release/3.1] Update dependencies from aspnet/EntityFrameworkCore (#1…
dotnet-maestro[bot] 5709cd9
[release/3.1] Update dependencies from aspnet/EntityFrameworkCore (#1…
dotnet-maestro[bot] 507379d
Update dependencies from https://github.com/aspnet/EntityFrameworkCor…
dotnet-maestro[bot] d3db300
Update dependencies from https://github.com/aspnet/EntityFrameworkCor…
dotnet-maestro[bot] fe164cd
Update dependencies from https://github.com/aspnet/EntityFrameworkCor…
dotnet-maestro[bot] da20a12
[release/3.1] Update dependencies from 2 repositories (#16790)
dotnet-maestro[bot] e3b971a
Keep Kestrel's connection PipeReader in a consistent state (#16725)
halter73 1e75cdb
Update dependencies from https://github.com/aspnet/EntityFrameworkCor…
dotnet-maestro[bot] e8f59e6
Merge pull request #16818 from aspnet/darc-release/3.1-32bd8948-af6c-…
wtgodbe ea51e63
Merge branch 'master' into merge/release/3.1-to-master
dougbu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// Copyright (c) .NET Foundation. All rights reserved. | ||
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. | ||
|
||
using System.IO; | ||
using System.Text.Encodings.Web; | ||
using Microsoft.AspNetCore.Html; | ||
using Microsoft.AspNetCore.Mvc.Rendering; | ||
|
||
namespace TagHelpersWebSite | ||
{ | ||
public class MyHtmlContent : IHtmlContent | ||
{ | ||
private IHtmlHelper Html { get; } | ||
|
||
public MyHtmlContent(IHtmlHelper html) | ||
{ | ||
Html = html; | ||
} | ||
|
||
public void WriteTo(TextWriter writer, HtmlEncoder encoder) | ||
{ | ||
#pragma warning disable MVC1000 // Use of IHtmlHelper.{0} should be avoided. | ||
Html.Partial("_Test").WriteTo(writer, encoder); | ||
#pragma warning restore MVC1000 // Use of IHtmlHelper.{0} should be avoided. | ||
} | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
src/Mvc/test/WebSites/TagHelpersWebSite/Views/Home/MyHtml.cshtml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
@(new TagHelpersWebSite.MyHtmlContent(Html)) |
3 changes: 3 additions & 0 deletions
3
src/Mvc/test/WebSites/TagHelpersWebSite/Views/Home/_Test.cshtml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
@{ | ||
throw new Exception("Should be visible"); | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ tmp/ | |
CustomHive/ | ||
angular/ | ||
blazorserver/ | ||
blazorwasm/ | ||
mvc/ | ||
razor/ | ||
react/ | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/usr/bin/env pwsh | ||
#requires -version 4 | ||
|
||
# This script packages, installs and creates a template to help with rapid iteration in the templating area. | ||
[CmdletBinding(PositionalBinding = $false)] | ||
param() | ||
|
||
Set-StrictMode -Version 2 | ||
$ErrorActionPreference = 'Stop' | ||
|
||
. $PSScriptRoot\Test-Template.ps1 | ||
|
||
Test-Template "blazorwasm" "blazorwasm" "Microsoft.AspnetCore.Blazor.Templates.3.1.0-dev.nupkg" $false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jkotalik I resolved a conflict in this file and think I got it right. Please double-check my work against what came from your #16713