mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-13 21:22:22 +00:00
21 lines
492 B
C#
21 lines
492 B
C#
using System;
|
|
using System.Reflection;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
|
|
#if PORTABLE
|
|
[assembly: AssemblyTitle("SharpCompress.Portable")]
|
|
[assembly: AssemblyProduct("SharpCompress.Portable")]
|
|
#else
|
|
|
|
[assembly: AssemblyTitle("SharpCompress")]
|
|
[assembly: AssemblyProduct("SharpCompress")]
|
|
#endif
|
|
|
|
#if UNSIGNED
|
|
[assembly: InternalsVisibleTo("SharpCompress.Test")]
|
|
[assembly: InternalsVisibleTo("SharpCompress.Test.Portable")]
|
|
#endif
|
|
|
|
[assembly: CLSCompliant(true)]
|