godot-module-template/engine/modules/mono/editor/Godot.NET.Sdk/Godot.SourceGenerators.Tests/Extensions.cs
2025-01-17 16:36:38 +01:00

13 lines
296 B
C#

using System.Reflection;
using Microsoft.CodeAnalysis;
namespace Godot.SourceGenerators.Tests;
public static class Extensions
{
public static MetadataReference CreateMetadataReference(this Assembly assembly)
{
return MetadataReference.CreateFromFile(assembly.Location);
}
}