<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Compile C# from NPP]]></title><description><![CDATA[<p dir="auto">Hey guys, I’ve been fixated on this problem to the detriment of my other pursuits. I am trying to compile my c# code from npp using this guide… (<a href="https://dzone.com/articles/notepad-c-compiler-you-can-do" rel="nofollow ugc">https://dzone.com/articles/notepad-c-compiler-you-can-do</a>)</p>
<p dir="auto">When I do Run&gt;run the message I get in cmd is that the source file cannot be found and  a warning 2008 that no source has been specified. I’ve double checked and the .cs files are present in the folder I list in the path. Please Help</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/13208/compile-c-from-npp</link><generator>RSS for Node</generator><lastBuildDate>Tue, 09 Jun 2026 05:04:30 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/13208.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 01 Feb 2017 15:12:16 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Compile C# from NPP on Wed, 01 Feb 2017 19:02:41 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/scott-sumner" aria-label="Profile: Scott-Sumner">@<bdi>Scott-Sumner</bdi></a> said:</p>
<blockquote>
<p dir="auto">Perhaps the best way to explain it so that it is understood is that instead of doing</p>
<p dir="auto">cmd /k csc.exe “$(C:\Users\user1\Documents\MyFiles\sample.cs)”</p>
<p dir="auto">You should do</p>
<p dir="auto">cmd /k csc.exe “C:\Users\user1\Documents\MyFiles\sample.cs”</p>
<p dir="auto">Make sure that works, then change it to how you really should do it, and that is, have your file – C:\Users\user1\Documents\MyFiles\sample.cs – active in an editor tab, and then invoke exactly this:</p>
<p dir="auto">cmd /k csc.exe “$(FULL_CURRENT_PATH)”</p>
</blockquote>
<p dir="auto">TY guys I’m up and running.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/21458</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/21458</guid><dc:creator><![CDATA[Jawz Ferocity]]></dc:creator><pubDate>Wed, 01 Feb 2017 19:02:41 GMT</pubDate></item><item><title><![CDATA[Reply to Compile C# from NPP on Wed, 01 Feb 2017 18:39:01 GMT]]></title><description><![CDATA[<p dir="auto">That did it, thanks Claudia :-)</p>
]]></description><link>https://community.notepad-plus-plus.org/post/21456</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/21456</guid><dc:creator><![CDATA[Jawz Ferocity]]></dc:creator><pubDate>Wed, 01 Feb 2017 18:39:01 GMT</pubDate></item><item><title><![CDATA[Reply to Compile C# from NPP on Wed, 01 Feb 2017 18:18:51 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jawz-ferocity" aria-label="Profile: Jawz-Ferocity">@<bdi>Jawz-Ferocity</bdi></a></p>
<p dir="auto">Perhaps the best way to explain it so that it is understood is that instead of doing</p>
<p dir="auto">cmd /k csc.exe “$(C:\Users\user1\Documents\MyFiles\sample.cs)”</p>
<p dir="auto">You should do</p>
<p dir="auto">cmd /k csc.exe “C:\Users\user1\Documents\MyFiles\sample.cs”</p>
<p dir="auto">Make sure that works, then change it to how you really should do it, and that is, have your file – C:\Users\user1\Documents\MyFiles\sample.cs – active in an editor tab, and then invoke exactly this:</p>
<p dir="auto">cmd /k csc.exe “$(FULL_CURRENT_PATH)”</p>
]]></description><link>https://community.notepad-plus-plus.org/post/21455</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/21455</guid><dc:creator><![CDATA[Scott Sumner]]></dc:creator><pubDate>Wed, 01 Feb 2017 18:18:51 GMT</pubDate></item><item><title><![CDATA[Reply to Compile C# from NPP on Wed, 01 Feb 2017 18:16:42 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jawz-ferocity" aria-label="Profile: Jawz-Ferocity">@<bdi>Jawz-Ferocity</bdi></a></p>
<p dir="auto">the $ is only needed if a variable needs to be expanded not if you provide the path manually.</p>
<p dir="auto">Cheers<br />
Claudia</p>
]]></description><link>https://community.notepad-plus-plus.org/post/21454</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/21454</guid><dc:creator><![CDATA[Claudia Frank]]></dc:creator><pubDate>Wed, 01 Feb 2017 18:16:42 GMT</pubDate></item><item><title><![CDATA[Reply to Compile C# from NPP on Wed, 01 Feb 2017 18:14:35 GMT]]></title><description><![CDATA[<p dir="auto">thanks for your help, this is what I input:<br />
cmd /k csc.exe “$(C:\Users\user1\Documents\MyFiles\sample.cs)”</p>
]]></description><link>https://community.notepad-plus-plus.org/post/21452</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/21452</guid><dc:creator><![CDATA[Jawz Ferocity]]></dc:creator><pubDate>Wed, 01 Feb 2017 18:14:35 GMT</pubDate></item><item><title><![CDATA[Reply to Compile C# from NPP on Wed, 01 Feb 2017 17:59:29 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jawz-ferocity" aria-label="Profile: Jawz-Ferocity">@<bdi>Jawz-Ferocity</bdi></a></p>
<p dir="auto">it might be that a space in the file path is breaking this,<br />
did you try to encase $(FULL_CURRENT_PATH) in double quotes?<br />
“$(FULL_CURRENT_PATH)”</p>
<p dir="auto">If this doesn’t help submit what you put into run menu and where your files are.<br />
In addition, I would recommend using nppexec instead of run menu anyway.</p>
<p dir="auto">Cheers<br />
Claudia</p>
]]></description><link>https://community.notepad-plus-plus.org/post/21450</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/21450</guid><dc:creator><![CDATA[Claudia Frank]]></dc:creator><pubDate>Wed, 01 Feb 2017 17:59:29 GMT</pubDate></item></channel></rss>