/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/perf/dotnet-tools/Reporting/Build.cs
31 строка
828 B
Dongbo Wang
Add the performance benchmark project for PowerShell performance testing (#15242)
30 апр 2021, 19:34
Не верифицирован
30 апр 2021, 19:34
a62c9d9
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Runtime.Serialization; using System.Text; namespace Reporting { public sealed class Build { public string Repo { get; set; } public string Branch { get; set; } public string Architecture { get; set; } public string Locale { get; set; } public string GitHash { get; set; } public string BuildName { get; set; } public DateTime TimeStamp { get; set; } public Dictionary<string, string> AdditionalData { get; set; } = new Dictionary<string, string>(); } }