mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-17 05:25:28 +00:00
20 lines
529 B
C#
20 lines
529 B
C#
using System.Reflection;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
#if SILVERLIGHT
|
|
[assembly: AssemblyTitle("SharpCompress.Silverlight")]
|
|
[assembly: AssemblyProduct("SharpCompress.Silverlight")]
|
|
#else
|
|
#if PORTABLE
|
|
[assembly: AssemblyTitle("SharpCompress.Silverlight")]
|
|
[assembly: AssemblyProduct("SharpCompress.Silverlight")]
|
|
#else
|
|
|
|
[assembly: AssemblyTitle("SharpCompress")]
|
|
[assembly: AssemblyProduct("SharpCompress")]
|
|
[assembly:
|
|
InternalsVisibleTo(
|
|
"SharpCompress.Test"
|
|
)]
|
|
#endif
|
|
#endif |