[Hosts]Add setting to select the file encoding (#26495)

This commit is contained in:
Davide Giacometti
2023-06-06 17:11:37 +02:00
committed by GitHub
parent 177c58f494
commit 9960d2d536
10 changed files with 68 additions and 13 deletions

View File

@@ -4,7 +4,7 @@
namespace Settings.UI.Library.Enumerations
{
public enum AdditionalLinesPosition
public enum HostsAdditionalLinesPosition
{
Top = 0,
Bottom = 1,

View File

@@ -0,0 +1,12 @@
// 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.
namespace Settings.UI.Library.Enumerations
{
public enum HostsEncoding
{
Utf8 = 0,
Utf8Bom = 1,
}
}