Class: FluentCommandBuilder::AspnetCompiler::V20::AspnetCompiler
- Inherits:
-
CommandBase
- Object
- CommandBase
- FluentCommandBuilder::AspnetCompiler::V20::AspnetCompiler
show all
- Defined in:
- lib/fluent_command_builder/command_builders/aspnet_compiler_20.rb
Instance Method Summary
collapse
Methods inherited from CommandBase
#configure!, #execute!, #to_s
Constructor Details
#initialize(underlying_builder, target_dir = nil) ⇒ AspnetCompiler
Returns a new instance of AspnetCompiler.
24
25
26
27
|
# File 'lib/fluent_command_builder/command_builders/aspnet_compiler_20.rb', line 24
def initialize(underlying_builder, target_dir=nil)
super underlying_builder
@b.append " #{@b.format target_dir}" unless target_dir.nil?
end
|
Instance Method Details
#allow_subsequent_updates {|@b| ... } ⇒ Object
43
44
45
46
47
|
# File 'lib/fluent_command_builder/command_builders/aspnet_compiler_20.rb', line 43
def allow_subsequent_updates
@b.append ' -u'
yield @b if block_given?
self
end
|
#aptca {|@b| ... } ⇒ Object
88
89
90
91
92
|
# File 'lib/fluent_command_builder/command_builders/aspnet_compiler_20.rb', line 88
def aptca
@b.append ' -aptca'
yield @b if block_given?
self
end
|
#delay_sign {|@b| ... } ⇒ Object
93
94
95
96
97
|
# File 'lib/fluent_command_builder/command_builders/aspnet_compiler_20.rb', line 93
def delay_sign
@b.append ' -delaySign'
yield @b if block_given?
self
end
|
#error_stack {|@b| ... } ⇒ Object
68
69
70
71
72
|
# File 'lib/fluent_command_builder/command_builders/aspnet_compiler_20.rb', line 68
def error_stack
@b.append ' -errorStack'
yield @b if block_given?
self
end
|
#fixed_names {|@b| ... } ⇒ Object
58
59
60
61
62
|
# File 'lib/fluent_command_builder/command_builders/aspnet_compiler_20.rb', line 58
def fixed_names
@b.append ' -fixedNames'
yield @b if block_given?
self
end
|
#force_debug_output {|@b| ... } ⇒ Object
53
54
55
56
57
|
# File 'lib/fluent_command_builder/command_builders/aspnet_compiler_20.rb', line 53
def force_debug_output
@b.append ' -d'
yield @b if block_given?
self
end
|
#force_overwrite_files {|@b| ... } ⇒ Object
48
49
50
51
52
|
# File 'lib/fluent_command_builder/command_builders/aspnet_compiler_20.rb', line 48
def force_overwrite_files
@b.append ' -f'
yield @b if block_given?
self
end
|
#full_rebuild {|@b| ... } ⇒ Object
63
64
65
66
67
|
# File 'lib/fluent_command_builder/command_builders/aspnet_compiler_20.rb', line 63
def full_rebuild
@b.append ' -c'
yield @b if block_given?
self
end
|
#key_container(container) {|@b| ... } ⇒ Object
83
84
85
86
87
|
# File 'lib/fluent_command_builder/command_builders/aspnet_compiler_20.rb', line 83
def key_container(container)
@b.append " -keyContainer #{@b.format container}"
yield @b if block_given?
self
end
|
#key_file(file) {|@b| ... } ⇒ Object
78
79
80
81
82
|
# File 'lib/fluent_command_builder/command_builders/aspnet_compiler_20.rb', line 78
def key_file(file)
@b.append " -keyFile #{@b.format file}"
yield @b if block_given?
self
end
|
28
29
30
31
32
|
# File 'lib/fluent_command_builder/command_builders/aspnet_compiler_20.rb', line 28
def metabase_path(metabase_path)
@b.append " -m #{@b.format metabase_path}"
yield @b if block_given?
self
end
|
#no_logo {|@b| ... } ⇒ Object
73
74
75
76
77
|
# File 'lib/fluent_command_builder/command_builders/aspnet_compiler_20.rb', line 73
def no_logo
@b.append ' -noLogo'
yield @b if block_given?
self
end
|
#physical_path(physical_path) {|@b| ... } ⇒ Object
38
39
40
41
42
|
# File 'lib/fluent_command_builder/command_builders/aspnet_compiler_20.rb', line 38
def physical_path(physical_path)
@b.append " -p #{@b.format physical_path}"
yield @b if block_given?
self
end
|
#virtual_path(virtual_path) {|@b| ... } ⇒ Object
33
34
35
36
37
|
# File 'lib/fluent_command_builder/command_builders/aspnet_compiler_20.rb', line 33
def virtual_path(virtual_path)
@b.append " -v #{@b.format virtual_path}"
yield @b if block_given?
self
end
|