22 lines
725 B
C#
22 lines
725 B
C#
//
|
|
// Copyright (c) 2017 Anthony Marmont. All rights reserved.
|
|
// Licensed for use under the Unity Asset Store EULA. See https://unity3d.com/legal/as_terms for full license information.
|
|
//
|
|
|
|
#if ASSETICONS_ASMDEF
|
|
#pragma warning disable
|
|
|
|
using AssetIcons;
|
|
using System.Reflection;
|
|
|
|
[assembly: AssemblyTitle("AssetIcons")]
|
|
[assembly: AssemblyDescription(ProductInformation.Description)]
|
|
[assembly: AssemblyCopyright(ProductInformation.Copyright)]
|
|
[assembly: AssemblyCompany(ProductInformation.Author)]
|
|
[assembly: AssemblyVersion(ProductInformation.Version)]
|
|
[assembly: AssemblyFileVersion(ProductInformation.Version)]
|
|
[assembly: AssemblyInformationalVersion(ProductInformation.Version)]
|
|
|
|
#pragma warning restore
|
|
#endif
|