/
githubmirror
/
aspnetcore
Обзор
Документация
Войти
/
githubmirror
/
aspnetcore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Components/Testing/tasks/E2EManifestModel.cs
36 строк
1 KB
Javier Calvarro Nelson
[Blazor] Add Native AOT Components testing harness (#68289)
10 авг 2026, 15:11
Не верифицирован
10 авг 2026, 15:11
330e89c
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Collections.Generic; using System.Runtime.Serialization; namespace Microsoft.AspNetCore.Components.Testing.Tasks; [DataContract] internal class E2EManifestModel { [DataMember(Name = "apps")] public Dictionary<string, E2EAppEntryModel> Apps { get; set; } = new(); } [DataContract] internal class E2EAppEntryModel { [DataMember(Name = "executable")] public string Executable { get; set; } = ""; [DataMember(Name = "arguments")] public string Arguments { get; set; } = ""; [DataMember(Name = "workingDirectory")] public string WorkingDirectory { get; set; } = ""; [DataMember(Name = "publicUrl")] public string PublicUrl { get; set; } = ""; [DataMember(Name = "environmentVariables")] public Dictionary<string, string> EnvironmentVariables { get; set; } = new(); [DataMember(Name = "harnessMode")] public string HarnessMode { get; set; } = "startupHook"; }