Skip to content

Commit

Permalink
Added MVC project (and test project)
Browse files Browse the repository at this point in the history
  • Loading branch information
gmobydick committed Jul 29, 2011
1 parent 1810ecc commit 044839e
Show file tree
Hide file tree
Showing 75 changed files with 42,951 additions and 4 deletions.
File renamed without changes.
File renamed without changes.
Expand Up @@ -9,8 +9,8 @@
<ProjectGuid>{2E8A6C4C-B79E-4B18-943F-DEDE0F8ED58A}</ProjectGuid> <ProjectGuid>{2E8A6C4C-B79E-4B18-943F-DEDE0F8ED58A}</ProjectGuid>
<OutputType>Library</OutputType> <OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder> <AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>TestTaskDO</RootNamespace> <RootNamespace>TaskDO.Tests</RootNamespace>
<AssemblyName>TestTaskDO</AssemblyName> <AssemblyName>TaskDO.Tests</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion> <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment> <FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> <ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
Expand Down
1 change: 1 addition & 0 deletions TaskDO/Mapping/TaskRecurrenceMap.cs
Expand Up @@ -10,6 +10,7 @@ public TaskRecurrenceMap()
Map(x => x.RecurrencePeriode).CustomType(typeof(Int32)).Not.Nullable(); Map(x => x.RecurrencePeriode).CustomType(typeof(Int32)).Not.Nullable();
Map(x => x.SkipPeriod); Map(x => x.SkipPeriod);
Map(x => x.NumberOfRepeats); Map(x => x.NumberOfRepeats);

} }
} }
} }
14 changes: 14 additions & 0 deletions TaskMVC.Tests/App.config
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8" ?>
<!--
Note: Add entries to the App.config file for configuration settings
that apply only to the Test project.
-->
<configuration>
<appSettings>

</appSettings>

<connectionStrings>

</connectionStrings>
</configuration>

0 comments on commit 044839e

Please sign in to comment.