<?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" xmlns:media="http://search.yahoo.com/mrss/"><channel><title><![CDATA[Mofaggol Hoshen - DEVELOPERS.DE]]></title><description><![CDATA[Software Development Blog with focus on .NET, Windows, Microsoft Azure powered by daenet]]></description><link>https://developers.de/</link><image><url>https://developers.de/favicon.png</url><title>Mofaggol Hoshen - DEVELOPERS.DE</title><link>https://developers.de/</link></image><generator>Ghost 1.21</generator><lastBuildDate>Fri, 10 Apr 2026 16:28:35 GMT</lastBuildDate><atom:link href="https://developers.de/author/mofaggol/rss/" rel="self" type="application/rss+xml"/><ttl>60</ttl><item><title><![CDATA[ClickOnce on GitHub]]></title><description><![CDATA[<div class="kg-card-markdown"><p>I spend almost one day for ClickOnce in GitHub, I googled but I did not get any clear solution for this, I am really happy at last  I have successfully done it. I am going to share how to push ClickOne in GitHub step by step -</p>
<h3 id="step1properties">Step-1 Properties</h3>
<p>Right-Click</p></div>]]></description><link>https://developers.de/2018/02/10/clickonce-on-github/</link><guid isPermaLink="false">5a7e2deeccc84f1bc88cb342</guid><category><![CDATA[ClickOnce]]></category><category><![CDATA[.NET]]></category><dc:creator><![CDATA[Mofaggol Hoshen]]></dc:creator><pubDate>Sat, 10 Feb 2018 01:35:04 GMT</pubDate><content:encoded><![CDATA[<div class="kg-card-markdown"><p>I spend almost one day for ClickOnce in GitHub, I googled but I did not get any clear solution for this, I am really happy at last  I have successfully done it. I am going to share how to push ClickOne in GitHub step by step -</p>
<h3 id="step1properties">Step-1 Properties</h3>
<p>Right-Click on Project -&gt; Properties<br>
<img src="https://developersde.blob.core.windows.net/usercontent/2018/2/92328_ProjectProperties.png" alt="92328_ProjectProperties"></p>
<h3 id="step2installationurl">Step-2 Installation URL</h3>
<p>Select Publish tab from project property and give Installation Folder URL and Update location<br>
<a href="https://raw.githubusercontent.com/%5Baccount_name%5D/%5Brepo_name%5D/%5Bbranch%5D/%5Bsolution_name%5D/%5Bproject_name%5D/publish/">https://raw.githubusercontent.com/[account_name]/[repo_name]/[branch]/[solution_name]/[project_name]/publish/</a><br>
For example -<br>
<a href="https://raw.githubusercontent.com/summoncse/ClickOnceOnGitHb/master/ClickOnceOnGit/ClickOnceOnGit/publish/">https://raw.githubusercontent.com/summoncse/ClickOnceOnGitHb/master/ClickOnceOnGit/ClickOnceOnGit/publish/</a><br>
<img src="https://developersde.blob.core.windows.net/usercontent/2018/2/92331_Update%20Url.png" alt="92331_Update%20Url"></p>
<h3 id="step3certificate">Step-3 Certificate</h3>
<p>From project property click Signing tab and select “Sign the ClickOnce manifests”<br>
<img src="https://developersde.blob.core.windows.net/usercontent/2018/2/1016_Certificate.PNG" alt="1016_Certificate"><br>
Before pushing you have to complete Step-4 and Step-5</p>
<h3 id="step4editgitignore">Step-4 Edit <code>.gitignore</code></h3>
<p>You have to include publish directory with your Git repository, it means simply delete “<code>publish/</code>” from the <a href="https://github.com/github/gitignore/blob/master/VisualStudio.gitignore">Git ignore file</a> or explicitly allow the publish directory for Git repository by adding <code>!publish/</code> to <a href="https://github.com/github/gitignore/blob/master/VisualStudio.gitignore">Git ignore file</a></p>
<h3 id="step5editgitattributes">Step-5 Edit <code>.gitattributes</code></h3>
<p>In <code>.gitattributes</code> allow Git with all line endings of the ClickOnce deployment files.</p>
<blockquote>
<p>*.manifest binary<br>
*.application binary<br>
*.deploy binary</p>
</blockquote>
<p>More details about <a href="https://help.github.com/articles/dealing-with-line-endings/">Dealing with line endings</a>.</p>
<h3 id="step6publish">Step-6 Publish</h3>
<p>Click “Publish Wizard” from project property for publishing if you have new version just click “Publish Now”</p>
</div>]]></content:encoded></item></channel></rss>