mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-23 23:20:05 +01:00
* WIP Hosts - remove deps * Add consumer app * Move App and MainWindow to Consumer app. Make Hosts dll * Try consume it * Fix errors * Make it work with custom build targets * Dependency injection Refactor Explicit page creation Wire missing dependencies * Fix installer * Remove unneeded stuff * Fix build again * Extract UI and logic from MainWindow to RegistryPreviewMainPage * Convert to lib Change namespace to RegistryPreviewUILib Remove PT deps * Add exe app and move App.xaml and MainWindow.xaml * Consume the lib * Update Hosts package creation * Fix RegistryPreview package creation * Rename RegistryPreviewUI back to RegistryPreview * Back to consuming lib * Ship icons and assets in nuget packages * Rename to EnvironmentVariablesUILib and convert to lib * Add app and consume * Telemetry * GPO * nuget * Rename HostsPackageConsumer to Hosts and Hosts lib to HostsUILib * Assets cleanup * nuget struct * v0 * assets * [Hosts] Re-add AppList to Lib Assets, [RegPrev] Copy lib assets to out dir * Sign UI dlls * Revert WinUIEx bump * Cleanup * Align deps * version exception dll * Fix RegistryPreview crashes * XAML format * XAML format 2 * Pack .pri files in lib/ dir --------- Co-authored-by: Darshak Bhatti <dabhatti@microsoft.com>
38 lines
1.1 KiB
C#
38 lines
1.1 KiB
C#
// Copyright (c) Microsoft Corporation
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
|
|
namespace HostsUILib.Models
|
|
{
|
|
/// <summary>
|
|
/// Represents the parsed hosts file
|
|
/// </summary>
|
|
public class HostsData
|
|
{
|
|
/// <summary>
|
|
/// Gets the parsed entries
|
|
/// </summary>
|
|
public ReadOnlyCollection<Entry> Entries { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the lines that couldn't be parsed
|
|
/// </summary>
|
|
public string AdditionalLines { get; }
|
|
|
|
/// <summary>
|
|
/// Gets a value indicating whether some entries been splitted
|
|
/// </summary>
|
|
public bool SplittedEntries { get; }
|
|
|
|
public HostsData(List<Entry> entries, string additionalLines, bool splittedEntries)
|
|
{
|
|
Entries = entries.AsReadOnly();
|
|
AdditionalLines = additionalLines;
|
|
SplittedEntries = splittedEntries;
|
|
}
|
|
}
|
|
}
|