servuo/Scripts/AssemblyInfo.cs
VitaNex 482c4c4424 Added a global settings library that propagates settings to all child projects; this unifies assembly information generation throughout the project.
Updated .editorconfig file with advanced configuration settings that will help maintain user code style and best practices with most IDE's.
Complete core housekeeping operation using "Profile 1" with new .editorconfig settings.
2021-01-15 19:16:50 +00:00

20 lines
827 B
C#

using System.Reflection;
using System.Runtime.InteropServices;
[assembly: AssemblyVersion(ServUO.Constants.Assembly.Version)]
[assembly: AssemblyFileVersion(ServUO.Constants.Assembly.Version)]
[assembly: AssemblyTitle(ServUO.Constants.Assembly.Title)]
[assembly: AssemblyDescription(ServUO.Constants.Assembly.Description)]
[assembly: AssemblyCompany(ServUO.Constants.Assembly.Company)]
[assembly: AssemblyProduct(ServUO.Constants.Assembly.Product)]
[assembly: AssemblyCopyright(ServUO.Constants.Assembly.Copyright)]
[assembly: AssemblyTrademark(ServUO.Constants.Assembly.Trademark)]
[assembly: AssemblyCulture(ServUO.Constants.Assembly.Culture)]
[assembly: AssemblyConfiguration(ServUO.Constants.Assembly.Config)]
[assembly: ComVisible(false)]
[assembly: Guid("1299e2a3-050b-425b-b593-6be69ae004d5")]