tobiasschulz / tar-cs

Automatically exported from code.google.com/p/tar-cs
Other
0 stars 0 forks source link

.NET 2.0 Compatibility #12

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Thanks for creating the TAR library.  You have saved me some time.

There are some incompatibilities with your source and .NET 2.0.  You might want 
to update the Project Home to specific .NET 3.5 or higher or remove the 3.5+ 
features.  The items I had to change in your source to compile in 2.0.

(*) remove all var variable type declarations and replace with true class types
(*) remove short cuts for private class variable declaration with the <type> 
<prop name> { get; set; } pattern
(*) remove the short cut property initializer pattern such as var obj1 = new 
<type() { prop1 = v1, prop2 = v2, etc }

Original issue reported on code.google.com by benton.s...@gmail.com on 11 Jun 2010 at 9:19

GoogleCodeExporter commented 9 years ago
Did not plan .NET 2.0. 

Original comment by vasilt...@gmail.com on 17 Jun 2011 at 8:31