mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
13 lines
296 B
C#
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);
|
||
|
|
}
|
||
|
|
}
|