git-subtree-dir: engine git-subtree-mainline:b74841629egit-subtree-split:a8e37fc010
12 lines
296 B
C#
12 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);
|
|
}
|
|
}
|