Added #nullable enable to `TagTransformerJsonHelper.cs` (#4724)
This commit is contained in:
parent
909e52d4b1
commit
f148e11896
|
|
@ -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}"
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue