Метод | Описание | |
---|---|---|
AddCustomAttribute ( string attributeNamespace, string name, bool isQuoted, string value ) : IAssemblyInfoDetails |
Adds a custom attribute to the assemblyInfo file
|
|
ClsCompliant ( bool compliant ) : IAssemblyInfoDetails |
States if the assembly is CLS Compliant. CLS compliant means that all classes only expose features that are common accross all .NET languages. Things that make an assembly non-cls compliant: Exposing unsigned types. Unsafe types (e.g. pointers) should not be exposed. Operators should not be overloaded Two types or methods should not be included that differ only by case. e.g. doWork and DOWORK. |
|
ComVisible ( bool visible ) : IAssemblyInfoDetails |
Explicitly states if this assembly is visible to COM clients. If the attribute is missing then the assembly is COM visible.
|
|
Company ( string value ) : IAssemblyInfoDetails |
Sets the company attribute of the assembly
|
|
Copyright ( string value ) : IAssemblyInfoDetails |
Sets the copyright attribute of the assembly
|
|
Culture ( string culture ) : IAssemblyInfoDetails |
Sets the culture
|
|
DelaySign ( bool delaySign ) : IAssemblyInfoDetails |
Sets if to delay sign the assembly
|
|
Description ( string value ) : IAssemblyInfoDetails |
Sets the description attribute of the assembly
|
|
FileVersion ( string version ) : IAssemblyInfoDetails |
Sets the file version
|
|
Import ( ) : IAssemblyInfoDetails |
Import a namespace. Will generate a using namespace; in C# and imports namespace in VB Duplicate namespace imports will be automatically ignored |
|
InformationalVersion ( string version ) : IAssemblyInfoDetails |
Sets the informational version
|
|
KeyFile ( string path ) : IAssemblyInfoDetails |
Sets teh path to the Strong Named Key for an assembly
|
|
KeyName ( string name ) : IAssemblyInfoDetails |
Sets the KeyName
|
|
OutputPath ( FluentFs path ) : IAssemblyInfoDetails | ||
OutputPath ( string path ) : IAssemblyInfoDetails | ||
Product ( string value ) : IAssemblyInfoDetails |
Sets the product attribute of the assembly
|
|
Title ( string value ) : IAssemblyInfoDetails |
Sets the title attribute of the assembly
|
|
Trademark ( string trademark ) : IAssemblyInfoDetails |
Sets the trademark attribute
|
|
Version ( System.Version value ) : IAssemblyInfoDetails |
Sets the assembly version.
|
|
Version ( string value ) : IAssemblyInfoDetails |
Sets the assembly version.
|
Метод | Описание | |
---|---|---|
AssemblyInfoDetails ( IAssemblyInfoBuilder assemblyInfoBuilder ) : System | ||
AssemblyInfoDetails ( IAssemblyInfoBuilder assemblyInfoBuilder, IFileSystemHelper fileSystemHelper ) : System | ||
ImportDropIfDuplicate ( string @namespace ) : void | ||
InternalExecute ( ) : void | ||
OutputTo ( FluentFs artifactLocation ) : void | ||
OutputTo ( string filePath ) : void |
public AddCustomAttribute ( string attributeNamespace, string name, bool isQuoted, string value ) : IAssemblyInfoDetails | ||
attributeNamespace | string | The namespace that the attribute exists in |
name | string | The name of the attribute |
isQuoted | bool | Wether or not to quote the value when the file is generated |
value | string | The value of the attribute |
Результат | IAssemblyInfoDetails |
public ClsCompliant ( bool compliant ) : IAssemblyInfoDetails | ||
compliant | bool | sets cls compliant |
Результат | IAssemblyInfoDetails |
public ComVisible ( bool visible ) : IAssemblyInfoDetails | ||
visible | bool | sets com visibility |
Результат | IAssemblyInfoDetails |
public Company ( string value ) : IAssemblyInfoDetails | ||
value | string | The company to set |
Результат | IAssemblyInfoDetails |
public Copyright ( string value ) : IAssemblyInfoDetails | ||
value | string | The copyright to set |
Результат | IAssemblyInfoDetails |
public Culture ( string culture ) : IAssemblyInfoDetails | ||
culture | string | The culture of the assembly |
Результат | IAssemblyInfoDetails |
public DelaySign ( bool delaySign ) : IAssemblyInfoDetails | ||
delaySign | bool | Wether to delay sign the assembly |
Результат | IAssemblyInfoDetails |
public Description ( string value ) : IAssemblyInfoDetails | ||
value | string | The description to set |
Результат | IAssemblyInfoDetails |
public FileVersion ( string version ) : IAssemblyInfoDetails | ||
version | string | |
Результат | IAssemblyInfoDetails |
public InformationalVersion ( string version ) : IAssemblyInfoDetails | ||
version | string | |
Результат | IAssemblyInfoDetails |
public KeyFile ( string path ) : IAssemblyInfoDetails | ||
path | string | The path to the snk file |
Результат | IAssemblyInfoDetails |
public KeyName ( string name ) : IAssemblyInfoDetails | ||
name | string | The name of the key |
Результат | IAssemblyInfoDetails |
public OutputPath ( FluentFs path ) : IAssemblyInfoDetails | ||
path | FluentFs | |
Результат | IAssemblyInfoDetails |
public OutputPath ( string path ) : IAssemblyInfoDetails | ||
path | string | |
Результат | IAssemblyInfoDetails |
public Product ( string value ) : IAssemblyInfoDetails | ||
value | string | The product to set |
Результат | IAssemblyInfoDetails |
public Title ( string value ) : IAssemblyInfoDetails | ||
value | string | The title to use |
Результат | IAssemblyInfoDetails |
public Trademark ( string trademark ) : IAssemblyInfoDetails | ||
trademark | string | The value representing the trademark |
Результат | IAssemblyInfoDetails |
public Version ( System.Version value ) : IAssemblyInfoDetails | ||
value | System.Version | a version object |
Результат | IAssemblyInfoDetails |
public Version ( string value ) : IAssemblyInfoDetails | ||
value | string | a version in the format of Major.Minor.[Build].[Revision] |
Результат | IAssemblyInfoDetails |