<?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"
	>
<channel>
	<title>Comments on: AssemblyVersion - BuildNo Limitation</title>
	<atom:link href="http://michaelsync.net/2007/01/12/assemblyversion-buildno-limitation/feed" rel="self" type="application/rss+xml" />
	<link>http://michaelsync.net/2007/01/12/assemblyversion-buildno-limitation</link>
	<description>Sharing our knowledge</description>
	<pubDate>Fri, 08 Aug 2008 21:00:37 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: 0205</title>
		<link>http://michaelsync.net/2007/01/12/assemblyversion-buildno-limitation#comment-1812</link>
		<dc:creator>0205</dc:creator>
		<pubDate>Sun, 07 Oct 2007 09:03:29 +0000</pubDate>
		<guid isPermaLink="false">http://michaelsync.net/2007/01/12/assemblyversion-buildno-limitation#comment-1812</guid>
		<description>&lt;strong&gt;0205&lt;/strong&gt;

Free Flash gamesz online Visit www.Flashgamesz.net</description>
		<content:encoded><![CDATA[<p><strong>0205</strong></p>
<p>Free Flash gamesz online Visit <a href="http://www.Flashgamesz.net" rel="nofollow">http://www.Flashgamesz.net</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mUnit : Mun talks technology &#187; Assembly Version Numbers and .NET</title>
		<link>http://michaelsync.net/2007/01/12/assemblyversion-buildno-limitation#comment-1802</link>
		<dc:creator>mUnit : Mun talks technology &#187; Assembly Version Numbers and .NET</dc:creator>
		<pubDate>Sat, 17 Feb 2007 22:02:29 +0000</pubDate>
		<guid isPermaLink="false">http://michaelsync.net/2007/01/12/assemblyversion-buildno-limitation#comment-1802</guid>
		<description>[...] I came across Michael Sync&#8217;s blog, where he also experienced this problem and wrote about his findings.&#160; In summary, he [...]</description>
		<content:encoded><![CDATA[<p>[...] I came across Michael Sync&#8217;s blog, where he also experienced this problem and wrote about his findings.&nbsp; In summary, he [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ashish C.</title>
		<link>http://michaelsync.net/2007/01/12/assemblyversion-buildno-limitation#comment-1800</link>
		<dc:creator>Ashish C.</dc:creator>
		<pubDate>Wed, 17 Jan 2007 11:18:35 +0000</pubDate>
		<guid isPermaLink="false">http://michaelsync.net/2007/01/12/assemblyversion-buildno-limitation#comment-1800</guid>
		<description>Remember if you grow tired of programming you could of course freeze yourself anf go to 9999! :P

I'll skip the post since it goes over my head!</description>
		<content:encoded><![CDATA[<p>Remember if you grow tired of programming you could of course freeze yourself anf go to 9999! <img src='http://michaelsync.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /><br />
I&#8217;ll skip the post since it goes over my head!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex Espinoza</title>
		<link>http://michaelsync.net/2007/01/12/assemblyversion-buildno-limitation#comment-1801</link>
		<dc:creator>Alex Espinoza</dc:creator>
		<pubDate>Tue, 16 Jan 2007 21:25:25 +0000</pubDate>
		<guid isPermaLink="false">http://michaelsync.net/2007/01/12/assemblyversion-buildno-limitation#comment-1801</guid>
		<description>The thing is the actual add-in doesn't follow the rules it says it does.

The first thing is that this plug in uses the reference date 1/1/2000 00:00:00.

AA &#38; BB are used my project. So it is Major version 1, and minor version 1.

CC=25 &#38; DD=68 are seen as 2568 days since the reference date (1/1/2000).

EE=400 &#38; FF=48 are seen as 40048 seconds. But this is interesting, remeber the 65534 limit for build numbers? well 40048 seconds is actually 80096, but since that number is too big, the developer of the add-in cuts the seconds in half.

revisionVersion = (int)(currentDateTime.TimeOfDay.TotalSeconds / 2);

Another really interesting thing, is that the plug in uses Utc time.</description>
		<content:encoded><![CDATA[<p>The thing is the actual add-in doesn&#8217;t follow the rules it says it does.</p>
<p>The first thing is that this plug in uses the reference date 1/1/2000 00:00:00.</p>
<p>AA &amp; BB are used my project. So it is Major version 1, and minor version 1.</p>
<p>CC=25 &amp; DD=68 are seen as 2568 days since the reference date (1/1/2000).</p>
<p>EE=400 &amp; FF=48 are seen as 40048 seconds. But this is interesting, remeber the 65534 limit for build numbers? well 40048 seconds is actually 80096, but since that number is too big, the developer of the add-in cuts the seconds in half.</p>
<p>revisionVersion = (int)(currentDateTime.TimeOfDay.TotalSeconds / 2);</p>
<p>Another really interesting thing, is that the plug in uses Utc time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Sync</title>
		<link>http://michaelsync.net/2007/01/12/assemblyversion-buildno-limitation#comment-1803</link>
		<dc:creator>Michael Sync</dc:creator>
		<pubDate>Sat, 13 Jan 2007 13:35:54 +0000</pubDate>
		<guid isPermaLink="false">http://michaelsync.net/2007/01/12/assemblyversion-buildno-limitation#comment-1803</guid>
		<description>Thanks so much. Alex.

&lt;blockquote&gt;
This article  "Build Number Automation for Visual Studio .NET Projects By Darrel Liu"

AA.BB.CCDD.EEFF

AA is the major version
BB is the minor version
CC will be used to represent the number of months elapsed since the starting of the project,
DD the number of days after those months.
EE and FF will be the hours and minutes the build was created in that day.

for example,
if the project started on Jan 10, 2003 with version 1.0 and you run this macro on Mar 15, 2003 at 14:00, this is the build number that comes out of the calculation: 1.0.0205.1400.
&lt;/blockquote&gt;

Is it the way that you are using??
If so,  I'm not sure why you got this no "1.1.2568.40048" for today??

AA  = 1
BB  = 1
CC = 25
DD = 68
EE = 400
FF = 48</description>
		<content:encoded><![CDATA[<p>Thanks so much. Alex.</p>
<blockquote><p>
This article  &#8220;Build Number Automation for Visual Studio .NET Projects By Darrel Liu&#8221;</p>
<p>AA.BB.CCDD.EEFF</p>
<p>AA is the major version<br />
BB is the minor version<br />
CC will be used to represent the number of months elapsed since the starting of the project,<br />
DD the number of days after those months.<br />
EE and FF will be the hours and minutes the build was created in that day.</p>
<p>for example,<br />
if the project started on Jan 10, 2003 with version 1.0 and you run this macro on Mar 15, 2003 at 14:00, this is the build number that comes out of the calculation: 1.0.0205.1400.
</p></blockquote>
<p>Is it the way that you are using??<br />
If so,  I&#8217;m not sure why you got this no &#8220;1.1.2568.40048&#8243; for today??</p>
<p>AA  = 1<br />
BB  = 1<br />
CC = 25<br />
DD = 68<br />
EE = 400<br />
FF = 48</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex Espinoza</title>
		<link>http://michaelsync.net/2007/01/12/assemblyversion-buildno-limitation#comment-1804</link>
		<dc:creator>Alex Espinoza</dc:creator>
		<pubDate>Fri, 12 Jan 2007 22:17:12 +0000</pubDate>
		<guid isPermaLink="false">http://michaelsync.net/2007/01/12/assemblyversion-buildno-limitation#comment-1804</guid>
		<description>This is really interesting. I also thought you could use whatever numbers you would like.

I'm currently using &lt;a href="http://www.codeproject.com/dotnet/VersioningControlledBuild.asp" rel="nofollow"&gt;VCB&lt;/a&gt; add-in to manage my build versions. I'm actually using the Microsoft scheme which uses the date and hour. For today I got: 1.1.2568.40048

It is some kind of Date&#38;Time scheme. You should try this tool. It rocks.</description>
		<content:encoded><![CDATA[<p>This is really interesting. I also thought you could use whatever numbers you would like.</p>
<p>I&#8217;m currently using <a href="http://www.codeproject.com/dotnet/VersioningControlledBuild.asp" rel="nofollow">VCB</a> add-in to manage my build versions. I&#8217;m actually using the Microsoft scheme which uses the date and hour. For today I got: 1.1.2568.40048</p>
<p>It is some kind of Date&amp;Time scheme. You should try this tool. It rocks.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
