<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-9126953450682111235</id><updated>2011-07-08T18:55:27.768+02:00</updated><title type='text'>#Piotr #Nogalski - C# Blog</title><subtitle type='html'>Sharing .Net Framework experience to make life easier...</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://easysharp.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9126953450682111235/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://easysharp.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Piotr Nogalski</name><uri>http://www.blogger.com/profile/17527649546561693320</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>11</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-9126953450682111235.post-5814129213620848245</id><published>2009-08-23T12:00:00.000+02:00</published><updated>2009-08-23T12:01:22.041+02:00</updated><title type='text'>Drop User: The database principal owns a schema in the database, and cannot be dropped</title><content type='html'>Dropping a user which owns a schema will result in the error message “The database principal owns a schema in the database, and cannot be dropped”.&lt;br /&gt;&lt;br /&gt;To solve this you can assign the schema back to its base principal with the ALTER AUTHORIZATION message, or it can be moved to another user/principal.&lt;br /&gt;If for example user Test1 owns the db_owner schema and you want to drop Test1 but don’t have another user to move the schema to you can type:&lt;br /&gt;&lt;br /&gt;ALTER AUTHORIZATION ON SCHEMA::db_owner TO db_owner  &lt;br /&gt;(or for example db_datawriter if that was the case and so on)&lt;br /&gt;&lt;br /&gt;If you wanted to move the schema to another user the syntax would be:&lt;br /&gt;&lt;br /&gt;ALTER AUTHORIZATION ON SCHEMA::&lt;theSchema&gt; TO userName&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9126953450682111235-5814129213620848245?l=easysharp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://easysharp.blogspot.com/feeds/5814129213620848245/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9126953450682111235&amp;postID=5814129213620848245' title='Komentarze (0)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9126953450682111235/posts/default/5814129213620848245'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9126953450682111235/posts/default/5814129213620848245'/><link rel='alternate' type='text/html' href='http://easysharp.blogspot.com/2009/08/drop-user-database-principal-owns.html' title='Drop User: The database principal owns a schema in the database, and cannot be dropped'/><author><name>Piotr Nogalski</name><uri>http://www.blogger.com/profile/17527649546561693320</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9126953450682111235.post-2919825904173619901</id><published>2009-06-11T13:13:00.002+02:00</published><updated>2009-06-11T13:17:33.174+02:00</updated><title type='text'>Create and Install Temporary Certificates in WCF</title><content type='html'>You can find full article &lt;a href="http://wcfsecurity.codeplex.com/Wiki/View.aspx?title=How%20To%20-%20Create%20and%20Install%20Temporary%20Certificates%20in%20WCF%20for%20Message%20Security%20During%20Development&amp;referringTitle=How%20Tos"&gt;here&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Most important parts:&lt;br /&gt;1) Create a Certificate to Act as Your Root Certificate Authority &lt;br /&gt;&lt;br /&gt;makecert -n "CN=RootCATest" -r -sv RootCATest.pvk RootCATest.cer &lt;br /&gt;&lt;br /&gt;2) Create and Install Your Temporary Service Certificate &lt;br /&gt;&lt;br /&gt;makecert -sk MyKeyName -iv RootCATest.pvk -n "CN=tempCert" -ic RootCATest.cer -sr localmachine -ss my -sky exchange -pe tempCert.cer &lt;br /&gt;&lt;br /&gt;3) In Client config set RevocationMode to "NoCheck"&lt;br /&gt;&lt;br /&gt;&amp;lt;behaviors&amp;gt;&lt;br /&gt;    &amp;lt;endpointBehaviors&amp;gt;&lt;br /&gt;        &amp;lt;behavior name=&amp;quot;NewBehavior&amp;quot;&amp;gt;&lt;br /&gt;            &amp;lt;clientCredentials&amp;gt;&lt;br /&gt;                &amp;lt;serviceCertificate&amp;gt;&lt;br /&gt;                    &amp;lt;authentication *revocationMode=&amp;quot;NoCheck&amp;quot; /&amp;gt;&lt;br /&gt;                &amp;lt;/serviceCertificate&amp;gt;&lt;br /&gt;            &amp;lt;/clientCredentials&amp;gt;&lt;br /&gt;        &amp;lt;/behavior&amp;gt;&lt;br /&gt;    &amp;lt;/endpointBehaviors&amp;gt;&lt;br /&gt;&amp;lt;/behaviors&amp;gt;&lt;br /&gt;&amp;lt;client&amp;gt;&lt;br /&gt;    &amp;lt;endpoint behaviorConfiguration=&amp;quot;NewBehavior&amp;quot; ….&amp;gt;&lt;br /&gt;    &amp;lt;/endpoint&amp;gt;&lt;br /&gt;&amp;lt;/client&amp;gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9126953450682111235-2919825904173619901?l=easysharp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://easysharp.blogspot.com/feeds/2919825904173619901/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9126953450682111235&amp;postID=2919825904173619901' title='Komentarze (0)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9126953450682111235/posts/default/2919825904173619901'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9126953450682111235/posts/default/2919825904173619901'/><link rel='alternate' type='text/html' href='http://easysharp.blogspot.com/2009/06/create-and-install-temporary.html' title='Create and Install Temporary Certificates in WCF'/><author><name>Piotr Nogalski</name><uri>http://www.blogger.com/profile/17527649546561693320</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9126953450682111235.post-5887753004453672635</id><published>2009-06-09T11:29:00.003+02:00</published><updated>2009-06-09T12:00:00.417+02:00</updated><title type='text'>"Add Service Reference" 16384 quota</title><content type='html'>If you got a problem with adding large WCF service into your Visual Studio sollution via "&lt;span style="font-weight:bold;"&gt;Add Service Reference&lt;/span&gt;" you can use following sollution. &lt;br /&gt;&lt;br /&gt;You need to edit &lt;span style="font-weight:bold;"&gt;devenv.exe.config&lt;/span&gt; (default located in c:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\) and add larger quota info to IMetadataExchange binding. This configuration will be used by VS and it is used for netTcpBinding. &lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;&amp;lt;configuration&amp;gt;&lt;br /&gt;.&lt;br /&gt;.&lt;br /&gt;.&lt;br /&gt;&amp;lt;system.serviceModel&amp;gt;&lt;br /&gt;  &amp;lt;client&amp;gt;&lt;br /&gt;   &amp;lt;endpoint name=&amp;quot;net.tcp&amp;quot; binding=&amp;quot;netTcpBinding&amp;quot; bindingConfiguration=&amp;quot;bc&amp;quot; contract=&amp;quot;IMetadataExchange&amp;quot; /&amp;gt;&lt;br /&gt;  &amp;lt;/client&amp;gt;&lt;br /&gt;  &amp;lt;bindings&amp;gt;&lt;br /&gt;   &amp;lt;netTcpBinding&amp;gt;&lt;br /&gt;    &amp;lt;binding name=&amp;quot;bc&amp;quot; maxReceivedMessageSize=&amp;quot;512000&amp;quot;&amp;gt;&lt;br /&gt;     &amp;lt;readerQuotas maxNameTableCharCount=&amp;quot;163840&amp;quot; /&amp;gt;&lt;br /&gt;     &amp;lt;security mode=&amp;quot;None&amp;quot;/&amp;gt;&lt;br /&gt;    &amp;lt;/binding&amp;gt;&lt;br /&gt;   &amp;lt;/netTcpBinding&amp;gt;&lt;br /&gt;  &amp;lt;/bindings&amp;gt;&lt;br /&gt;&amp;lt;/system.serviceModel&amp;gt;&lt;br /&gt;.&lt;br /&gt;.&lt;br /&gt;.&lt;br /&gt;&amp;lt;/configuration&amp;gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9126953450682111235-5887753004453672635?l=easysharp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://easysharp.blogspot.com/feeds/5887753004453672635/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9126953450682111235&amp;postID=5887753004453672635' title='Komentarze (0)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9126953450682111235/posts/default/5887753004453672635'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9126953450682111235/posts/default/5887753004453672635'/><link rel='alternate' type='text/html' href='http://easysharp.blogspot.com/2009/06/add-service-reference-16384-quota.html' title='&quot;Add Service Reference&quot; 16384 quota'/><author><name>Piotr Nogalski</name><uri>http://www.blogger.com/profile/17527649546561693320</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9126953450682111235.post-3751057756922717556</id><published>2009-05-04T14:20:00.006+02:00</published><updated>2009-05-04T14:30:01.006+02:00</updated><title type='text'>Finding objects in Generics with List.Find()</title><content type='html'>&lt;span style="font-weight:bold;"&gt;Simple class:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;public class Person&lt;br /&gt;{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;public int ID { get; set; }&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;public int Name { get; set; }&lt;br /&gt;      &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;public Person(int id, string name)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ID = id;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Name = name;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Usage code:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;//Add some objects&lt;br /&gt;List&lt;Person&gt; myList = new List&lt;Person&gt;();&lt;br /&gt;myList.Add(new Person(1, "Person 1"));&lt;br /&gt;myList.Add(new Person(2, "Person 2"));&lt;br /&gt;myList.Add(new Person(3, "Person 3"));&lt;br /&gt;&lt;br /&gt;//Find a specific object&lt;br /&gt;Person myLocatedObject = myList.Find(delegate(Person p) {return p.ID == 1; });&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Thanks Andrey for good example (&lt;a href="http://msmvps.com/blogs/andreysanches/archive/2007/04/25/how-to-find-objects-in-generics-with-list-find-method.aspx"&gt;original article&lt;/a&gt;)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9126953450682111235-3751057756922717556?l=easysharp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://easysharp.blogspot.com/feeds/3751057756922717556/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9126953450682111235&amp;postID=3751057756922717556' title='Komentarze (0)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9126953450682111235/posts/default/3751057756922717556'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9126953450682111235/posts/default/3751057756922717556'/><link rel='alternate' type='text/html' href='http://easysharp.blogspot.com/2009/05/finding-objects-in-generics-with.html' title='Finding objects in Generics with List.Find()'/><author><name>Piotr Nogalski</name><uri>http://www.blogger.com/profile/17527649546561693320</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9126953450682111235.post-8847566673989031053</id><published>2008-05-29T19:00:00.002+02:00</published><updated>2008-05-29T19:02:46.672+02:00</updated><title type='text'>Fixing Firefox Slowness with local developement server on Vista</title><content type='html'>It's really an anoying problem. Firefox runs like a turtle on local developement server on Vista:( But there is a nice sollution for this one:&lt;br /&gt;In Firefox, goto about:config, filter by "&lt;span style="font-family:Courier New;"&gt;network.dns.disableIPv6&lt;/span&gt;" and double-click to set to true.&lt;br /&gt;&lt;br /&gt;Here you go :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9126953450682111235-8847566673989031053?l=easysharp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://easysharp.blogspot.com/feeds/8847566673989031053/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9126953450682111235&amp;postID=8847566673989031053' title='Komentarze (0)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9126953450682111235/posts/default/8847566673989031053'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9126953450682111235/posts/default/8847566673989031053'/><link rel='alternate' type='text/html' href='http://easysharp.blogspot.com/2008/05/fixing-firefox-slowness-with-local.html' title='Fixing Firefox Slowness with local developement server on Vista'/><author><name>Piotr Nogalski</name><uri>http://www.blogger.com/profile/17527649546561693320</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9126953450682111235.post-31055228176856958</id><published>2008-05-29T18:47:00.001+02:00</published><updated>2008-05-29T18:48:43.260+02:00</updated><title type='text'>32 bit ODBC Datasources on 64 bit Vista</title><content type='html'>Having problem with the 64 bit ODBC Datasources manager on Vista ?&lt;br /&gt;The launcher for 32 bit version is located under:&lt;br /&gt;C:\Windows\SysWOW64\odbcad32.exe&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9126953450682111235-31055228176856958?l=easysharp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://easysharp.blogspot.com/feeds/31055228176856958/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9126953450682111235&amp;postID=31055228176856958' title='Komentarze (0)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9126953450682111235/posts/default/31055228176856958'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9126953450682111235/posts/default/31055228176856958'/><link rel='alternate' type='text/html' href='http://easysharp.blogspot.com/2008/05/32-bit-odbc-datasources-on-64-bit-vista.html' title='32 bit ODBC Datasources on 64 bit Vista'/><author><name>Piotr Nogalski</name><uri>http://www.blogger.com/profile/17527649546561693320</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9126953450682111235.post-2470398911030614096</id><published>2008-02-11T15:47:00.000+01:00</published><updated>2008-02-11T15:49:43.969+01:00</updated><title type='text'>How to reset identity seed in Sql Server</title><content type='html'>Sometimes you need to reset indentity seed in your database table. There is a nice way to achive that (sql command):&lt;br /&gt;&lt;br /&gt;DBCC CHECKIDENT('table_name', RESEED,&lt;span style="color: rgb(0, 0, 255);"&gt; 0&lt;/span&gt;)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9126953450682111235-2470398911030614096?l=easysharp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://easysharp.blogspot.com/feeds/2470398911030614096/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9126953450682111235&amp;postID=2470398911030614096' title='Komentarze (1)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9126953450682111235/posts/default/2470398911030614096'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9126953450682111235/posts/default/2470398911030614096'/><link rel='alternate' type='text/html' href='http://easysharp.blogspot.com/2008/02/how-to-reset-identity-seed-in-sql.html' title='How to reset identity seed in Sql Server'/><author><name>Piotr Nogalski</name><uri>http://www.blogger.com/profile/17527649546561693320</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9126953450682111235.post-2785089378612334697</id><published>2008-01-22T10:07:00.000+01:00</published><updated>2008-01-24T11:02:21.771+01:00</updated><title type='text'>How to remove primary key column in DataTable</title><content type='html'>Sometimes you need to drop column from DataTable which is marked as PrimaryKey (else you will get an exception). There's a nice way to accomplish that.&lt;br /&gt;&lt;br /&gt;DataTable.PrimaryKey = null;&lt;br /&gt;&lt;br /&gt;So simple, so nice :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9126953450682111235-2785089378612334697?l=easysharp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://easysharp.blogspot.com/feeds/2785089378612334697/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9126953450682111235&amp;postID=2785089378612334697' title='Komentarze (0)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9126953450682111235/posts/default/2785089378612334697'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9126953450682111235/posts/default/2785089378612334697'/><link rel='alternate' type='text/html' href='http://easysharp.blogspot.com/2008/01/how-to-remove-primary-key-column-in.html' title='How to remove primary key column in DataTable'/><author><name>Piotr Nogalski</name><uri>http://www.blogger.com/profile/17527649546561693320</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9126953450682111235.post-9217498435500686289</id><published>2008-01-03T11:33:00.000+01:00</published><updated>2008-01-03T11:53:38.512+01:00</updated><title type='text'>Deleting all svn folders recursively</title><content type='html'>Offtopic post: If you want eaisly delete all svn subfolders just use this clever sollution under Windows with usage of Total Commander:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Invoke a search (Alt+F7) from the projects root directory&lt;/li&gt;&lt;li&gt;Search for .svn (or _svn) - it depends on your settings&lt;br /&gt;&lt;/li&gt;&lt;li&gt;When the results are displayed, click the “Feed to listbox” button (bottom right)&lt;/li&gt;&lt;li&gt;In the list that appears select all the folders and delete (Shift-F8)&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9126953450682111235-9217498435500686289?l=easysharp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://easysharp.blogspot.com/feeds/9217498435500686289/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9126953450682111235&amp;postID=9217498435500686289' title='Komentarze (1)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9126953450682111235/posts/default/9217498435500686289'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9126953450682111235/posts/default/9217498435500686289'/><link rel='alternate' type='text/html' href='http://easysharp.blogspot.com/2008/01/deleting-all-svn-folders-recursively.html' title='Deleting all svn folders recursively'/><author><name>Piotr Nogalski</name><uri>http://www.blogger.com/profile/17527649546561693320</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9126953450682111235.post-4407331709667655482</id><published>2007-11-20T11:22:00.000+01:00</published><updated>2007-11-20T11:26:28.582+01:00</updated><title type='text'>BlogEngine.Net</title><content type='html'>I have just created Polish Localization for BlogEngine.net. Hope you can find it soon in official release of BlogEngine.net localization pack.&lt;br /&gt;&lt;a href="http://www.codeplex.com/blogengine"&gt;http://www.codeplex.com/blogengine&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9126953450682111235-4407331709667655482?l=easysharp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.codeplex.com/blogengine' title='BlogEngine.Net'/><link rel='replies' type='application/atom+xml' href='http://easysharp.blogspot.com/feeds/4407331709667655482/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9126953450682111235&amp;postID=4407331709667655482' title='Komentarze (0)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9126953450682111235/posts/default/4407331709667655482'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9126953450682111235/posts/default/4407331709667655482'/><link rel='alternate' type='text/html' href='http://easysharp.blogspot.com/2007/11/blogenginenet.html' title='BlogEngine.Net'/><author><name>Piotr Nogalski</name><uri>http://www.blogger.com/profile/17527649546561693320</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9126953450682111235.post-6937520059246474674</id><published>2007-11-20T09:12:00.000+01:00</published><updated>2007-11-20T09:13:27.364+01:00</updated><title type='text'>Welcome to my blog</title><content type='html'>Hi Everybody, welcome to my C# blog. Hope you find here many interesting articles in the future.&lt;br /&gt;Best Regards&lt;br /&gt;Piotr Nogalski&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9126953450682111235-6937520059246474674?l=easysharp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://easysharp.blogspot.com/feeds/6937520059246474674/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9126953450682111235&amp;postID=6937520059246474674' title='Komentarze (0)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9126953450682111235/posts/default/6937520059246474674'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9126953450682111235/posts/default/6937520059246474674'/><link rel='alternate' type='text/html' href='http://easysharp.blogspot.com/2007/11/welcome-to-my-blog.html' title='Welcome to my blog'/><author><name>Piotr Nogalski</name><uri>http://www.blogger.com/profile/17527649546561693320</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
