This repository has been archived by the owner on Jun 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 214
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #149 from AzureAD/servicing
Servicing release 2.14.201151115
- Loading branch information
Showing
46 changed files
with
1,585 additions
and
57 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
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
18 changes: 0 additions & 18 deletions
18
build/Microsoft.IdentityModel.Clients.ActiveDirectory.nuspec
This file was deleted.
Oops, something went wrong.
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
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
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
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,56 @@ | ||
//---------------------------------------------------------------------- | ||
// Copyright (c) Microsoft Open Technologies, Inc. | ||
// All Rights Reserved | ||
// Apache License 2.0 | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
//---------------------------------------------------------------------- | ||
|
||
using System; | ||
|
||
namespace Microsoft.IdentityModel.Clients.ActiveDirectory | ||
{ | ||
internal partial class Logger | ||
{ | ||
internal static void Verbose(CallState callState, string arg, [System.Runtime.CompilerServices.CallerFilePath] string callerFilePath = "") | ||
{ | ||
Verbose(callState, callerFilePath, "{0}", new object[] { arg }); | ||
} | ||
|
||
internal static void Information(CallState callState, string arg, [System.Runtime.CompilerServices.CallerFilePath] string callerFilePath = "") | ||
{ | ||
Information(callState, callerFilePath, "{0}", new object[] { arg }); | ||
} | ||
|
||
internal static void Information(CallState callState, string format, object arg, [System.Runtime.CompilerServices.CallerFilePath] string callerFilePath = "") | ||
{ | ||
Information(callState, callerFilePath, format, new [] { arg }); | ||
} | ||
|
||
internal static void Information(CallState callState, string format, object arg, object arg2, object arg3, object arg4, [System.Runtime.CompilerServices.CallerFilePath] string callerFilePath = "") | ||
{ | ||
Information(callState, callerFilePath, format, new [] { arg, arg2, arg3, arg4 }); | ||
} | ||
|
||
internal static void Warning(CallState callState, string arg, [System.Runtime.CompilerServices.CallerFilePath] string callerFilePath = "") | ||
{ | ||
Warning(callState, callerFilePath, "{0}", new object[] { arg }); | ||
} | ||
|
||
internal static void Warning(CallState callState, string format, object arg, object arg2, [System.Runtime.CompilerServices.CallerFilePath] string callerFilePath = "") | ||
{ | ||
Warning(callState, callerFilePath, format, new[] { arg, arg2 }); | ||
} | ||
|
||
} | ||
} |
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
Oops, something went wrong.