ClientBuildManagerParameter.StrongNameKeyFile 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置编译期间使用的密钥文件。
public:
property System::String ^ StrongNameKeyFile { System::String ^ get(); void set(System::String ^ value); };
public string StrongNameKeyFile { get; set; }
member this.StrongNameKeyFile : string with get, set
Public Property StrongNameKeyFile As String
属性值
表示密钥文件的值的 String。
示例
下面的代码示例是类概述中的代码示例的 ClientBuildManager 一部分。 在此示例中,创建了 一个 ClientBuildManagerParameter 对象并设置了其值。 生成的程序集将具有基于提供的密钥文件的强名称,并将根据提供 PrecompilationFlags 的值进行预编译。
_cbmParameter = new ClientBuildManagerParameter();
_cbmParameter.PrecompilationFlags = _flags;
_cbmParameter.StrongNameKeyFile = _keyFile;
builder = new
ClientBuildManager(_vPath, _pPath, _tPath, _cbmParameter);
_cbmParameter = New ClientBuildManagerParameter()
_cbmParameter.PrecompilationFlags = _flags
_cbmParameter.StrongNameKeyFile = _keyFile
builder = New ClientBuildManager(_vPath, _pPath, _tPath, _cbmParameter)
注解
StrongNameKeyContainer为 属性或 StrongNameKeyFile 属性分配一个值以创建强名称程序集。 无需设置这两个值即可创建强名称程序集。