-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAssemblyInfo.cs
More file actions
17 lines (16 loc) · 823 Bytes
/
AssemblyInfo.cs
File metadata and controls
17 lines (16 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using System.Reflection;
using System.Security.Permissions;
using CustomMapUtility;
[assembly: System.Reflection.AssemblyCompanyAttribute("uGuardian")]
#if DEBUG
#warning DEBUG
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
#else
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
#endif
[assembly: System.Reflection.AssemblyFileVersionAttribute(CustomMapHandler.ModResources.CacheInit.version)]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute(CustomMapHandler.ModResources.CacheInit.version)]
[assembly: System.Reflection.AssemblyProductAttribute("CustomMapUtility")]
[assembly: System.Reflection.AssemblyTitleAttribute("CustomMapUtility")]
[assembly: System.Reflection.AssemblyVersionAttribute(CustomMapHandler.ModResources.CacheInit.version)]