<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://www.codeplex.com/rss.xsl"?><rss version="2.0"><channel><title>Proj.Net</title><link>http://www.codeplex.com/ProjNET/Project/ProjectRss.aspx</link><description>A .NET 2.0 library that performs coordinate conversions between various geodetic coordinate systems for use in fx. Geographic Information Systems &amp;#40;GIS&amp;#41; or GPS applications.      Support include&amp;#58;   - Datu...</description><item><title>New Post: Licenza.</title><link>http://www.codeplex.com/ProjNET/Thread/View.aspx?ThreadId=18011</link><description>&lt;div style="line-height: normal;"&gt;&amp;quot;&lt;span style="font-family:'Segoe UI';font-size:13px"&gt;You cannot rip out individual files from the project and use these as you like. That will bind you to the LGPL license too, and you HAVE to write that you are working on a project derived from Proj.NET.  LGPL is only as loose as Diego says if you just link to the &lt;em&gt;compiled DLL&lt;/em&gt; of the &lt;em&gt;unchanged&lt;/em&gt; source as a whole, in other words if you just use the released binary files.&amp;quot;&lt;/span&gt;&lt;div&gt;&lt;div&gt;&lt;span style="font-family:'Segoe UI';font-size:13px"&gt;&lt;br&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style="font-family:'Segoe UI';font-size:13px"&gt;you DON'T have to write that &amp;quot;you are working on a project derived from Proj.NET&amp;quot;.  You simply need to retain the the copyright notices.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style="font-family:'Segoe UI';font-size:13px"&gt;&lt;br&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style="font-family:'Segoe UI';font-size:13px"&gt;details: &lt;span style="font-family:Times;font-size:16px"&gt;&lt;span&gt;&lt;a href="http://creativecommons.org/licenses/LGPL/2.1/"&gt;http://creativecommons.org/licenses/LGPL/2.1/&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Scott&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description><author>scottell</author><pubDate>Thu, 02 Oct 2008 00:07:12 GMT</pubDate><guid isPermaLink="false">New Post: Licenza. 20081002120712A</guid></item><item><title>Closed Issue: HorizontalDatum.EqualParams(obj) incorrectly compares the Ellipsoid instance instead of its parameters</title><link>http://www.codeplex.com/SharpMapCS/WorkItem/View.aspx?WorkItemId=11196</link><description>In the method&amp;#58; public override bool EqualParams&amp;#40;object obj&amp;#41;&lt;br /&gt;the comparison is done using &amp;#58;&lt;br /&gt;    return datum.Ellipsoid &amp;#61;&amp;#61; this.Ellipsoid &amp;#38;&amp;#38; this.DatumType &amp;#61;&amp;#61; datum.DatumType&lt;br /&gt;&lt;br /&gt;It should use&amp;#58;&lt;br /&gt;    return datum.Ellipsoid.EqualParams&amp;#40;this.Ellipsoid&amp;#41; &amp;#38;&amp;#38; this.DatumType &amp;#61;&amp;#61; datum.DatumType&amp;#59;&lt;br /&gt;</description><author>SharpGIS</author><pubDate>Tue, 09 Sep 2008 04:24:36 GMT</pubDate><guid isPermaLink="false">Closed Issue: HorizontalDatum.EqualParams(obj) incorrectly compares the Ellipsoid instance instead of its parameters 20080909042436A</guid></item><item><title>Source code checked in, #22686</title><link>http://www.codeplex.com/ProjNET/SourceControl/ListDownloadableCommits.aspx</link><description>Fixed HorizontalDatum.EqualParams&amp;#40;&amp;#41; method</description><author>SharpGIS</author><pubDate>Tue, 09 Sep 2008 04:24:35 GMT</pubDate><guid isPermaLink="false">Source code checked in, #22686 20080909042435A</guid></item><item><title>Created Issue: HorizontalDatum.EqualParams(obj) incorrectly compares the Ellipsoid instance instead of its parameters</title><link>http://www.codeplex.com/SharpMapCS/WorkItem/View.aspx?WorkItemId=11196</link><description>In the method&amp;#58; public override bool EqualParams&amp;#40;object obj&amp;#41;&lt;br /&gt;the comparison is done using &amp;#58;&lt;br /&gt;    return datum.Ellipsoid &amp;#61;&amp;#61; this.Ellipsoid &amp;#38;&amp;#38; this.DatumType &amp;#61;&amp;#61; datum.DatumType&lt;br /&gt;&lt;br /&gt;It should use&amp;#58;&lt;br /&gt;    return datum.Ellipsoid.EqualParams&amp;#40;this.Ellipsoid&amp;#41; &amp;#38;&amp;#38; this.DatumType &amp;#61;&amp;#61; datum.DatumType&amp;#59;&lt;br /&gt;</description><author>SharpGIS</author><pubDate>Tue, 09 Sep 2008 04:21:28 GMT</pubDate><guid isPermaLink="false">Created Issue: HorizontalDatum.EqualParams(obj) incorrectly compares the Ellipsoid instance instead of its parameters 20080909042128A</guid></item><item><title>COMMENTED ISSUE: Inverse and Invert in ConcatenatedTransform</title><link>http://www.codeplex.com/SharpMapCS/WorkItem/View.aspx?WorkItemId=9090</link><description>The Invert&amp;#40;&amp;#41; and Inverse&amp;#40;&amp;#41; methods in ConcatenatedTransform do not give the desired result.  I have made a quick fix.&lt;br /&gt;Comments: ** Comment from web user: SharpGIS ** &lt;p&gt;I&amp;#39;ve looked into it, and unfortunately the problem goes deeper with the way Inverse has been implemented. The problem is not only the list not being cloned, but all the contents of the list are also inverted, and I don&amp;#39;t think cloning the contents of the list is such a good idea either.&lt;/p&gt;&lt;p&gt;Instead I would recommend two things&amp;#58;&lt;br /&gt;- Use Invert&amp;#40;&amp;#41; instead when you need it to go the other way  - that is more efficient anyway &amp;#40;it&amp;#39;s pretty much just setting a flag internally for the most part&amp;#41;.&lt;br /&gt;- Remove Inverse&amp;#40;&amp;#41; method &amp;#40;and perhaps implement a clone&amp;#40;&amp;#41; on all MathTransform is people still need a clone to invert for what ever reason that might be&amp;#41;. This method leads people into too much trouble anyhow.&lt;/p&gt;</description><author>SharpGIS</author><pubDate>Thu, 03 Jan 2008 07:15:15 GMT</pubDate><guid isPermaLink="false">COMMENTED ISSUE: Inverse and Invert in ConcatenatedTransform 20080103071515A</guid></item><item><title>COMMENTED ISSUE: Inverse and Invert in ConcatenatedTransform</title><link>http://www.codeplex.com/SharpMapCS/WorkItem/View.aspx?WorkItemId=9090</link><description>The Invert&amp;#40;&amp;#41; and Inverse&amp;#40;&amp;#41; methods in ConcatenatedTransform do not give the desired result.  I have made a quick fix.&lt;br /&gt;Comments: ** Comment from web user: dan3258 ** &lt;p&gt;Opps, sorry about the &amp;#60;p&amp;#62;&amp;#39;s.  I assumed my comment would be in html.&lt;/p&gt;</description><author>dan3258</author><pubDate>Wed, 02 Jan 2008 19:28:54 GMT</pubDate><guid isPermaLink="false">COMMENTED ISSUE: Inverse and Invert in ConcatenatedTransform 20080102072854P</guid></item><item><title>COMMENTED ISSUE: Inverse and Invert in ConcatenatedTransform</title><link>http://www.codeplex.com/SharpMapCS/WorkItem/View.aspx?WorkItemId=9090</link><description>The Invert&amp;#40;&amp;#41; and Inverse&amp;#40;&amp;#41; methods in ConcatenatedTransform do not give the desired result.  I have made a quick fix.&lt;br /&gt;Comments: ** Comment from web user: dan3258 ** &lt;p&gt;The problem with Inverse&amp;#40;&amp;#41; is that _CoordinateTransformationList is a list and lists seem to be treated like pointers.  So when _inverse.Invert&amp;#40;&amp;#41;&amp;#59; is executed...it inverses the original _CoordinateTransformationList also.  I guess my &amp;#34;desired result&amp;#34; is when Inverse&amp;#40;&amp;#41; is called, it returns a new IMathTransform without messing with the original.&lt;br /&gt;&amp;#60;p&amp;#62;&lt;br /&gt;Sample&amp;#58;&lt;br /&gt;&amp;#60;p&amp;#62;&lt;br /&gt;            GeoAPI.CoordinateSystems.ICoordinateSystem src, tgt&amp;#59;&lt;br /&gt;            SharpMap.CoordinateSystems.CoordinateSystemFactory cfac &amp;#61; new SharpMap.CoordinateSystems.CoordinateSystemFactory&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;            SharpMap.CoordinateSystems.Transformations.CoordinateTransformationFactory tfac &amp;#61; new SharpMap.CoordinateSystems.Transformations.CoordinateTransformationFactory&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;            GeoAPI.CoordinateSystems.Transformations.ICoordinateTransformation transform&amp;#59;&lt;br /&gt;&amp;#60;p&amp;#62;&lt;br /&gt;            tgt &amp;#61; cfac.CreateFromWkt&amp;#40;&amp;#34;PROJCS&amp;#91;&amp;#92;&amp;#34;NAD_1983_UTM_Zone_15N&amp;#92;&amp;#34;,GEOGCS&amp;#91;&amp;#92;&amp;#34;GCS_North_American_1983&amp;#92;&amp;#34;,DATUM&amp;#91;&amp;#92;&amp;#34;D_North_American_1983&amp;#92;&amp;#34;,SPHEROID&amp;#91;&amp;#92;&amp;#34;GRS_1980&amp;#92;&amp;#34;,6378137,298.257222101&amp;#93;&amp;#93;,PRIMEM&amp;#91;&amp;#92;&amp;#34;Greenwich&amp;#92;&amp;#34;,0&amp;#93;,UNIT&amp;#91;&amp;#92;&amp;#34;Degree&amp;#92;&amp;#34;,0.017453292519943295&amp;#93;&amp;#93;,PROJECTION&amp;#91;&amp;#92;&amp;#34;Transverse_Mercator&amp;#92;&amp;#34;&amp;#93;,PARAMETER&amp;#91;&amp;#92;&amp;#34;False_Easting&amp;#92;&amp;#34;,500000&amp;#93;,PARAMETER&amp;#91;&amp;#92;&amp;#34;False_Northing&amp;#92;&amp;#34;,0&amp;#93;,PARAMETER&amp;#91;&amp;#92;&amp;#34;Central_Meridian&amp;#92;&amp;#34;,-93&amp;#93;,PARAMETER&amp;#91;&amp;#92;&amp;#34;Scale_Factor&amp;#92;&amp;#34;,0.9996&amp;#93;,PARAMETER&amp;#91;&amp;#92;&amp;#34;Latitude_Of_Origin&amp;#92;&amp;#34;,0&amp;#93;,UNIT&amp;#91;&amp;#92;&amp;#34;Meter&amp;#92;&amp;#34;,1&amp;#93;&amp;#93;&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;            &amp;#60;p&amp;#62;&lt;br /&gt;            src &amp;#61; cfac.CreateFromWkt&amp;#40;&amp;#34;PROJCS&amp;#91;&amp;#92;&amp;#34;NAD_1983_StatePlane_Missouri_East_FIPS_2401&amp;#92;&amp;#34;,GEOGCS&amp;#91;&amp;#92;&amp;#34;GCS_North_American_1983&amp;#92;&amp;#34;,DATUM&amp;#91;&amp;#92;&amp;#34;D_North_American_1983&amp;#92;&amp;#34;,SPHEROID&amp;#91;&amp;#92;&amp;#34;GRS_1980&amp;#92;&amp;#34;,6378137,298.257222101&amp;#93;&amp;#93;,PRIMEM&amp;#91;&amp;#92;&amp;#34;Greenwich&amp;#92;&amp;#34;,0&amp;#93;,UNIT&amp;#91;&amp;#92;&amp;#34;Degree&amp;#92;&amp;#34;,0.0174532925199432955&amp;#93;&amp;#93;,PROJECTION&amp;#91;&amp;#92;&amp;#34;Transverse_Mercator&amp;#92;&amp;#34;&amp;#93;,PARAMETER&amp;#91;&amp;#92;&amp;#34;False_Easting&amp;#92;&amp;#34;,250000&amp;#93;,PARAMETER&amp;#91;&amp;#92;&amp;#34;False_Northing&amp;#92;&amp;#34;,0&amp;#93;,PARAMETER&amp;#91;&amp;#92;&amp;#34;Central_Meridian&amp;#92;&amp;#34;,-90.5&amp;#93;,PARAMETER&amp;#91;&amp;#92;&amp;#34;Scale_Factor&amp;#92;&amp;#34;,0.9999333333333333&amp;#93;,PARAMETER&amp;#91;&amp;#92;&amp;#34;Latitude_Of_Origin&amp;#92;&amp;#34;,35.83333333333334&amp;#93;,UNIT&amp;#91;&amp;#92;&amp;#34;Meter&amp;#92;&amp;#34;,1&amp;#93;&amp;#93;&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;            &amp;#60;p&amp;#62;&lt;br /&gt;            transform &amp;#61; tfac.CreateFromCoordinateSystems&amp;#40;src, tgt&amp;#41;&amp;#59;&lt;br /&gt;&amp;#60;p&amp;#62;&lt;br /&gt;            double&amp;#91;&amp;#93; point &amp;#61; &amp;#123;150000, 150000&amp;#125;&amp;#59;&lt;br /&gt;&amp;#60;p&amp;#62;&lt;br /&gt;            point &amp;#61; transform.MathTransform.Transform&amp;#40;point&amp;#41;&amp;#59;  &amp;#47;&amp;#47; point &amp;#61; &amp;#40;621953, 4115702&amp;#41;  Correct&lt;br /&gt;&amp;#60;p&amp;#62;&lt;br /&gt;            point &amp;#61; transform.MathTransform.Inverse&amp;#40;&amp;#41;.Transform&amp;#40;point&amp;#41;&amp;#59;  &amp;#47;&amp;#47; point &amp;#61; &amp;#40;150000, 150000&amp;#41;  Correct&lt;br /&gt;&amp;#60;p&amp;#62;&lt;br /&gt;            point &amp;#61; transform.MathTransform.Transform&amp;#40;point&amp;#41;&amp;#59;  &amp;#47;&amp;#47; point &amp;#61; &amp;#40;-379167, -3816227&amp;#41;  Incorrect&lt;br /&gt;&amp;#60;p&amp;#62;&lt;br /&gt;            point &amp;#61; transform.MathTransform.Inverse&amp;#40;&amp;#41;.Transform&amp;#40;point&amp;#41;&amp;#59;  &amp;#47;&amp;#47; point &amp;#61; &amp;#40;-861604, -7809053&amp;#41;  Incorrect&lt;br /&gt;&amp;#60;p&amp;#62;&lt;br /&gt;I haven&amp;#39;t been able to reproduce the problem I was having, or thought I was having with the Invert&amp;#40;&amp;#41; method.  Perhaps my problem was just with Inverse&amp;#40;&amp;#41;, and Invert&amp;#40;&amp;#41; was a red herring.&lt;/p&gt;</description><author>dan3258</author><pubDate>Wed, 02 Jan 2008 19:26:45 GMT</pubDate><guid isPermaLink="false">COMMENTED ISSUE: Inverse and Invert in ConcatenatedTransform 20080102072645P</guid></item><item><title>COMMENTED ISSUE: Inverse and Invert in ConcatenatedTransform</title><link>http://www.codeplex.com/SharpMapCS/WorkItem/View.aspx?WorkItemId=9090</link><description>The Invert&amp;#40;&amp;#41; and Inverse&amp;#40;&amp;#41; methods in ConcatenatedTransform do not give the desired result.  I have made a quick fix.&lt;br /&gt;Comments: ** Comment from web user: SharpGIS ** &lt;p&gt;dan3258&amp;#58; Could you be a little more specific with regards to &amp;#34;desired result&amp;#34; &amp;#63;&lt;br /&gt;Or as Diego says.. perhaps a unit test showing that its failing before and parsing afterwards.&lt;/p&gt;</description><author>SharpGIS</author><pubDate>Sat, 22 Dec 2007 05:50:42 GMT</pubDate><guid isPermaLink="false">COMMENTED ISSUE: Inverse and Invert in ConcatenatedTransform 20071222055042A</guid></item><item><title>COMMENTED ISSUE: Inverse and Invert in ConcatenatedTransform</title><link>http://www.codeplex.com/SharpMapCS/WorkItem/View.aspx?WorkItemId=9090</link><description>The Invert&amp;#40;&amp;#41; and Inverse&amp;#40;&amp;#41; methods in ConcatenatedTransform do not give the desired result.  I have made a quick fix.&lt;br /&gt;Comments: ** Comment from web user: D_Guidi ** &lt;p&gt;Could you send a little test to show the bug&amp;#63;&lt;br /&gt;The original code looks correct for me...&lt;br /&gt;&lt;/p&gt;</description><author>D_Guidi</author><pubDate>Fri, 21 Dec 2007 18:23:04 GMT</pubDate><guid isPermaLink="false">COMMENTED ISSUE: Inverse and Invert in ConcatenatedTransform 20071221062304P</guid></item><item><title>CREATED ISSUE: Inverse and Invert in ConcatenatedTransform</title><link>http://www.codeplex.com/SharpMapCS/WorkItem/View.aspx?WorkItemId=9090</link><description>The Invert&amp;#40;&amp;#41; and Inverse&amp;#40;&amp;#41; methods in ConcatenatedTransform do not give the desired result.  I have made a quick fix.&lt;br /&gt;</description><author>dan3258</author><pubDate>Fri, 21 Dec 2007 14:50:19 GMT</pubDate><guid isPermaLink="false">CREATED ISSUE: Inverse and Invert in ConcatenatedTransform 20071221025019P</guid></item><item><title>NEW POST: using ProjNet dll</title><link>http://www.codeplex.com/ProjNET/Thread/View.aspx?ThreadId=19366</link><description>&lt;div class="wikidoc"&gt;
I have no idea whether you could accomplish that, but to us .NET developers COM is a swear word of the worst kind :-)&lt;br /&gt;I can tell you so much that none of the methods are exposed to COM, so you would have to add that yourself.&lt;br /&gt;
&lt;/div&gt;</description><author>SharpGIS</author><pubDate>Thu, 20 Dec 2007 07:03:16 GMT</pubDate><guid isPermaLink="false">NEW POST: using ProjNet dll 20071220070316A</guid></item><item><title>NEW POST: using ProjNet dll</title><link>http://www.codeplex.com/ProjNET/Thread/View.aspx?ThreadId=19366</link><description>&lt;div class="wikidoc"&gt;
I'm trying to wrap ProjNet in COM.&lt;br /&gt;Proj4 can not parse WKT prj (or at least this api is hiding deep inside the code)&lt;br /&gt;btw: is it possible to drop my previous erroneous messages?&lt;br /&gt;
&lt;/div&gt;</description><author>gok</author><pubDate>Thu, 20 Dec 2007 03:17:12 GMT</pubDate><guid isPermaLink="false">NEW POST: using ProjNet dll 20071220031712A</guid></item><item><title>NEW POST: using ProjNet dll</title><link>http://www.codeplex.com/ProjNET/Thread/View.aspx?ThreadId=19366</link><description>&lt;div class="wikidoc"&gt;
I'm absolutely no expert on cpp, but you might want to use Proj.4 for your purpose (http://proj.maptools.org/).&lt;br /&gt;
&lt;/div&gt;</description><author>SharpGIS</author><pubDate>Thu, 20 Dec 2007 02:06:48 GMT</pubDate><guid isPermaLink="false">NEW POST: using ProjNet dll 20071220020648A</guid></item><item><title>NEW POST: using ProjNet dll</title><link>http://www.codeplex.com/ProjNET/Thread/View.aspx?ThreadId=19366</link><description>&lt;div class="wikidoc"&gt;
How I can use ProjNET.dll in my stand-along mfc cpp application?&lt;br /&gt;Any snippets or samples are very welcome.&lt;br /&gt;Thank your!&lt;br /&gt;
&lt;/div&gt;</description><author>gok</author><pubDate>Tue, 18 Dec 2007 21:21:08 GMT</pubDate><guid isPermaLink="false">NEW POST: using ProjNet dll 20071218092108P</guid></item><item><title>NEW POST: state plane coord system?</title><link>http://www.codeplex.com/ProjNET/Thread/View.aspx?ThreadId=19365</link><description>&lt;div class="wikidoc"&gt;
Hello, all.&lt;br /&gt;Did not find State Plane coordinate systems definitions in ProjNet_10 SRID.csv.&lt;br /&gt;Should I constract those from scratch by parameters?&lt;br /&gt;Thanks.&lt;br /&gt;
&lt;/div&gt;</description><author>gok</author><pubDate>Tue, 18 Dec 2007 21:13:26 GMT</pubDate><guid isPermaLink="false">NEW POST: state plane coord system? 20071218091326P</guid></item><item><title>NEW POST: Licenza.</title><link>http://www.codeplex.com/ProjNET/Thread/View.aspx?ThreadId=18011</link><description>&lt;div class="wikidoc"&gt;
Thank you, now I only read what I have written, however, mention the use of class project.&lt;br /&gt;Again thanks.&lt;br /&gt;
&lt;/div&gt;</description><author>mkel84</author><pubDate>Tue, 18 Dec 2007 08:32:41 GMT</pubDate><guid isPermaLink="false">NEW POST: Licenza. 20071218083241A</guid></item><item><title>NEW POST: Licenza.</title><link>http://www.codeplex.com/ProjNET/Thread/View.aspx?ThreadId=18011</link><description>&lt;div class="wikidoc"&gt;
&lt;div class="quote"&gt;
 &lt;br /&gt;SharpGIS wrote:&lt;br /&gt;LGPL is only as loose as Diego says if you just link to the &lt;i&gt;compiled DLL&lt;/i&gt; of the &lt;i&gt;unchanged&lt;/i&gt; source as a whole, in other words if you just use the released binary files.&lt;br /&gt; &lt;br /&gt;
&lt;/div&gt;Thanks for the explanation ;)&lt;br /&gt;
&lt;/div&gt;</description><author>D_Guidi</author><pubDate>Tue, 11 Dec 2007 07:59:41 GMT</pubDate><guid isPermaLink="false">NEW POST: Licenza. 20071211075941A</guid></item><item><title>NEW POST: Licenza.</title><link>http://www.codeplex.com/ProjNET/Thread/View.aspx?ThreadId=18011</link><description>&lt;div class="wikidoc"&gt;
&lt;i&gt;&amp;quot;P.S: &amp;#232; buona norma postare le domande in inglese, anche maccheronico, in modo che tutti possano accedervi.&amp;quot;&lt;/i&gt;&lt;br /&gt;Thanks Diego :-)&lt;br /&gt;It's funny how people often assume that we can read and write all languages on an english website.&lt;br /&gt; &lt;br /&gt;mkel84: You cannot rip out individual files from the project and use these as you like. That will bind you to the LGPL license too, and you HAVE to write that you are working on a project derived from Proj.NET.&lt;br /&gt;LGPL is only as loose as Diego says if you just link to the &lt;i&gt;compiled DLL&lt;/i&gt; of the &lt;i&gt;unchanged&lt;/i&gt; source as a whole, in other words if you just use the released binary files.&lt;br /&gt;
&lt;/div&gt;</description><author>SharpGIS</author><pubDate>Tue, 11 Dec 2007 02:30:10 GMT</pubDate><guid isPermaLink="false">NEW POST: Licenza. 20071211023010A</guid></item><item><title>NEW POST: Licenza.</title><link>http://www.codeplex.com/ProjNET/Thread/View.aspx?ThreadId=18011</link><description>&lt;div class="wikidoc"&gt;
Allora il codice di Proj.Net &amp;#232; rilasciato sotto LGPL, quindi i vincoli sono all'incirca questi:&lt;br /&gt;dovresti (non &amp;#232; obbligatorio) citare che il tuo software usa questa libreria.&lt;br /&gt;se fissi dei bug o migliori quella parte di codice che utilizzi devi (questo &amp;#232; obbligatorio) sottoporre le modifiche al team del progetto.&lt;br /&gt;non puoi (ovviamente) vendere questo progetto, ma puoi vendere un prodotto che utilizza questo progetto e aggiunge altre funzionalit&amp;#224;.&lt;br /&gt;Altre cose non i vengono in mente.&lt;br /&gt;P.S: &amp;#232; buona norma postare le domande in inglese, anche maccheronico, in modo che tutti possano accedervi.&lt;br /&gt;
&lt;/div&gt;</description><author>D_Guidi</author><pubDate>Mon, 10 Dec 2007 21:44:13 GMT</pubDate><guid isPermaLink="false">NEW POST: Licenza. 20071210094413P</guid></item><item><title>NEW POST: Licenza.</title><link>http://www.codeplex.com/ProjNET/Thread/View.aspx?ThreadId=18011</link><description>&lt;div class="wikidoc"&gt;
Nessuno mi sa aiutare???&lt;br /&gt;
&lt;/div&gt;</description><author>mkel84</author><pubDate>Wed, 21 Nov 2007 08:57:54 GMT</pubDate><guid isPermaLink="false">NEW POST: Licenza. 20071121085754A</guid></item></channel></rss>