aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorcsharptest <roger@csharptest.net>2011-08-05 20:40:14 -0500
committerrogerk <devnull@localhost>2011-08-05 20:40:14 -0500
commit0f3540e24b7b5cf66b59b97cb824fd5449fb77b4 (patch)
treef07ad11ac6c814df0f6b8091eae023cf5f5d5cc1 /lib
parent304ff3a83823fdfce6e2eac40cc44e2b4b1fd3c3 (diff)
downloadprotobuf-0f3540e24b7b5cf66b59b97cb824fd5449fb77b4.tar.gz
protobuf-0f3540e24b7b5cf66b59b97cb824fd5449fb77b4.tar.bz2
protobuf-0f3540e24b7b5cf66b59b97cb824fd5449fb77b4.zip
Split off the Serialization namespace into a new assembly.
Diffstat (limited to 'lib')
-rw-r--r--lib/System.Core/ExtensionAttribute.cs7
-rw-r--r--lib/System.Core/System.Core.dllbin0 -> 3584 bytes
-rw-r--r--lib/System.Core/build.bat1
3 files changed, 8 insertions, 0 deletions
diff --git a/lib/System.Core/ExtensionAttribute.cs b/lib/System.Core/ExtensionAttribute.cs
new file mode 100644
index 00000000..fcb186f3
--- /dev/null
+++ b/lib/System.Core/ExtensionAttribute.cs
@@ -0,0 +1,7 @@
+
+namespace System.Runtime.CompilerServices
+{
+ /// <summary> Used for 2.0 compatibility </summary>
+ [AttributeUsage(AttributeTargets.Method)]
+ public sealed class ExtensionAttribute : Attribute { }
+}
diff --git a/lib/System.Core/System.Core.dll b/lib/System.Core/System.Core.dll
new file mode 100644
index 00000000..d34141b3
--- /dev/null
+++ b/lib/System.Core/System.Core.dll
Binary files differ
diff --git a/lib/System.Core/build.bat b/lib/System.Core/build.bat
new file mode 100644
index 00000000..13883e61
--- /dev/null
+++ b/lib/System.Core/build.bat
@@ -0,0 +1 @@
+c:\Windows\Microsoft.NET\Framework\v2.0.50727\csc /target:library /out:System.Core.dll /keyfile:..\..\keys\Google.ProtocolBuffers.snk ExtensionAttribute.cs