Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/rx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Rx.NET/System.Reactive.Interfaces/AssemblyFileVersionAttribute.cs')
-rw-r--r--Rx.NET/System.Reactive.Interfaces/AssemblyFileVersionAttribute.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/Rx.NET/System.Reactive.Interfaces/AssemblyFileVersionAttribute.cs b/Rx.NET/System.Reactive.Interfaces/AssemblyFileVersionAttribute.cs
new file mode 100644
index 0000000..a12fbdf
--- /dev/null
+++ b/Rx.NET/System.Reactive.Interfaces/AssemblyFileVersionAttribute.cs
@@ -0,0 +1,22 @@
+// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
+
+#if NO_ASSEMBLYFILEVERSIONATTRIBUTE
+namespace System.Reflection
+{
+ [AttributeUsage(AttributeTargets.Assembly)]
+ public class AssemblyFileVersionAttribute : Attribute
+ {
+ private readonly string _version;
+
+ public AssemblyFileVersionAttribute(string version)
+ {
+ _version = version;
+ }
+
+ public string Version
+ {
+ get { return _version; }
+ }
+ }
+}
+#endif \ No newline at end of file