File: E2EManifestJsonContext.cs
Web Access
Project: src\src\Components\Testing\tasks\Microsoft.AspNetCore.Components.Testing.Tasks.csproj (Microsoft.AspNetCore.Components.Testing.Tasks)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System.Text.Json;
using System.Text.Json.Serialization;
 
namespace Microsoft.AspNetCore.Components.Testing.Tasks;
 
[JsonSourceGenerationOptions(
    WriteIndented = true,
    DefaultIgnoreCondition = JsonIgnoreCondition.Never)]
[JsonSerializable(typeof(E2EManifestModel))]
internal partial class E2EManifestJsonContext : JsonSerializerContext
{
}