<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: AutoMapper upgraded to .NET 4 and VS 2010</title>
	<atom:link href="http://lostechies.com/jimmybogard/2010/08/17/automapper-upgraded-to-net-4-and-vs-2010/feed/" rel="self" type="application/rss+xml" />
	<link>http://lostechies.com/jimmybogard/2010/08/17/automapper-upgraded-to-net-4-and-vs-2010/</link>
	<description>Strong opinions, weakly held</description>
	<lastBuildDate>Thu, 23 May 2013 23:40:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
	<item>
		<title>By: How to install Automapper for .net 3.5 &#124; FaceColony.com - Developers Network</title>
		<link>http://lostechies.com/jimmybogard/2010/08/17/automapper-upgraded-to-net-4-and-vs-2010/#comment-4252</link>
		<dc:creator>How to install Automapper for .net 3.5 &#124; FaceColony.com - Developers Network</dc:creator>
		<pubDate>Wed, 18 Jan 2012 17:32:52 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2010/08/17/automapper-upgraded-to-net-4-and-vs-2010.aspx#comment-4252</guid>
		<description>[...] have found a branch on Git hub, thanks to this post by the creator Jimmy [...]</description>
		<content:encoded><![CDATA[<p>[...] have found a branch on Git hub, thanks to this post by the creator Jimmy [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://lostechies.com/jimmybogard/2010/08/17/automapper-upgraded-to-net-4-and-vs-2010/#comment-3620</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Thu, 21 Jul 2011 00:41:00 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2010/08/17/automapper-upgraded-to-net-4-and-vs-2010.aspx#comment-3620</guid>
		<description>Nah, not yet.</description>
		<content:encoded><![CDATA[<p>Nah, not yet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Allen Firth</title>
		<link>http://lostechies.com/jimmybogard/2010/08/17/automapper-upgraded-to-net-4-and-vs-2010/#comment-3618</link>
		<dc:creator>Allen Firth</dc:creator>
		<pubDate>Wed, 20 Jul 2011 12:06:00 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2010/08/17/automapper-upgraded-to-net-4-and-vs-2010.aspx#comment-3618</guid>
		<description>do you support mapping from dynamic (.NET 4.0) objects in the latest version of AutoMapper?</description>
		<content:encoded><![CDATA[<p>do you support mapping from dynamic (.NET 4.0) objects in the latest version of AutoMapper?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick Berardi</title>
		<link>http://lostechies.com/jimmybogard/2010/08/17/automapper-upgraded-to-net-4-and-vs-2010/#comment-2545</link>
		<dc:creator>Nick Berardi</dc:creator>
		<pubDate>Wed, 18 Aug 2010 11:59:01 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2010/08/17/automapper-upgraded-to-net-4-and-vs-2010.aspx#comment-2545</guid>
		<description>I think you used a round about way to actually create a branch.

http://learn.github.com/p/branching.html

because you can do

git branch NET35
git checkout NET35
... do some git stuff and commit ...
git push origin NET35

to me that seems more straight forward then the method you took.</description>
		<content:encoded><![CDATA[<p>I think you used a round about way to actually create a branch.</p>
<p><a href="http://learn.github.com/p/branching.html" rel="nofollow">http://learn.github.com/p/branching.html</a></p>
<p>because you can do</p>
<p>git branch NET35<br />
git checkout NET35<br />
&#8230; do some git stuff and commit &#8230;<br />
git push origin NET35</p>
<p>to me that seems more straight forward then the method you took.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charles Strahan</title>
		<link>http://lostechies.com/jimmybogard/2010/08/17/automapper-upgraded-to-net-4-and-vs-2010/#comment-2544</link>
		<dc:creator>Charles Strahan</dc:creator>
		<pubDate>Tue, 17 Aug 2010 17:17:21 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2010/08/17/automapper-upgraded-to-net-4-and-vs-2010.aspx#comment-2544</guid>
		<description>Nice post, Jimmy.

in general, the `:&#039; separates the &quot;source&quot; from the &quot;destination&quot;, so `git pull origin foo:bar&#039; will pull the &quot;foo&quot; branch down from your remote, while naming it locally &quot;bar&quot;; whereas `git push origin bar:foo&#039; will push your local &quot;bar&quot; branch to your remote as &quot;foo&quot;.

You can also delete a remote branch by doing `git push origin :foo&#039;, which will delete the foo branch (it essentially says &quot;push nothing up to my remote origin as &#039;foo&#039;&quot; - Yoda speak for &quot;delete foo&quot;).

You may already know most of that, but I figured I&#039;d share. GitHub has a good reference here:
http://help.github.com/remotes/

-Charles</description>
		<content:encoded><![CDATA[<p>Nice post, Jimmy.</p>
<p>in general, the `:&#8217; separates the &#8220;source&#8221; from the &#8220;destination&#8221;, so `git pull origin foo:bar&#8217; will pull the &#8220;foo&#8221; branch down from your remote, while naming it locally &#8220;bar&#8221;; whereas `git push origin bar:foo&#8217; will push your local &#8220;bar&#8221; branch to your remote as &#8220;foo&#8221;.</p>
<p>You can also delete a remote branch by doing `git push origin :foo&#8217;, which will delete the foo branch (it essentially says &#8220;push nothing up to my remote origin as &#8216;foo&#8217;&#8221; &#8211; Yoda speak for &#8220;delete foo&#8221;).</p>
<p>You may already know most of that, but I figured I&#8217;d share. GitHub has a good reference here:<br />
<a href="http://help.github.com/remotes/" rel="nofollow">http://help.github.com/remotes/</a></p>
<p>-Charles</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bogardj</title>
		<link>http://lostechies.com/jimmybogard/2010/08/17/automapper-upgraded-to-net-4-and-vs-2010/#comment-2543</link>
		<dc:creator>bogardj</dc:creator>
		<pubDate>Tue, 17 Aug 2010 16:52:35 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2010/08/17/automapper-upgraded-to-net-4-and-vs-2010.aspx#comment-2543</guid>
		<description>@ahjohannessen

Yep, you have to internalize at least a lot of things.  Pull down the source and you can see how I got it to work.  But I also deploy the non-merged versions, in case folks need a later version of Castle or something

@Alastair

I didn&#039;t think that a local branch could be pushed to a remote server branch that doesn&#039;t exist yet.  Is that possible?</description>
		<content:encoded><![CDATA[<p>@ahjohannessen</p>
<p>Yep, you have to internalize at least a lot of things.  Pull down the source and you can see how I got it to work.  But I also deploy the non-merged versions, in case folks need a later version of Castle or something</p>
<p>@Alastair</p>
<p>I didn&#8217;t think that a local branch could be pushed to a remote server branch that doesn&#8217;t exist yet.  Is that possible?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alastair Smith</title>
		<link>http://lostechies.com/jimmybogard/2010/08/17/automapper-upgraded-to-net-4-and-vs-2010/#comment-2542</link>
		<dc:creator>Alastair Smith</dc:creator>
		<pubDate>Tue, 17 Aug 2010 15:55:47 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2010/08/17/automapper-upgraded-to-net-4-and-vs-2010.aspx#comment-2542</guid>
		<description>Out of interest, why did you choose not to create the NET35 branch locally and push that out to GitHub?</description>
		<content:encoded><![CDATA[<p>Out of interest, why did you choose not to create the NET35 branch locally and push that out to GitHub?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ahjohannessen</title>
		<link>http://lostechies.com/jimmybogard/2010/08/17/automapper-upgraded-to-net-4-and-vs-2010/#comment-2541</link>
		<dc:creator>ahjohannessen</dc:creator>
		<pubDate>Tue, 17 Aug 2010 13:36:53 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2010/08/17/automapper-upgraded-to-net-4-and-vs-2010.aspx#comment-2541</guid>
		<description>When you merge the dll, do you make external dependencies internal? I had a problem this morning with Castle.* versioning because of Castle.* usage elsewhere in my code.</description>
		<content:encoded><![CDATA[<p>When you merge the dll, do you make external dependencies internal? I had a problem this morning with Castle.* versioning because of Castle.* usage elsewhere in my code.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
