-
Notifications
You must be signed in to change notification settings - Fork 401
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merged PR 10242: Update Dev6x to fix the release build
#### AI-Generated Description The pull request contains two changes: - In file **LogMessages.cs**, a line of code that defines a constant string for a JSON depth error message is removed. - In file **Microsoft.IdentityModel.AotCompatibility.Tests.csproj**, a line of code that sets the language version to 10 is added.
- Loading branch information
Jean-Marc Prieur
authored and
Brent Schmaltz
committed
Oct 16, 2023
1 parent
4845cf1
commit 74cc160
Showing
14 changed files
with
99 additions
and
398 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,49 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
|
||
<!-- Customised run settings file to exclude test assemblies from coverage. | ||
See https://msdn.microsoft.com/en-us/library/jj159530.aspx for more info. --> | ||
|
||
<!-- File name extension must be .runsettings --> | ||
<RunSettings> | ||
<DataCollectionRunSettings> | ||
<DataCollectors> | ||
<DataCollector friendlyName="Code Coverage" uri="datacollector://Microsoft/CodeCoverage/2.0" assemblyQualifiedName="Microsoft.VisualStudio.Coverage.DynamicCoverageDataCollector, Microsoft.VisualStudio.TraceCollector, Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> | ||
<Configuration> | ||
<CodeCoverage> | ||
|
||
<!-- | ||
About include/exclude lists: | ||
Empty "Include" clauses imply all; empty "Exclude" clauses imply none. | ||
Each element in the list is a regular expression (ECMAScript syntax). See http://msdn.microsoft.com/library/2k3te2cs.aspx. | ||
An item must first match at least one entry in the include list to be included. | ||
Included items must then not match any entries in the exclude list to remain included. | ||
--> | ||
|
||
<!-- Match assembly file paths: --> | ||
<ModulePaths> | ||
<Include> | ||
<ModulePath>.*\microsoft.identitymodel.abstractions.dll</ModulePath> | ||
<ModulePath>.*\microsoft.identitymodel.jsonwebtokens.dll</ModulePath> | ||
<ModulePath>.*\microsoft.identitymodel.keyvaultextensions.dll</ModulePath> | ||
<ModulePath>.*\microsoft.identitymodel.logging.dll</ModulePath> | ||
<ModulePath>.*\microsoft.identitymodel.loggingextensions.dll</ModulePath> | ||
<ModulePath>.*\microsoft.identitymodel.managedkeyvaultsecuritykey.dll</ModulePath> | ||
<ModulePath>.*\microsoft.identitymodel.protocols.openidconnect.dll</ModulePath> | ||
<ModulePath>.*\microsoft.identitymodel.protocols.signedhttprequest.dll</ModulePath> | ||
<ModulePath>.*\microsoft.identitymodel.protocols.wsfederation.dll</ModulePath> | ||
<ModulePath>.*\microsoft.identitymodel.protocols.dll</ModulePath> | ||
<ModulePath>.*\microsoft.identitymodel.testextensions.dll</ModulePath> | ||
<ModulePath>.*\microsoft.identitymodel.tokens.saml.dll</ModulePath> | ||
<ModulePath>.*\microsoft.identitymodel.tokens.dll</ModulePath> | ||
<ModulePath>.*\microsoft.identitymodel.validators.dll</ModulePath> | ||
<ModulePath>.*\microsoft.identitymodel.xml.dll</ModulePath> | ||
<ModulePath>.*\system.identitymodel.tokens.jwt.dll</ModulePath> | ||
</Include> | ||
</ModulePaths> | ||
|
||
</CodeCoverage> | ||
</Configuration> | ||
</DataCollector> | ||
</DataCollectors> | ||
</DataCollectionRunSettings> | ||
</RunSettings> |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.