开源 企业版 高校版 私有云 模力方舟 AI 队友
代码拉取完成,页面将自动刷新
加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
文件
master
分支 (14)
标签 (61)
master
4.x
nuget-3.0-ctp
reports
filemodels
newNR
newNRILSpyDebugger
addin-manager-package-subdirectories
newNRvisualizers
4.2
4.1
formsdesignerappdomain
4.0
shortcuts
5.2.1
5.2.0
5.0.0
5.0-RC1
5.0-Beta5
5.0-Beta4
5.0-Beta3
5.0-Beta2
4.4.1
5.0-Beta1
4.4.0
4.3.3
4.3.2
4.3.1
4.3.0
4.3-Beta1
4.2.2
4.2.1
4.2.0
4.2-RC1
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
项目仓库所选许可证以仓库主分支所使用许可证为准
master
分支 (14)
标签 (61)
master
4.x
nuget-3.0-ctp
reports
filemodels
newNR
newNRILSpyDebugger
addin-manager-package-subdirectories
newNRvisualizers
4.2
4.1
formsdesignerappdomain
4.0
shortcuts
5.2.1
5.2.0
5.0.0
5.0-RC1
5.0-Beta5
5.0-Beta4
5.0-Beta3
5.0-Beta2
4.4.1
5.0-Beta1
4.4.0
4.3.3
4.3.2
4.3.1
4.3.0
4.3-Beta1
4.2.2
4.2.1
4.2.0
4.2-RC1
克隆/下载
克隆/下载
提示
下载代码请复制以下命令到终端执行
为确保你提交的代码身份被 Gitee 正确识别,请执行以下命令完成配置
初次使用 SSH 协议进行代码克隆、推送等操作时,需按下述提示完成 SSH 配置
1 生成 RSA 密钥
2 获取 RSA 公钥内容,并配置到 SSH公钥
在 Gitee 上使用 SVN,请访问 使用指南
使用 HTTPS 协议时,命令行会出现如下账号密码验证步骤。基于安全考虑,Gitee 建议 配置并使用私人令牌 替代登录密码进行克隆、推送等操作
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # 私人令牌
master
分支 (14)
标签 (61)
master
4.x
nuget-3.0-ctp
reports
filemodels
newNR
newNRILSpyDebugger
addin-manager-package-subdirectories
newNRvisualizers
4.2
4.1
formsdesignerappdomain
4.0
shortcuts
5.2.1
5.2.0
5.0.0
5.0-RC1
5.0-Beta5
5.0-Beta4
5.0-Beta3
5.0-Beta2
4.4.1
5.0-Beta1
4.4.0
4.3.3
4.3.2
4.3.1
4.3.0
4.3-Beta1
4.2.2
4.2.1
4.2.0
4.2-RC1
SharpDevelop
/
doc
/
technotes
/
Versioning.html
SharpDevelop
/
doc
/
technotes
/
Versioning.html
Versioning.html 3.21 KB
一键复制 编辑 原始数据 按行查看 历史
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="CONTENT-TYPE" CONTENT="text/html; charset=windows-1252">
<TITLE>Assembly Versioning</TITLE>
<META NAME="GENERATOR" CONTENT="OpenOffice.org 2.0 (Win32)">
<META NAME="AUTHOR" CONTENT="Daniel Grunwald">
<META NAME="CREATED" CONTENT="20051129;18411803">
</HEAD>
<BODY LANG="en-US" DIR="LTR">
<H1>Assembly Versioning in SharpDevelop</H1>
<H2>How the versions are set</H2>
<P>The assemblyInfo.cs files are updated by the tool
&quot;UpdateAssemblyInfo&quot;. UpdateAssemblyInfo
runs as pre-compile target and always sets the number in GlobalAssemblyInfo.cs
to the number of commits since a hard-coded start commit (<code>const string BaseCommit</code>). That number is displayed
in the splash screen, error dialog and about dialog.
It is also used as assembly version.
</P>
<p>
The revision number is retrieved by running "git rev-list" and counting the number of output lines.
When this doesn't work (e.g. in an exported tree like the source code download on the build server; or git not present in PATH),
the content of the file src/REVISION is used as revision number.
When even this fails, the revision '0' is used.
</p>
<H2>Publisher Policy</H2>
<P>While the assembly versioning schema is not so important inside
SharpDevelop, it is important for 3rd party addins because the main
libraries like ICSharpCode.Core are strong-named. Normally, an
assembly compiled against a strong-named assembly can only be used
with exactly the version of the library it was compiled with.
</P>
<P>This means if a 3rd-party addin was compiled against version
2.1.0.a, it cannot bind to version 2.0.0.b or 2.0.1.c; even if it
would run without problems. Therefore, SharpDevelop.exe.config
contains binding redirects for the strong-named libraries that addins
would want to reference.
</P>
<P>The binding redirects always redirect requests of a version in the range
from some past version containing large breaking changes to the current version.
We try to avoid such changes after the first release candidate of a SharpDevelop version,
so after the release of SharpDevelop x.y RC1, all future SharpDevelop x.y.*.* versions will be
in large parts binary compatible.
<br>
For example, SharpDevevelop 2.1.0.1708 uses this redirection:</P>
<pre>&lt;bindingRedirect oldVersion="2.1.0.1661-2.1.0.1708" newVersion="2.1.0.1708"/&gt;</pre>
<P>
That means if you want to release a 3rd-party AddIn (AddIn that is not shipped with SharpDevelop),
compile it against the oldest SharpDevelop version you want your AddIn to run with.<br>
An AddIn compiled against 2.1.0.1800 will run with 2.1.0.1801 (and hopefully even with 2.1.23.45678),
but an AddIn compiled against 2.1.0.1801 will fail to load in SharpDevelop 2.1.0.1800.
</P>
<P>
Additionally, your AddIn should include a <code>&lt;Dependency&gt;</code> in its
.addin file to indicate which SharpDevelop version it is intended for.
This way, users trying to install the AddIn in an incompatible SharpDevelop version will be warned about the
incompatibility, instead of getting an obscure error message.
</P>
<pre>
&lt;Manifest>
&lt;Identity name = "YourAddInName"/>
&lt;Dependency addin="SharpDevelop" version="5.0"/>
&lt;/Manifest>
</pre>
</BODY>
</HTML>
Loading...
举报
举报成功
我们将于2个工作日内通过站内信反馈结果给你!
请认真填写举报原因,尽可能描述详细。
请选择举报类型
取消
发送
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

简介

#develop (short for SharpDevelop) is a free IDE for .NET programming languages. http://www.icsharpcode.net
取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
编辑仓库简介
简介内容
主页
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/hlizard/SharpDevelop.git
git@gitee.com:hlizard/SharpDevelop.git
hlizard
SharpDevelop
SharpDevelop
master
点此查找更多帮助

搜索帮助

评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册

AltStyle によって変換されたページ (->オリジナル) /