<?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>The Blog of Zachary Snow &#187; Visual Studio</title>
	<atom:link href="http://zacharysnow.net/tag/visual-studio/feed/" rel="self" type="application/rss+xml" />
	<link>http://zacharysnow.net</link>
	<description></description>
	<lastBuildDate>Tue, 20 Dec 2011 19:41:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Visual Studio: Move referenced DLL to different directory after Build</title>
		<link>http://zacharysnow.net/2010/07/20/visual-studio-move-referenced-dll-to-different-directory-after-build/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=visual-studio-move-referenced-dll-to-different-directory-after-build</link>
		<comments>http://zacharysnow.net/2010/07/20/visual-studio-move-referenced-dll-to-different-directory-after-build/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 17:16:37 +0000</pubDate>
		<dc:creator>Zachary</dc:creator>
				<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://zacharysnow.net/?p=337</guid>
		<description><![CDATA[If you need to move a referenced DLL to a different directory after build, add these commands to the &#8220;Post Build event command line&#8221; box in the &#8220;Build Events&#8221; tab of the project properties: mkdir $(TargetDir)dir move $(TargetDir)myDLL.dll $(TargetDir)dir\myDLL.dll]]></description>
			<content:encoded><![CDATA[<p>If you need to move a referenced DLL to a different directory after build, add these commands to the &#8220;<strong>Post Build event command line</strong>&#8221; box in the &#8220;<strong>Build Events</strong>&#8221; tab of the project properties:</p>
<pre name="code">
mkdir $(TargetDir)dir
move $(TargetDir)myDLL.dll $(TargetDir)dir\myDLL.dll
</pre>
]]></content:encoded>
			<wfw:commentRss>http://zacharysnow.net/2010/07/20/visual-studio-move-referenced-dll-to-different-directory-after-build/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing the PlatformTarget in Visual C# Express</title>
		<link>http://zacharysnow.net/2010/01/18/changing-the-platformtarge-in-visual-c-express/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=changing-the-platformtarge-in-visual-c-express</link>
		<comments>http://zacharysnow.net/2010/01/18/changing-the-platformtarge-in-visual-c-express/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 19:08:04 +0000</pubDate>
		<dc:creator>Zachary</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[Visual C#]]></category>

		<guid isPermaLink="false">http://zacharysnow.net/?p=279</guid>
		<description><![CDATA[Some project types in Visual C# Express (Empty Project) will not allow you to change the PlatformTarget from the UI. You can still change the target platform though by editing the .csproj file in a text editor. Close the project &#8230; <a href="http://zacharysnow.net/2010/01/18/changing-the-platformtarge-in-visual-c-express/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Some project types in Visual C# Express (Empty Project) will not allow you to change the PlatformTarget from the UI. You can still change the target platform though by editing the .csproj file in a text editor. Close the project and open it up in your favorite text editor (I use <a href="http://notepad-plus.sourceforge.net/">Notpad++</a>). The .csproj file is really just a XML file. You should see somewhere in the file something like:</p>
<pre name="code" class="xml">
	&lt;PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "&gt;
		....
	&lt;/PropertyGroup&gt;
	&lt;PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "&gt;
		....
	&lt;/PropertyGroup&gt;
</pre>
<p>Inside the PropertyGroup elements, add the PlatformTarget element:</p>
<pre name="code" class="xml">
	&lt;PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "&gt;
		....
		&lt;PlatformTarget&gt;x86*&lt;/PlatformTarget&gt;
	&lt;/PropertyGroup&gt;
	&lt;PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "&gt;
		....
		&lt;PlatformTarget&gt;x86&lt;/PlatformTarget&gt;
	&lt;/PropertyGroup&gt;
</pre>
<p>Save the file and open your project back up. Your project&#8217;s output should now target only x86.</p>
]]></content:encoded>
			<wfw:commentRss>http://zacharysnow.net/2010/01/18/changing-the-platformtarge-in-visual-c-express/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

