21 lines
756 B
C#
21 lines
756 B
C#
using System.Reflection;
|
|
using System.Security;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
// General Information about an assembly is controlled through the following
|
|
// set of attributes. Change these attribute values to modify the information
|
|
// associated with an assembly.
|
|
|
|
[assembly: AssemblyTitle("Ionic's Zip Library for Silverlight")]
|
|
|
|
#if DEBUG
|
|
[assembly: AssemblyConfiguration("Debug")]
|
|
[assembly: AssemblyDescription("a Silverlight library for handling zip archives. http://DotNetZip.codeplex.com/ (Flavor=Debug)")]
|
|
#else
|
|
[assembly: AssemblyConfiguration("Retail")]
|
|
[assembly: AssemblyDescription("a Silverlight library for handling zip archives. http://DotNetZip.codeplex.com/ (Flavor=Retail)")]
|
|
#endif
|
|
|
|
[assembly: System.CLSCompliant(true)]
|
|
|