/ src / settings-ui / QuickAccess.UI / Helpers / ResourceLoaderInstance.cs
ResourceLoaderInstance.cs
 1  // Copyright (c) Microsoft Corporation
 2  // The Microsoft Corporation licenses this file to you under the MIT license.
 3  // See the LICENSE file in the project root for more information.
 4  
 5  using Microsoft.Windows.ApplicationModel.Resources;
 6  
 7  namespace Microsoft.PowerToys.QuickAccess.Helpers;
 8  
 9  internal static class ResourceLoaderInstance
10  {
11      internal static ResourceLoader ResourceLoader { get; } = new("PowerToys.QuickAccess.pri");
12  }