mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
14 lines
386 B
C#
14 lines
386 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
namespace WorkflowSharedStatesSample;
|
|
|
|
/// <summary>
|
|
/// Resource helper to load resources.
|
|
/// </summary>
|
|
internal static class Resources
|
|
{
|
|
private const string ResourceFolder = "Resources";
|
|
|
|
public static string Read(string fileName) => File.ReadAllText(Path.Combine(AppContext.BaseDirectory, ResourceFolder, fileName));
|
|
}
|