mirror of https://github.com/Squidex/squidex.git
2 changed files with 21 additions and 1 deletions
@ -0,0 +1,18 @@ |
|||
// ==========================================================================
|
|||
// Squidex Headless CMS
|
|||
// ==========================================================================
|
|||
// Copyright (c) Squidex UG (haftungsbeschränkt)
|
|||
// All rights reserved. Licensed under the MIT license.
|
|||
// ==========================================================================
|
|||
|
|||
using System.Reflection; |
|||
|
|||
#pragma warning disable RECS0014 // If all fields, properties and methods members are static, the class can be made static.
|
|||
|
|||
namespace Squidex.Infrastructure |
|||
{ |
|||
public sealed class SquidexInfrastructure |
|||
{ |
|||
public static readonly Assembly Assembly = typeof(SquidexInfrastructure).Assembly; |
|||
} |
|||
} |
|||
Loading…
Reference in new issue