c# - 带有版本号的 Monotouch 自动增量内部版本号
<p><p>关于使用 C# 开发 Monotouch IOS:</p>
<p>我正在尝试在我的 Monotouch IOS 项目中实现一个自动递增的构建版本号。像 .. 这样的东西会很好, 部分会在每次构建时自动递增。</p>
<p>我在下面找到了这篇文章,但它似乎使用的是 Objective C,我不知道如何使用 Monotouch C# 来实现它。 </p>
<p> <a href="http://monotouch.2284126.n4.nabble.com/How-to-increment-the-iPhone-Application-Version-number-on-every-build-td4425363.html" rel="noreferrer noopener nofollow">http://monotouch.2284126.n4.nabble.com/How-to-increment-the-iPhone-Application-Version-number-on-every-build-td4425363.html</a> </p>
<p>在 Monotouch 中,我可以访问“System.Reflection.AssemblyVersionAttribute”,但我不知道如何使用它。我尝试了简单的事情,例如:</p>
<pre><code>System.Reflection.AssemblyVersionAttribute tempvar = new System.Reflection.AssemblyVersionAttribute ("1.2.*");
Console.WriteLine("tempvar = " + tempvar.Version);
</code></pre>
<p>但打印输出的字面意思是:“1.2.*”并且不会自动递增。</p>
<p>任何人都经历过这个?提前致谢</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p><code>System.Reflection.AssemblyVersionAttribute</code> 旨在用作属性。编译器会将 <code>*</code> 替换为数字。例如</p>
<pre><code>
</code></pre>
<p>您可能还想看看 <a href="http://monotouch.2284126.n4.nabble.com/Displaying-Bundle-Version-in-Settings-Solved-FYI-tt4656018.html" rel="noreferrer noopener nofollow">email</a>了解如何使用您的应用程序包版本。</p></p>
<p style="font-size: 20px;">关于c# - 带有版本号的 Monotouch 自动增量内部版本号,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/11884859/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/11884859/
</a>
</p>
页:
[1]