mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-09-24 16:05:27 +00:00
19 lines
461 B
C#
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 |