Update of /cvsroot/mvp-xml/Common/v1/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3863/v1/src
Modified Files:
AssemblyInfo.cs Common.csproj changelog.txt
Log Message:
Added Serialization classes to the Common module.
Index: changelog.txt
===================================================================
RCS file: /cvsroot/mvp-xml/Common/v1/src/changelog.txt,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- changelog.txt 14 Nov 2004 01:24:29 -0000 1.2
+++ changelog.txt 4 Jan 2005 09:39:25 -0000 1.3
@@ -1,3 +1,9 @@
+January 04, 2005
+
+Added Serialization folder and classes.
+
+---------------------------------------------------------
+
November 13, 2004
Bug fix in XmlNodeListFactory. Thanks to Raneses, Jason.
Index: Common.csproj
===================================================================
RCS file: /cvsroot/mvp-xml/Common/v1/src/Common.csproj,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- Common.csproj 14 Nov 2004 01:24:29 -0000 1.6
+++ Common.csproj 4 Jan 2005 09:39:25 -0000 1.7
@@ -79,6 +79,16 @@
AssemblyName = "System.Xml"
HintPath = "C:\WINNT\Microsoft.NET\Framework\v1.1.4322\System.XML.dll"
/>
+ <Reference
+ Name = "System.Configuration.Install"
+ AssemblyName = "System.Configuration.Install"
+ HintPath = "C:\WINNT\Microsoft.NET\Framework\v1.1.4322\System.Configuration.Install.dll"
+ />
+ <Reference
+ Name = "System.Management"
+ AssemblyName = "System.Management"
+ HintPath = "C:\WINNT\Microsoft.NET\Framework\v1.1.4322\System.Management.dll"
+ />
</References>
</Build>
<Files>
@@ -153,6 +163,46 @@
BuildAction = "Compile"
/>
<File
+ RelPath = "Serialization\CacheKeyFactory.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
+ RelPath = "Serialization\PerfCounterInstaller.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
+ RelPath = "Serialization\PerfCounterInstaller.resx"
+ DependentUpon = "PerfCounterInstaller.cs"
+ BuildAction = "EmbeddedResource"
+ />
+ <File
+ RelPath = "Serialization\PerfCounterManager.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
+ RelPath = "Serialization\SignatureExtractor.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
+ RelPath = "Serialization\StringSorter.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
+ RelPath = "Serialization\XmlAttributeOverridesThumbprinter.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
+ RelPath = "Serialization\XmlSerializerCache.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
RelPath = "XPath\DynamicContext.cs"
SubType = "Code"
BuildAction = "Compile"
Index: AssemblyInfo.cs
===================================================================
RCS file: /cvsroot/mvp-xml/Common/v1/src/AssemblyInfo.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- AssemblyInfo.cs 27 Sep 2004 16:27:12 -0000 1.1
+++ AssemblyInfo.cs 4 Jan 2005 09:39:25 -0000 1.2
@@ -8,8 +8,8 @@
[assembly: CLSCompliant(true)]
[assembly: AssemblyTitle("Mvp.Xml")]
-[assembly: AssemblyDescription("MVP XML Library")]
-[assembly: AssemblyVersion("0.18.*")]
+[assembly: AssemblyDescription("MVP XML Library - Common Module")]
+[assembly: AssemblyVersion("0.9.*")]
[assembly: AssemblyDelaySign(false)]
[assembly: AssemblyKeyFile("")]
|