mirror of
https://github.com/StudentBlake/XCI-Explorer
synced 2024-11-25 21:40:24 +00:00
37e1d37823
Capping it at 20 was too small. I've raised the cap to 100. Needs more testing to see if it break anything else
20 lines
802 B
C#
20 lines
802 B
C#
using System.Diagnostics;
|
|
using System.Reflection;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Runtime.InteropServices;
|
|
using System.Runtime.Versioning;
|
|
|
|
[assembly: CompilationRelaxations(8)]
|
|
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
|
|
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
|
|
[assembly: AssemblyTitle("XCI Explorer")]
|
|
[assembly: AssemblyDescription("")]
|
|
[assembly: AssemblyConfiguration("")]
|
|
[assembly: AssemblyCompany("")]
|
|
[assembly: AssemblyProduct("XCI Explorer")]
|
|
[assembly: AssemblyCopyright("Copyright © 2018")]
|
|
[assembly: AssemblyTrademark("")]
|
|
[assembly: ComVisible(false)]
|
|
[assembly: Guid("206c6c47-87b1-477f-b6e6-f7e7c1a92f8f")]
|
|
[assembly: AssemblyFileVersion("1.4.3.0")]
|
|
[assembly: AssemblyVersion("1.4.3.0")]
|