mirror of
https://github.com/digital-jellyfish/Virtu.git
synced 2025-02-21 01:29:02 +00:00
Added save state support to all machine components. Switched from xml serialization to binary serialization. Refactored audio service for performance. Bumped machine version to 0.9.0 for next release. Miscellaneous cosmetic or minor changes.
23 lines
801 B
C#
23 lines
801 B
C#
using System;
|
|
using System.Reflection;
|
|
using System.Resources;
|
|
using System.Runtime.InteropServices;
|
|
using Jellyfish.Library;
|
|
|
|
[assembly: AssemblyTitle("Library")]
|
|
[assembly: AssemblyDescription("Common Library")]
|
|
[assembly: AssemblyProduct("Jellyfish.Library.Silverlight")]
|
|
[assembly: AssemblyCompany("Digital Jellyfish Design Ltd")]
|
|
[assembly: AssemblyCopyright("Copyright © 2009-2010 Digital Jellyfish Design Ltd")]
|
|
[assembly: AssemblyComment("Developed by Sean Fausett")]
|
|
|
|
[assembly: AssemblyVersion("0.2.0.0")]
|
|
[assembly: AssemblyFileVersion("0.2.0.0")]
|
|
[assembly: AssemblyInformationalVersion("0.2.0.0")]
|
|
|
|
[assembly: CLSCompliant(false)]
|
|
[assembly: ComVisible(false)]
|
|
[assembly: Guid("66034b9e-9f0b-47b0-aac4-cade9a748891")]
|
|
|
|
[assembly: NeutralResourcesLanguage("en")]
|