mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
a414461570
* Re-enable ImplicitUsings in samples and clean up NoWarns * Fix dotnet format * More dotnet format * More dotnet format --------- Co-authored-by: Chris <66376200+crickman@users.noreply.github.com>
14 lines
352 B
C#
14 lines
352 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($"{ResourceFolder}/{fileName}");
|
|
}
|