Virtu/Library/AssemblyMetadataAttribute.cs
Sean Fausett 52f3cadfe1 Upgraded to Visual Studio 2012.
Upgraded Wpf to .NET Framework 4.5.
Removed Silverlight.Phone projects.
Removed Xna, Xna.Phone and Xna.Xbox projects. RIP.

--HG--
rename : Library/AssemblyCommentAttribute.cs => Library/AssemblyMetadataAttribute.cs
2012-07-19 00:48:24 +12:00

18 lines
466 B
C#

using System;
namespace Jellyfish.Library
{
[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true, Inherited = false)]
public sealed class AssemblyMetadataAttribute : Attribute
{
public AssemblyMetadataAttribute(string key, string value)
{
Key = key;
Value = value;
}
public string Key { get; private set; }
public string Value { get; private set; }
}
}