Sunday, January 14, 2007
Monday, January 01, 2007
VS2005 Web Project File References
One big differece with VS2003 and VS2005 is that web projects do not contain a project file. For those of you that do not store assemblies in vss and maybe even use a compile server, this may seem like a problem. It turns out that it is not. All project references that the web project previously stored are now stored in the solution file. It should be safe to say that a web site only exists in one solution, so there does not seem to be a problem. Update the compile server and run msbuild to generate a PrecompiledWeb folder of the web app. (another nice addition to VS2005)
Posted by Vince Roche at 12:46 PM 0 comments
Tuesday, December 26, 2006
.net c# zip compression
In case you haven't found out yet, the .net compression library (System.io.compresison) is not the easiest to use. I didnt find it very intuitive at all. After a short time my limited patience was exausted and I went searching for an opensource solution. Easily, the best i found was SharpZipLib. Tar, Zip, GZip, compress, uncompress, source code, the works. A link to its download page is below. Please contribute to them if you use it. Long live the opensource movement.
http://www.icsharpcode.net/OpenSource/SharpZipLib/Download.aspx
Posted by Vince Roche at 6:05 AM 0 comments
Labels: System.io.compresison .net c# zip compression tar gzip