Skip to content

Commit 75e414b

Browse files
committed
feat(button): not getting appsettings cicd
1 parent 6c850db commit 75e414b

File tree

5 files changed

+0
-252
lines changed

5 files changed

+0
-252
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,57 +0,0 @@
1-
{
2-
/*!!! WARNING WE ARE USED TO PRIVATE APPSETTINGS THESE ARE NOT. THEY ARE CLIENTSIDE */
3-
/*!!! WARNING THIS IS IN SOURCE CONTROL IF ADDING A DB USE USERSECRETS */
4-
"APIs": {
5-
},
6-
7-
"Serilog": {
8-
"Using": [
9-
"Serilog.Sinks.BrowserConsole"
10-
],
11-
"MinimumLevel": {
12-
"Default": "Information",
13-
"Override": {
14-
"Microsoft": "Warning",
15-
"System": "Warning"
16-
}
17-
},
18-
"WriteTo": [
19-
//{
20-
// "Name": "Http",
21-
// "Args": {
22-
// "requestUri": "https://localhost:44350/api/lh-db/logs/InsertLogs",
23-
// "batchPostingLimit": 1000,
24-
// "queueLimitBytes": null,
25-
// "textFormatter": "Serilog.Formatting.Compact.CompactJsonFormatter, Serilog.Formatting.Compact",
26-
// "logEventLevel": "Verbose", // Minimum level for this sink (overrides global if more restrictive)
27-
// "batchSizeLimit": 20, // Send logs in batches of 20
28-
// "period": "00:00:10", // Send logs every 10 seconds (or sooner if batch size is reached)
29-
// "retryInterval": "00:00:30", // Retry sending failed batches after 30 seconds
30-
// "queueLimit": 1000, // Maximum number of queued log events
31-
// "bufferLimit": 500 // Maximum number of buffered log events
32-
// //"requestUriFactory": "Your.Custom.Namespace.CustomRequestUriFactory, Your.Assembly", // Optional: Custom request URI factory (see below)
33-
// //"batchFormatter": "Your.Custom.Namespace.CustomBatchFormatter, Your.Assembly", // Optional: Custom batch formatter (see below)
34-
// // "httpClient": { // Optional: Custom HTTP client configuration
35-
// // "timeout": "00:00:15" // 15-second timeout
36-
// // }
37-
// }
38-
//},
39-
{
40-
"Name": "BrowserConsole",
41-
"Args": {
42-
"formatter": "Serilog.Formatting.Compact.CompactJsonFormatter, Serilog.Formatting.Compact"
43-
}
44-
}
45-
],
46-
"Enrich": [ "FromLogContext", "WithMachineName", "WithProcessId", "WithThreadId" ],
47-
"Properties": {
48-
"Application": "TELBlazor ShowCase E2E Client",
49-
"Environment": "ci"
50-
}
51-
},
52-
"Properties": {
53-
"Application": "TELBlazor ShowCase E2E Client",
54-
"Environment": "ci"
55-
},
56-
"AllowedHosts": "*"
57-
}
Original file line numberDiff line numberDiff line change
@@ -1,79 +0,0 @@
1-
{
2-
/*!!! WARNING WE ARE USED TO PRIVATE APPSETTINGS THESE ARE NOT. THEY ARE CLIENTSIDE */
3-
/*!!! WARNING THIS IS IN SOURCE CONTROL IF ADDING A DB USE USERSECRETS */
4-
"APIs": {
5-
},
6-
"Serilog": {
7-
"Using": [
8-
//"Serilog.Sinks.Http",
9-
"Serilog.Sinks.Console",
10-
"Serilog.Sinks.Debug",
11-
"Serilog.Sinks.File"
12-
],
13-
"MinimumLevel": {
14-
"Default": "Information",
15-
"Override": {
16-
"Microsoft": "Warning",
17-
"System": "Warning"
18-
}
19-
},
20-
"WriteTo": [
21-
//{
22-
// "Name": "Http",
23-
// "Args": {
24-
// "requestUri": "https://localhost:44350/api/lh-db/logs/InsertLogs",
25-
// "batchPostingLimit": 1000,
26-
// "queueLimitBytes": null,
27-
// "textFormatter": "Serilog.Formatting.Compact.CompactJsonFormatter, Serilog.Formatting.Compact",
28-
// "logEventLevel": "Verbose", // Minimum level for this sink (overrides global if more restrictive)
29-
// "batchSizeLimit": 20, // Send logs in batches of 20
30-
// "period": "00:00:10", // Send logs every 10 seconds (or sooner if batch size is reached)
31-
// "retryInterval": "00:00:30", // Retry sending failed batches after 30 seconds
32-
// "queueLimit": 1000, // Maximum number of queued log events
33-
// "bufferLimit": 500 // Maximum number of buffered log events
34-
// //"requestUriFactory": "Your.Custom.Namespace.CustomRequestUriFactory, Your.Assembly", // Optional: Custom request URI factory (see below)
35-
// //"batchFormatter": "Your.Custom.Namespace.CustomBatchFormatter, Your.Assembly", // Optional: Custom batch formatter (see below)
36-
// // "httpClient": { // Optional: Custom HTTP client configuration
37-
// // "timeout": "00:00:15" // 15-second timeout
38-
// // }
39-
// }
40-
//},
41-
{
42-
"Name": "Console",
43-
"Args": {
44-
"formatter": "Serilog.Formatting.Compact.CompactJsonFormatter, Serilog.Formatting.Compact"
45-
//"theme": "Serilog.Sinks.SystemConsole.Themes.AnsiConsoleTheme::Code, Serilog.Sinks.Console"
46-
47-
48-
}
49-
},
50-
{
51-
"Name": "Debug",
52-
"Args": {
53-
"outputTemplate": "[{Timestamp:HH:mm:ss} {Level:u3}] {Message:lj}{NewLine}{Exception}"
54-
//"formatter": "Serilog.Formatting.Compact.CompactJsonFormatter, Serilog.Formatting.Compact"
55-
}
56-
},
57-
{
58-
"Name": "File",
59-
"Args": {
60-
"path": "Logs/log-development2-.txt",
61-
"rollingInterval": "Day",
62-
"rollOnFileSizeLimit": true,
63-
"formatter": "Serilog.Formatting.Compact.CompactJsonFormatter, Serilog.Formatting.Compact"
64-
}
65-
}
66-
],
67-
"Enrich": [ "FromLogContext", "WithMachineName", "WithProcessId", "WithThreadId" ],
68-
"Properties": {
69-
"Application": "E2E Blazor Server",
70-
"Environment": "ci"
71-
}
72-
},
73-
"Properties": {
74-
"Application": "E2E Blazor Server",
75-
"Environment": "ci"
76-
77-
},
78-
"AllowedHosts": "*"
79-
}

TELBlazor.Components.ShowCase.E2ETests.WasmServerHost/TELBlazor.Components.ShowCase.E2ETests.WasmServerHost/appsettings.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
{
2-
/*!!! WARNING WE ARE USED TO PRIVATE APPSETTINGS THESE ARE NOT. THEY ARE CLIENTSIDE */
3-
/*!!! WARNING THIS IS IN SOURCE CONTROL IF ADDING A DB USE USERSECRETS */
42
"APIs": {
53

64
},
Lines changed: 0 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -1,57 +0,0 @@
1-
{
2-
/*!!! WARNING WE ARE USED TO PRIVATE APPSETTINGS THESE ARE NOT. THEY ARE CLIENTSIDE */
3-
/*!!! WARNING THIS IS IN SOURCE CONTROL IF ADDING A DB USE USERSECRETS */
4-
"APIs": {
5-
},
6-
7-
"Serilog": {
8-
"Using": [
9-
"Serilog.Sinks.BrowserConsole"
10-
],
11-
"MinimumLevel": {
12-
"Default": "Information",
13-
"Override": {
14-
"Microsoft": "Warning",
15-
"System": "Warning"
16-
}
17-
},
18-
"WriteTo": [
19-
//{
20-
// "Name": "Http",
21-
// "Args": {
22-
// "requestUri": "https://localhost:44350/api/lh-db/logs/InsertLogs",
23-
// "batchPostingLimit": 1000,
24-
// "queueLimitBytes": null,
25-
// "textFormatter": "Serilog.Formatting.Compact.CompactJsonFormatter, Serilog.Formatting.Compact",
26-
// "logEventLevel": "Verbose", // Minimum level for this sink (overrides global if more restrictive)
27-
// "batchSizeLimit": 20, // Send logs in batches of 20
28-
// "period": "00:00:10", // Send logs every 10 seconds (or sooner if batch size is reached)
29-
// "retryInterval": "00:00:30", // Retry sending failed batches after 30 seconds
30-
// "queueLimit": 1000, // Maximum number of queued log events
31-
// "bufferLimit": 500 // Maximum number of buffered log events
32-
// //"requestUriFactory": "Your.Custom.Namespace.CustomRequestUriFactory, Your.Assembly", // Optional: Custom request URI factory (see below)
33-
// //"batchFormatter": "Your.Custom.Namespace.CustomBatchFormatter, Your.Assembly", // Optional: Custom batch formatter (see below)
34-
// // "httpClient": { // Optional: Custom HTTP client configuration
35-
// // "timeout": "00:00:15" // 15-second timeout
36-
// // }
37-
// }
38-
//},
39-
{
40-
"Name": "BrowserConsole",
41-
"Args": {
42-
"formatter": "Serilog.Formatting.Compact.CompactJsonFormatter, Serilog.Formatting.Compact"
43-
}
44-
}
45-
],
46-
"Enrich": [ "FromLogContext", "WithMachineName", "WithProcessId", "WithThreadId" ],
47-
"Properties": {
48-
"Application": "TELBlazor ShowCase Static Client",
49-
"Environment": "ci"
50-
}
51-
},
52-
"Properties": {
53-
"Application": "TELBlazor ShowCase Static Client",
54-
"Environment": "ci"
55-
},
56-
"AllowedHosts": "*"
57-
}
Lines changed: 0 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -1,57 +0,0 @@
1-
{
2-
/*!!! WARNING WE ARE USED TO PRIVATE APPSETTINGS THESE ARE NOT. THEY ARE CLIENTSIDE */
3-
/*!!! WARNING THIS IS IN SOURCE CONTROL IF ADDING A DB USE USERSECRETS */
4-
"APIs": {
5-
},
6-
7-
"Serilog": {
8-
"Using": [
9-
"Serilog.Sinks.BrowserConsole"
10-
],
11-
"MinimumLevel": {
12-
"Default": "Information",
13-
"Override": {
14-
"Microsoft": "Warning",
15-
"System": "Warning"
16-
}
17-
},
18-
"WriteTo": [
19-
//{
20-
// "Name": "Http",
21-
// "Args": {
22-
// "requestUri": "https://localhost:44350/api/lh-db/logs/InsertLogs",
23-
// "batchPostingLimit": 1000,
24-
// "queueLimitBytes": null,
25-
// "textFormatter": "Serilog.Formatting.Compact.CompactJsonFormatter, Serilog.Formatting.Compact",
26-
// "logEventLevel": "Verbose", // Minimum level for this sink (overrides global if more restrictive)
27-
// "batchSizeLimit": 20, // Send logs in batches of 20
28-
// "period": "00:00:10", // Send logs every 10 seconds (or sooner if batch size is reached)
29-
// "retryInterval": "00:00:30", // Retry sending failed batches after 30 seconds
30-
// "queueLimit": 1000, // Maximum number of queued log events
31-
// "bufferLimit": 500 // Maximum number of buffered log events
32-
// //"requestUriFactory": "Your.Custom.Namespace.CustomRequestUriFactory, Your.Assembly", // Optional: Custom request URI factory (see below)
33-
// //"batchFormatter": "Your.Custom.Namespace.CustomBatchFormatter, Your.Assembly", // Optional: Custom batch formatter (see below)
34-
// // "httpClient": { // Optional: Custom HTTP client configuration
35-
// // "timeout": "00:00:15" // 15-second timeout
36-
// // }
37-
// }
38-
//},
39-
{
40-
"Name": "BrowserConsole",
41-
"Args": {
42-
"formatter": "Serilog.Formatting.Compact.CompactJsonFormatter, Serilog.Formatting.Compact"
43-
}
44-
}
45-
],
46-
"Enrich": [ "FromLogContext", "WithMachineName", "WithProcessId", "WithThreadId" ],
47-
"Properties": {
48-
"Application": "TELBlazor Unit Tests",
49-
"Environment": "ci"
50-
}
51-
},
52-
"Properties": {
53-
"Application": "TELBlazor Unit Tests",
54-
"Environment": "ci"
55-
},
56-
"AllowedHosts": "*"
57-
}

0 commit comments

Comments
 (0)