Skip to content

Commit 80e644f

Browse files
committed
Update AssemblyInfo.cs files to include logging categories for all Steeltoe assemblies
1 parent 9aa324d commit 80e644f

40 files changed

Lines changed: 413 additions & 0 deletions

File tree

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"definitions": {
3+
"logLevel": {
4+
"properties": {
5+
"Steeltoe": {
6+
"$ref": "#/definitions/logLevelThreshold"
7+
},
8+
"Steeltoe.Bootstrap": {
9+
"$ref": "#/definitions/logLevelThreshold"
10+
},
11+
"Steeltoe.Bootstrap.AutoConfiguration": {
12+
"$ref": "#/definitions/logLevelThreshold"
13+
}
14+
}
15+
}
16+
}
17+
}

src/Bootstrap/src/AutoConfiguration/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,8 @@
33
// See the LICENSE file in the project root for more information.
44

55
using System.Runtime.CompilerServices;
6+
using Aspire;
7+
8+
[assembly: LoggingCategories("Steeltoe", "Steeltoe.Bootstrap", "Steeltoe.Bootstrap.AutoConfiguration")]
69

710
[assembly: InternalsVisibleTo("Steeltoe.Bootstrap.AutoConfiguration.Test")]
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"definitions": {
3+
"logLevel": {
4+
"properties": {
5+
"Steeltoe": {
6+
"$ref": "#/definitions/logLevelThreshold"
7+
},
8+
"Steeltoe.Common": {
9+
"$ref": "#/definitions/logLevelThreshold"
10+
}
11+
}
12+
}
13+
}
14+
}

src/Common/src/Common/Properties/AssemblyInfo.cs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
// See the LICENSE file in the project root for more information.
44

55
using System.Runtime.CompilerServices;
6+
using Aspire;
67

78
[assembly: InternalsVisibleTo("Steeltoe.Bootstrap.AutoConfiguration")]
89
[assembly: InternalsVisibleTo("Steeltoe.Bootstrap.AutoConfiguration.Test")]
@@ -11,13 +12,18 @@
1112
[assembly: InternalsVisibleTo("Steeltoe.Common.Hosting")]
1213
[assembly: InternalsVisibleTo("Steeltoe.Common.Hosting.Test")]
1314
[assembly: InternalsVisibleTo("Steeltoe.Common.Http")]
15+
[assembly: InternalsVisibleTo("Steeltoe.Common.Logging")]
16+
[assembly: InternalsVisibleTo("Steeltoe.Common.Net")]
1417
[assembly: InternalsVisibleTo("Steeltoe.Common.Test")]
18+
[assembly: InternalsVisibleTo("Steeltoe.Configuration.Abstractions")]
1519
[assembly: InternalsVisibleTo("Steeltoe.Configuration.CloudFoundry")]
1620
[assembly: InternalsVisibleTo("Steeltoe.Configuration.CloudFoundry.Test")]
1721
[assembly: InternalsVisibleTo("Steeltoe.Configuration.ConfigServer")]
1822
[assembly: InternalsVisibleTo("Steeltoe.Configuration.Encryption")]
1923
[assembly: InternalsVisibleTo("Steeltoe.Configuration.Kubernetes.ServiceBindings")]
2024
[assembly: InternalsVisibleTo("Steeltoe.Configuration.Placeholder")]
25+
[assembly: InternalsVisibleTo("Steeltoe.Configuration.RandomValue")]
26+
[assembly: InternalsVisibleTo("Steeltoe.Configuration.SpringBoot")]
2127
[assembly: InternalsVisibleTo("Steeltoe.Connectors")]
2228
[assembly: InternalsVisibleTo("Steeltoe.Connectors.EntityFrameworkCore")]
2329
[assembly: InternalsVisibleTo("Steeltoe.Discovery.Configuration")]
@@ -38,6 +44,11 @@
3844
[assembly: InternalsVisibleTo("Steeltoe.Management.Tasks")]
3945
[assembly: InternalsVisibleTo("Steeltoe.Management.Tracing")]
4046
[assembly: InternalsVisibleTo("Steeltoe.Management.Tracing.Test")]
47+
[assembly: InternalsVisibleTo("Steeltoe.Security.Authentication.JwtBearer")]
4148
[assembly: InternalsVisibleTo("Steeltoe.Security.Authentication.CloudFoundry.Test")]
49+
[assembly: InternalsVisibleTo("Steeltoe.Security.Authentication.OpenIdConnect")]
4250
[assembly: InternalsVisibleTo("Steeltoe.Security.Authorization.Certificate")]
51+
[assembly: InternalsVisibleTo("Steeltoe.Security.DataProtection.Redis")]
4352
[assembly: InternalsVisibleTo("DynamicProxyGenAssembly2")]
53+
54+
[assembly: LoggingCategories("Steeltoe", "Steeltoe.Common")]
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"definitions": {
3+
"logLevel": {
4+
"properties": {
5+
"Steeltoe": {
6+
"$ref": "#/definitions/logLevelThreshold"
7+
},
8+
"Steeltoe.Common": {
9+
"$ref": "#/definitions/logLevelThreshold"
10+
},
11+
"Steeltoe.Common.Hosting": {
12+
"$ref": "#/definitions/logLevelThreshold"
13+
}
14+
}
15+
}
16+
}
17+
}

src/Common/src/Hosting/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
// See the LICENSE file in the project root for more information.
44

55
using System.Runtime.CompilerServices;
6+
using Aspire;
7+
8+
[assembly: LoggingCategories("Steeltoe", "Steeltoe.Common", "Steeltoe.Common.Hosting")]
69

710
[assembly: InternalsVisibleTo("Steeltoe.Bootstrap.AutoConfiguration")]
811
[assembly: InternalsVisibleTo("Steeltoe.Common.Hosting.Test")]
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"definitions": {
3+
"logLevel": {
4+
"properties": {
5+
"Steeltoe": {
6+
"$ref": "#/definitions/logLevelThreshold"
7+
},
8+
"Steeltoe.Common": {
9+
"$ref": "#/definitions/logLevelThreshold"
10+
},
11+
"Steeltoe.Common.Http": {
12+
"$ref": "#/definitions/logLevelThreshold"
13+
}
14+
}
15+
}
16+
}
17+
}

src/Common/src/Http/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
// See the LICENSE file in the project root for more information.
44

55
using System.Runtime.CompilerServices;
6+
using Aspire;
7+
8+
[assembly: LoggingCategories("Steeltoe", "Steeltoe.Common", "Steeltoe.Common.Http")]
69

710
[assembly: InternalsVisibleTo("Steeltoe.Common.Http.Test")]
811
[assembly: InternalsVisibleTo("Steeltoe.Configuration.ConfigServer")]
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"definitions": {
3+
"logLevel": {
4+
"properties": {
5+
"Steeltoe": {
6+
"$ref": "#/definitions/logLevelThreshold"
7+
},
8+
"Steeltoe.Common": {
9+
"$ref": "#/definitions/logLevelThreshold"
10+
},
11+
"Steeltoe.Common.Logging": {
12+
"$ref": "#/definitions/logLevelThreshold"
13+
}
14+
}
15+
}
16+
}
17+
}

src/Common/src/Logging/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
// See the LICENSE file in the project root for more information.
44

55
using System.Runtime.CompilerServices;
6+
using Aspire;
7+
8+
[assembly: LoggingCategories("Steeltoe", "Steeltoe.Common", "Steeltoe.Common.Logging")]
69

710
[assembly: InternalsVisibleTo("Steeltoe.Bootstrap.AutoConfiguration")]
811
[assembly: InternalsVisibleTo("Steeltoe.Common.Logging.Test")]

0 commit comments

Comments
 (0)