added extra libs, ignore bin/obj

This commit is contained in:
tmont 2011-02-10 21:05:53 +00:00
parent 9a1f0347c0
commit 84bb9bf421
5 changed files with 5143 additions and 11 deletions

BIN
Lib/Moq.dll Normal file

Binary file not shown.

5120
Lib/Moq.xml Normal file

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -133,6 +133,28 @@
Logs all interceptable method calls via the <see cref="T:Portoa.Web.Unity.LoggerCallHandler"/>
</summary>
</member>
<member name="T:Portoa.Web.Unity.ILog4NetConfigurator">
<summary>
Exposes an interface to configure log4net
</summary>
</member>
<member name="M:Portoa.Web.Unity.ILog4NetConfigurator.SetName(System.String)">
<summary>
Sets the name of the logger to retrieve
</summary>
<param name="loggerName">Name of the logger to use</param>
</member>
<member name="M:Portoa.Web.Unity.ILog4NetConfigurator.UseXml(System.String)">
<summary>
Uses the <c>XmlConfigurator</c> to configure log4net
</summary>
<param name="filename">Optional filename to watch, otherwise it uses the default</param>
</member>
<member name="T:Portoa.Web.Unity.ConfigureLog4Net">
<summary>
Configures the application to use log4net
</summary>
</member>
<member name="T:Portoa.Web.Session.ISessionStore">
<summary>
Provides an interface for interacting with session data
@ -301,15 +323,5 @@
Controller factory that uses a service provider to resolve controllers
</summary>
</member>
<member name="M:Portoa.Web.Unity.ILog4NetConfigurator.SetName(System.String)">
<summary>
Sets the name of the logger to retrieve
</summary>
</member>
<member name="T:Portoa.Web.Unity.ConfigureLog4Net">
<summary>
Configures the application to use log4net
</summary>
</member>
</members>
</doc>

View File

@ -58,7 +58,7 @@ alter table game_quote drop foreign key fk_quote_game
create table vote (
vote_id INTEGER NOT NULL AUTO_INCREMENT,
created DATETIME not null,
point_value INTEGER not null,
direction INTEGER not null,
voter_id INTEGER not null,
quote_id INTEGER not null,
primary key (vote_id)