Files
sharpcompress/SharpCompress/AssemblyInfo.cs
2013-10-13 19:15:52 +04:00

19 lines
461 B
C#

using System.Reflection;
using System.Runtime.CompilerServices;
#if PORTABLE
[assembly: AssemblyTitle("SharpCompress.Portable")]
[assembly: AssemblyProduct("SharpCompress.Portable")]
#else
[assembly: AssemblyTitle("SharpCompress")]
[assembly: AssemblyProduct("SharpCompress")]
[assembly:
InternalsVisibleTo(
"SharpCompress.Test"
)]
[assembly:
InternalsVisibleTo(
"SharpCompress.Test.Portable"
)]
#endif