Set 2.0 baselines

This commit is contained in:
Ryan Brandenburg 2018-03-14 15:32:59 -07:00
parent 878ed82365
commit bb52bcf11b
4 changed files with 110 additions and 13 deletions

View File

@ -3,7 +3,7 @@
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
<PropertyGroup Label="Package Versions">
<InternalAspNetCoreSdkPackageVersion>2.1.0-preview2-15742</InternalAspNetCoreSdkPackageVersion>
<InternalAspNetCoreSdkPackageVersion>2.1.0-preview2-15744</InternalAspNetCoreSdkPackageVersion>
<MicrosoftAspNetCoreDataProtectionPackageVersion>2.1.0-preview2-30355</MicrosoftAspNetCoreDataProtectionPackageVersion>
<MicrosoftAspNetCoreHttpAbstractionsPackageVersion>2.1.0-preview2-30355</MicrosoftAspNetCoreHttpAbstractionsPackageVersion>
<MicrosoftAspNetCoreHttpExtensionsPackageVersion>2.1.0-preview2-30355</MicrosoftAspNetCoreHttpExtensionsPackageVersion>

View File

@ -1,2 +1,2 @@
version:2.1.0-preview2-15742
commithash:21fbb0f2c3fe4a9216e2d59632b98cfd7d685962
version:2.1.0-preview2-15744
commithash:9e15cb6062ab5b9790d3fa699e018543a6950713

View File

@ -1,5 +1,5 @@
{
"AssemblyIdentity": "Microsoft.AspNetCore.Antiforgery, Version=1.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60",
"AssemblyIdentity": "Microsoft.AspNetCore.Antiforgery, Version=2.0.2.0, Culture=neutral, PublicKeyToken=adb9793829ddae60",
"Types": [
{
"Name": "Microsoft.Extensions.DependencyInjection.AntiforgeryServiceCollectionExtensions",
@ -55,19 +55,19 @@
"Members": [
{
"Kind": "Method",
"Name": "get_CookieName",
"Name": "get_Cookie",
"Parameters": [],
"ReturnType": "System.String",
"ReturnType": "Microsoft.AspNetCore.Http.CookieBuilder",
"Visibility": "Public",
"GenericParameter": []
},
{
"Kind": "Method",
"Name": "set_CookieName",
"Name": "set_Cookie",
"Parameters": [
{
"Name": "value",
"Type": "System.String"
"Type": "Microsoft.AspNetCore.Http.CookieBuilder"
}
],
"ReturnType": "System.Void",
@ -118,7 +118,7 @@
},
{
"Kind": "Method",
"Name": "get_RequireSsl",
"Name": "get_SuppressXFrameOptionsHeader",
"Parameters": [],
"ReturnType": "System.Boolean",
"Visibility": "Public",
@ -126,7 +126,7 @@
},
{
"Kind": "Method",
"Name": "set_RequireSsl",
"Name": "set_SuppressXFrameOptionsHeader",
"Parameters": [
{
"Name": "value",
@ -139,7 +139,70 @@
},
{
"Kind": "Method",
"Name": "get_SuppressXFrameOptionsHeader",
"Name": "get_CookieName",
"Parameters": [],
"ReturnType": "System.String",
"Visibility": "Public",
"GenericParameter": []
},
{
"Kind": "Method",
"Name": "set_CookieName",
"Parameters": [
{
"Name": "value",
"Type": "System.String"
}
],
"ReturnType": "System.Void",
"Visibility": "Public",
"GenericParameter": []
},
{
"Kind": "Method",
"Name": "get_CookiePath",
"Parameters": [],
"ReturnType": "System.Nullable<Microsoft.AspNetCore.Http.PathString>",
"Visibility": "Public",
"GenericParameter": []
},
{
"Kind": "Method",
"Name": "set_CookiePath",
"Parameters": [
{
"Name": "value",
"Type": "System.Nullable<Microsoft.AspNetCore.Http.PathString>"
}
],
"ReturnType": "System.Void",
"Visibility": "Public",
"GenericParameter": []
},
{
"Kind": "Method",
"Name": "get_CookieDomain",
"Parameters": [],
"ReturnType": "System.String",
"Visibility": "Public",
"GenericParameter": []
},
{
"Kind": "Method",
"Name": "set_CookieDomain",
"Parameters": [
{
"Name": "value",
"Type": "System.String"
}
],
"ReturnType": "System.Void",
"Visibility": "Public",
"GenericParameter": []
},
{
"Kind": "Method",
"Name": "get_RequireSsl",
"Parameters": [],
"ReturnType": "System.Boolean",
"Visibility": "Public",
@ -147,7 +210,7 @@
},
{
"Kind": "Method",
"Name": "set_SuppressXFrameOptionsHeader",
"Name": "set_RequireSsl",
"Parameters": [
{
"Name": "value",
@ -1034,6 +1097,27 @@
],
"GenericParameters": []
},
{
"Name": "Microsoft.AspNetCore.Antiforgery.Internal.CryptographyAlgorithms",
"Visibility": "Public",
"Kind": "Class",
"Abstract": true,
"Static": true,
"Sealed": true,
"ImplementedInterfaces": [],
"Members": [
{
"Kind": "Method",
"Name": "CreateSHA256",
"Parameters": [],
"ReturnType": "System.Security.Cryptography.SHA256",
"Static": true,
"Visibility": "Public",
"GenericParameter": []
}
],
"GenericParameters": []
},
{
"Name": "Microsoft.AspNetCore.Antiforgery.Internal.DefaultAntiforgery",
"Visibility": "Public",
@ -1122,6 +1206,20 @@
"Visibility": "Public",
"GenericParameter": []
},
{
"Kind": "Method",
"Name": "SetDoNotCacheHeaders",
"Parameters": [
{
"Name": "httpContext",
"Type": "Microsoft.AspNetCore.Http.HttpContext"
}
],
"ReturnType": "System.Void",
"Virtual": true,
"Visibility": "Protected",
"GenericParameter": []
},
{
"Kind": "Constructor",
"Name": ".ctor",

View File

@ -3,7 +3,6 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Security.Claims;
using Microsoft.Extensions.ObjectPool;