Skip to content

Commit

Permalink
include the TokenValidationParameters.IncludeTokenOnFailedValidation …
Browse files Browse the repository at this point in the history
…in the copy constructor
  • Loading branch information
dannybtsai committed Jan 6, 2023
1 parent 92997ab commit f704809
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
param(
[string]$buildType="Debug",
[string]$dotnetDir="c:\Program Files\dotnet",
[string]$msbuildDir="C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin",
[string]$msbuildDir="C:\Program Files\Microsoft Visual Studio\2022\Professional\MSBuild\Current\Bin",
[string]$root=$PSScriptRoot,
[string]$runTests="YES",
[string]$failBuildOnTest="YES",
Expand Down
4 changes: 2 additions & 2 deletions build/version.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- This file may be overwritten by automation. Only values allowed here are VersionPrefix and VersionSuffix. -->
<Project>
<PropertyGroup>
<VersionPrefix>0.0.1</VersionPrefix>
<VersionSuffix>preview</VersionSuffix>
<VersionPrefix>6.99.1</VersionPrefix>
<VersionSuffix>localdebug-40105183055</VersionSuffix>
</PropertyGroup>
</Project>
4 changes: 2 additions & 2 deletions buildConfiguration.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<dotnetArchitecture>x64</dotnetArchitecture>
<nugetVersion>3.5.0-rc-1285</nugetVersion>
<runtimes>net45,net461,netstandard2.0</runtimes>
<assemblyVersion>6.25.2</assemblyVersion>
<nugetSuffix>preview</nugetSuffix>
<assemblyVersion>6.99.1</assemblyVersion>
<nugetSuffix>localdebug</nugetSuffix>
<projects>
<src>
<project name="Microsoft.IdentityModel.Logging" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@ protected TokenValidationParameters(TokenValidationParameters other)
ConfigurationManager = other.ConfigurationManager;
CryptoProviderFactory = other.CryptoProviderFactory;
DebugId = other.DebugId;
IncludeTokenOnFailedValidation = other.IncludeTokenOnFailedValidation;
IgnoreTrailingSlashWhenValidatingAudience = other.IgnoreTrailingSlashWhenValidatingAudience;
IssuerSigningKey = other.IssuerSigningKey;
IssuerSigningKeyResolver = other.IssuerSigningKeyResolver;
Expand Down

0 comments on commit f704809

Please sign in to comment.