mirror of
https://github.com/reactos/reactos.git
synced 2025-06-26 13:19:45 +00:00
- Moved commands outside TechBot.Library to TechBot.Commands.Common and TechBot.Commands.MSDN except for Command base classes
- Made TechBot more configurable through .config files - Code refactoring - Removed automatic parameter parsing support to make everyone happy svn path=/trunk/; revision=33586
This commit is contained in:
parent
6d51a10a1b
commit
ac77d9d3a6
47 changed files with 1783 additions and 489 deletions
86
irc/TechBot/TechBot.Console/Settings.Designer.cs
generated
Normal file
86
irc/TechBot/TechBot.Console/Settings.Designer.cs
generated
Normal file
|
@ -0,0 +1,86 @@
|
|||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:2.0.50727.1433
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace TechBot.Console {
|
||||
|
||||
|
||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "8.0.0.0")]
|
||||
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
|
||||
|
||||
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
|
||||
|
||||
public static Settings Default {
|
||||
get {
|
||||
return defaultInstance;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Configuration.UserScopedSettingAttribute()]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Configuration.DefaultSettingValueAttribute("irc.eu.freenode.net")]
|
||||
public string IRCServerHostName {
|
||||
get {
|
||||
return ((string)(this["IRCServerHostName"]));
|
||||
}
|
||||
set {
|
||||
this["IRCServerHostName"] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Configuration.UserScopedSettingAttribute()]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Configuration.DefaultSettingValueAttribute("rbuildbottest2")]
|
||||
public string IRCChannelNames {
|
||||
get {
|
||||
return ((string)(this["IRCChannelNames"]));
|
||||
}
|
||||
set {
|
||||
this["IRCChannelNames"] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Configuration.UserScopedSettingAttribute()]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Configuration.DefaultSettingValueAttribute("RBuildBot2")]
|
||||
public string IRCBotName {
|
||||
get {
|
||||
return ((string)(this["IRCBotName"]));
|
||||
}
|
||||
set {
|
||||
this["IRCBotName"] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Configuration.UserScopedSettingAttribute()]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Configuration.DefaultSettingValueAttribute("qwerty")]
|
||||
public string IRCBotPassword {
|
||||
get {
|
||||
return ((string)(this["IRCBotPassword"]));
|
||||
}
|
||||
set {
|
||||
this["IRCBotPassword"] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Configuration.UserScopedSettingAttribute()]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Configuration.DefaultSettingValueAttribute("6667")]
|
||||
public int IRCServerHostPort {
|
||||
get {
|
||||
return ((int)(this["IRCServerHostPort"]));
|
||||
}
|
||||
set {
|
||||
this["IRCServerHostPort"] = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue