mirror of
https://github.com/claunia/plist-cil.git
synced 2025-12-16 19:14:26 +00:00
* plist-cil/plist-cil.csproj: * plist-cil.test/plist-cil.test.csproj: * plist-cil/Properties/AssemblyInfo.cs: Bump to 1.14 (upstream r114). * plist-cil/PropertyListParser.cs: * plist-cil/ASCIIPropertyListParser.cs: Sync BOM skipping code with upstream. * plist-cil/BinaryPropertyListParser.cs: Sync code with upstream. Added UTF-8 string decoding on binary property lists.
28 lines
1004 B
C#
28 lines
1004 B
C#
using System.Reflection;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
// Information about this assembly is defined by the following attributes.
|
|
// Change them to the values specific to your project.
|
|
|
|
[assembly: AssemblyTitle("plist-cil")]
|
|
[assembly: AssemblyDescription("")]
|
|
[assembly: AssemblyConfiguration("")]
|
|
[assembly: AssemblyCompany("Claunia.com")]
|
|
[assembly: AssemblyProduct("")]
|
|
[assembly: AssemblyCopyright("© Claunia.com")]
|
|
[assembly: AssemblyTrademark("")]
|
|
[assembly: AssemblyCulture("")]
|
|
|
|
// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
|
|
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
|
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
|
|
|
[assembly: AssemblyVersion("1.14.0.0")]
|
|
|
|
// The following attributes are used to specify the signing key for the assembly,
|
|
// if desired. See the Mono documentation for more information about signing.
|
|
|
|
//[assembly: AssemblyDelaySign(false)]
|
|
//[assembly: AssemblyKeyFile("")]
|
|
|