Added #nullable enable to `TagTransformerJsonHelper.cs` (#4724)

This commit is contained in:
Yun-Ting Lin 2023-08-01 17:15:42 -07:00 committed by GitHub
parent 909e52d4b1
commit f148e11896
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View File

@ -278,6 +278,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Shared", "Shared", "{A49299
src\Shared\StatusHelper.cs = src\Shared\StatusHelper.cs
src\Shared\TagAndValueTransformer.cs = src\Shared\TagAndValueTransformer.cs
src\Shared\TagTransformer.cs = src\Shared\TagTransformer.cs
src\Shared\TagTransformerJsonHelper.cs = src\Shared\TagTransformerJsonHelper.cs
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "DiagnosticSourceInstrumentation", "DiagnosticSourceInstrumentation", "{28F3EC79-660C-4659-8B73-F90DC1173316}"

View File

@ -14,6 +14,8 @@
// limitations under the License.
// </copyright>
#nullable enable
using System.Text.Json;
#if NET6_0_OR_GREATER
using System.Text.Json.Serialization;