Skip to content
Closed
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
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@

<PropertyGroup Label="Common dependency versions">
<MicrosoftIdentityModelVersion Condition="'$(MicrosoftIdentityModelVersion)' == ''">8.3.0</MicrosoftIdentityModelVersion>
<MicrosoftIdentityClientVersion Condition="'$(MicrosoftIdentityClientVersion)' == ''">4.66.2</MicrosoftIdentityClientVersion>
<MicrosoftIdentityClientVersion Condition="'$(MicrosoftIdentityClientVersion)' == ''">4.67.0</MicrosoftIdentityClientVersion>
<FxCopAnalyzersVersion>3.3.0</FxCopAnalyzersVersion>
<SystemTextEncodingsWebVersion>4.7.2</SystemTextEncodingsWebVersion>
<AzureSecurityKeyVaultSecretsVersion>4.6.0</AzureSecurityKeyVaultSecretsVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@
builder.WithClaims(tokenAcquisitionOptions.Claims);
if (tokenAcquisitionOptions.PoPConfiguration != null)
{
builder.WithProofOfPossession(tokenAcquisitionOptions.PoPConfiguration);
builder.WithSignedHttpRequestProofOfPossession(tokenAcquisitionOptions.PoPConfiguration);
}
if (!string.IsNullOrEmpty(tokenAcquisitionOptions.PopPublicKey))
{
Expand Down Expand Up @@ -982,7 +982,7 @@
builder.WithClaims(tokenAcquisitionOptions.Claims);
if (tokenAcquisitionOptions.PoPConfiguration != null)
{
builder.WithProofOfPossession(tokenAcquisitionOptions.PoPConfiguration);
builder.WithSignedHttpRequestProofOfPossession(tokenAcquisitionOptions.PoPConfiguration);
}
}

Expand Down Expand Up @@ -1139,7 +1139,7 @@
builder.WithClaims(tokenAcquisitionOptions.Claims);
if (tokenAcquisitionOptions.PoPConfiguration != null)
{
builder.WithProofOfPossession(tokenAcquisitionOptions.PoPConfiguration);
builder.WithSignedHttpRequestProofOfPossession(tokenAcquisitionOptions.PoPConfiguration);

Check failure on line 1142 in src/Microsoft.Identity.Web.TokenAcquisition/TokenAcquisition.cs

View workflow job for this annotation

GitHub Actions / Analyse

'AcquireTokenSilentParameterBuilder' does not contain a definition for 'WithSignedHttpRequestProofOfPossession' and no accessible extension method 'WithSignedHttpRequestProofOfPossession' accepting a first argument of type 'AcquireTokenSilentParameterBuilder' could be found (are you missing a using directive or an assembly reference?)

Check failure on line 1142 in src/Microsoft.Identity.Web.TokenAcquisition/TokenAcquisition.cs

View workflow job for this annotation

GitHub Actions / Build and run unit tests

'AcquireTokenSilentParameterBuilder' does not contain a definition for 'WithSignedHttpRequestProofOfPossession' and no accessible extension method 'WithSignedHttpRequestProofOfPossession' accepting a first argument of type 'AcquireTokenSilentParameterBuilder' could be found (are you missing a using directive or an assembly reference?)

Check failure on line 1142 in src/Microsoft.Identity.Web.TokenAcquisition/TokenAcquisition.cs

View workflow job for this annotation

GitHub Actions / Build and run unit tests

'AcquireTokenSilentParameterBuilder' does not contain a definition for 'WithSignedHttpRequestProofOfPossession' and no accessible extension method 'WithSignedHttpRequestProofOfPossession' accepting a first argument of type 'AcquireTokenSilentParameterBuilder' could be found (are you missing a using directive or an assembly reference?)

Check failure on line 1142 in src/Microsoft.Identity.Web.TokenAcquisition/TokenAcquisition.cs

View workflow job for this annotation

GitHub Actions / Build and run unit tests

'AcquireTokenSilentParameterBuilder' does not contain a definition for 'WithSignedHttpRequestProofOfPossession' and no accessible extension method 'WithSignedHttpRequestProofOfPossession' accepting a first argument of type 'AcquireTokenSilentParameterBuilder' could be found (are you missing a using directive or an assembly reference?)

Check failure on line 1142 in src/Microsoft.Identity.Web.TokenAcquisition/TokenAcquisition.cs

View workflow job for this annotation

GitHub Actions / Build and run unit tests

'AcquireTokenSilentParameterBuilder' does not contain a definition for 'WithSignedHttpRequestProofOfPossession' and no accessible extension method 'WithSignedHttpRequestProofOfPossession' accepting a first argument of type 'AcquireTokenSilentParameterBuilder' could be found (are you missing a using directive or an assembly reference?)

Check failure on line 1142 in src/Microsoft.Identity.Web.TokenAcquisition/TokenAcquisition.cs

View workflow job for this annotation

GitHub Actions / Build and run unit tests

'AcquireTokenSilentParameterBuilder' does not contain a definition for 'WithSignedHttpRequestProofOfPossession' and no accessible extension method 'WithSignedHttpRequestProofOfPossession' accepting a first argument of type 'AcquireTokenSilentParameterBuilder' could be found (are you missing a using directive or an assembly reference?)

Check failure on line 1142 in src/Microsoft.Identity.Web.TokenAcquisition/TokenAcquisition.cs

View workflow job for this annotation

GitHub Actions / Build and run unit tests

'AcquireTokenSilentParameterBuilder' does not contain a definition for 'WithSignedHttpRequestProofOfPossession' and no accessible extension method 'WithSignedHttpRequestProofOfPossession' accepting a first argument of type 'AcquireTokenSilentParameterBuilder' could be found (are you missing a using directive or an assembly reference?)

Check failure on line 1142 in src/Microsoft.Identity.Web.TokenAcquisition/TokenAcquisition.cs

View workflow job for this annotation

GitHub Actions / Build and run unit tests

'AcquireTokenSilentParameterBuilder' does not contain a definition for 'WithSignedHttpRequestProofOfPossession' and no accessible extension method 'WithSignedHttpRequestProofOfPossession' accepting a first argument of type 'AcquireTokenSilentParameterBuilder' could be found (are you missing a using directive or an assembly reference?)
}
}

Expand Down
Loading