microsoft/teams.net

Public

mirrored fromhttps://github.com/microsoft/teams.netAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
cg/sovereign-cloud-nextcore

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

core/test/ABSTokenServiceClient/appsettings.json

28lines · modecode

1
2{
3 "Logging": {
4 "LogLevel": {
5 "Default": "Warning",
6 "Program": "Information",
7 "ABSTokenServiceClient.UserTokenCLIService": "Information"
8 }
9 },
10 "Console": {
11 "FormatterName": "simple",
12 "FormatterOptions": {
13 "SingleLine": true,
14 "TimestampFormat": "HH:mm:ss:ms "
15 }
16 },
17 "AzureAd": {
18 "Instance": "https://login.microsoftonline.com/",
19 "TenantId": "your-tenant-id-here",
20 "ClientId": "your-client-id-here",
21 "ClientCredentials": [
22 {
23 "SourceType": "ClientSecret",
24 "ClientSecret": "your-client-secret-here"
25 }
26 ]
27 }
28}
29