<?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: NAnt &#8211; Detect 64-bit or 32-bit OS</title>
	<atom:link href="http://www.jaxidian.org/update/2009/07/16/50/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jaxidian.org/update/2009/07/16/50/</link>
	<description>Shane Milton&#039;s Technology Update</description>
	<lastBuildDate>Wed, 08 Sep 2010 19:17:25 -0400</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Boyan Kostadinov</title>
		<link>http://www.jaxidian.org/update/2009/07/16/50/comment-page-1/#comment-417</link>
		<dc:creator>Boyan Kostadinov</dc:creator>
		<pubDate>Tue, 07 Sep 2010 02:01:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.jaxidian.org/update/?p=50#comment-417</guid>
		<description>&lt;references&gt;
	&lt;include name=&quot;System.dll&quot; /&gt;
&lt;/references&gt;</description>
		<content:encoded><![CDATA[<p>&lt;references&gt;<br />
	&lt;include name=&#8221;System.dll&#8221; /&gt;<br />
&lt;/references&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Boyan Kostadinov</title>
		<link>http://www.jaxidian.org/update/2009/07/16/50/comment-page-1/#comment-416</link>
		<dc:creator>Boyan Kostadinov</dc:creator>
		<pubDate>Tue, 07 Sep 2010 01:58:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.jaxidian.org/update/?p=50#comment-416</guid>
		<description>You are probably using a newer build of NAnt (0.91 Alpha 1/2) instead of 0.85. Just reference the System.dll like so:

	
</description>
		<content:encoded><![CDATA[<p>You are probably using a newer build of NAnt (0.91 Alpha 1/2) instead of 0.85. Just reference the System.dll like so:</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joseph Lam</title>
		<link>http://www.jaxidian.org/update/2009/07/16/50/comment-page-1/#comment-407</link>
		<dc:creator>Joseph Lam</dc:creator>
		<pubDate>Tue, 01 Jun 2010 00:41:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.jaxidian.org/update/?p=50#comment-407</guid>
		<description>I&#039;m getting this error on my Windows 7 64bit w/ .NET framework 4.0:
Compilation failed:
c:\Users\joseph\AppData\Local\Temp\r7m0eqss.0.cs(31,39) : error CS0234: The type or namespace name &#039;Process&#039; does not exist in the namespace &#039;System.Diagnostics
&#039; (are you missing an assembly reference?)
//------------------------------------------------------------------------------
// 
//     This code was generated by a tool.
//     Runtime Version:2.0.50727.4927
//
//     Changes to this file may cause incorrect behavior and will be lost if
//     the code is regenerated.
// 
//------------------------------------------------------------------------------

using NAnt.Core;
using NAnt.Core.Attributes;
using System;
using System.Collections;
using System.IO;
using System.Text;



[FunctionSet(&quot;MyWin32Calls&quot;, &quot;MyWin32Calls&quot;)]
public class nant23f3bc35e8124e1f98591b0f08c9e8c5 : NAnt.Core.FunctionSetBase {


   [System.Runtime.InteropServices.DllImport(&quot;kernel32.dll&quot;)]
   public static extern bool IsWow64Process(System.IntPtr hProcess, out bool lpSystemInfo);

   [Function(&quot;IsWow64Process&quot;)]
   public bool IsWow64Process()
   {
    bool retVal = false;
    IsWow64Process(System.Diagnostics.Process.GetCurrentProcess().Handle, out retVal);
    return retVal;
   }


    public nant23f3bc35e8124e1f98591b0f08c9e8c5(NAnt.Core.Project project, NAnt.Core.PropertyDictionary propDict) :
            base(project, propDict) {
    }
}</description>
		<content:encoded><![CDATA[<p>I&#8217;m getting this error on my Windows 7 64bit w/ .NET framework 4.0:<br />
Compilation failed:<br />
c:\Users\joseph\AppData\Local\Temp\r7m0eqss.0.cs(31,39) : error CS0234: The type or namespace name &#8216;Process&#8217; does not exist in the namespace &#8216;System.Diagnostics<br />
&#8216; (are you missing an assembly reference?)<br />
//&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
//<br />
//     This code was generated by a tool.<br />
//     Runtime Version:2.0.50727.4927<br />
//<br />
//     Changes to this file may cause incorrect behavior and will be lost if<br />
//     the code is regenerated.<br />
//<br />
//&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>using NAnt.Core;<br />
using NAnt.Core.Attributes;<br />
using System;<br />
using System.Collections;<br />
using System.IO;<br />
using System.Text;</p>
<p>[FunctionSet("MyWin32Calls", "MyWin32Calls")]<br />
public class nant23f3bc35e8124e1f98591b0f08c9e8c5 : NAnt.Core.FunctionSetBase {</p>
<p>   [System.Runtime.InteropServices.DllImport("kernel32.dll")]<br />
   public static extern bool IsWow64Process(System.IntPtr hProcess, out bool lpSystemInfo);</p>
<p>   [Function("IsWow64Process")]<br />
   public bool IsWow64Process()<br />
   {<br />
    bool retVal = false;<br />
    IsWow64Process(System.Diagnostics.Process.GetCurrentProcess().Handle, out retVal);<br />
    return retVal;<br />
   }</p>
<p>    public nant23f3bc35e8124e1f98591b0f08c9e8c5(NAnt.Core.Project project, NAnt.Core.PropertyDictionary propDict) :<br />
            base(project, propDict) {<br />
    }<br />
}</p>
]]></content:encoded>
	</item>
</channel>
</rss>
