-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a web.config file with a bindingredirect - it gets placed into …
…IdentityModelBindingIssue.Exe.Config (bin/debug/net472 folder) but the exception still remains
- Loading branch information
Marcel Studer
committed
Nov 13, 2018
1 parent
15f80e0
commit 4312b08
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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 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,23 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
|
||
<!-- To customize the asp.net core module uncomment and edit the following section. | ||
For more info see https://go.microsoft.com/fwlink/?linkid=838655 --> | ||
<!-- | ||
<system.webServer> | ||
<handlers> | ||
<remove name="aspNetCore"/> | ||
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified"/> | ||
</handlers> | ||
<aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" /> | ||
</system.webServer> | ||
--> | ||
<runtime> | ||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> | ||
<dependentAssembly> | ||
<assemblyIdentity name="IdentityModel" publicKeyToken="e7877f4675df049f" culture="neutral" /> | ||
<bindingRedirect oldVersion="0.0.0.0-3.10.0.0" newVersion="3.10.1.0" /> | ||
</dependentAssembly> | ||
</assemblyBinding> | ||
</runtime> | ||
</configuration> |