Добавлена возможность получать доступ к шаблонам через встроенный ресурс
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
// <auto-generated/>
|
||||
using System.Collections.Generic;
|
||||
using System.Reflection;
|
||||
using mROA.Abstract;
|
||||
using mROA.Implementation;
|
||||
using System;
|
||||
using System.Threading;
|
||||
|
||||
namespace mROA.Codegen
|
||||
{
|
||||
public class CoCodegenMethodRepository : IMethodRepository
|
||||
{
|
||||
private readonly List<IMethodInvoker> _methods = new () {
|
||||
<!I invoker>
|
||||
};
|
||||
|
||||
public IMethodInvoker GetMethod(int id)
|
||||
{
|
||||
if (id == -1)
|
||||
return mROA.Implementation.MethodInvoker.Dispose;
|
||||
|
||||
if (_methods.Count <= id)
|
||||
return null;
|
||||
|
||||
return _methods[id];
|
||||
}
|
||||
|
||||
public void Inject<T>(T dependency)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -34,7 +34,10 @@
|
||||
|
||||
<ItemGroup>
|
||||
<None Remove="test.tpt" />
|
||||
<EmbeddedResource Include="test.tpt" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\mROA.CodegenTools\mROA.CodegenTools.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
test text
|
||||
Reference in New Issue
Block a user