[Rendering] Properly register Xenko.Rendering in AssemblyRegistry (fixes #409 and fixes #410)

This commit is contained in:
Virgile Bello 2019-03-14 08:15:27 +09:00
Родитель 559f0c4d80
Коммит 7be25ab4ac
1 изменённых файлов: 17 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,17 @@
// Copyright (c) Xenko contributors (https://xenko.com)
// Distributed under the MIT license. See the LICENSE.md file in the project root for more information.
using System.Reflection;
using Xenko.Core;
using Xenko.Core.Reflection;
namespace Xenko.Rendering
{
internal class Module
{
[ModuleInitializer]
public static void Initialize()
{
AssemblyRegistry.Register(typeof(Module).GetTypeInfo().Assembly, AssemblyCommonCategories.Assets);
}
}
}