Merge pull request #449 from chlupac/LoadOptimalization

Simplified loading of oqtane assemblies
This commit is contained in:
Shaun Walker
2020-05-07 15:09:32 -04:00
committed by GitHub
31 changed files with 227 additions and 178 deletions

View File

@ -0,0 +1,9 @@
using System;
namespace Oqtane.Shared
{
[AttributeUsage(AttributeTargets.Class)]
public class OqtaneIgnoreAttribute : Attribute
{
}
}