// Copyright (c) Microsoft. All rights reserved. namespace WorkflowSharedStatesSample; /// /// Resource helper to load resources. /// internal static class Resources { private const string ResourceFolder = "Resources"; public static string Read(string fileName) => File.ReadAllText(Path.Combine(AppContext.BaseDirectory, ResourceFolder, fileName)); }