diff --git a/CodeProse.Shifter/CodeProse.Shifter.csproj b/CodeProse.Shifter/CodeProse.Shifter.csproj index 79082c3..2bd74d5 100644 --- a/CodeProse.Shifter/CodeProse.Shifter.csproj +++ b/CodeProse.Shifter/CodeProse.Shifter.csproj @@ -40,17 +40,21 @@ ..\packages\DapperExtensions.1.3.0\lib\net40\DapperExtensions.dll - - ..\packages\Nancy.0.9.0\lib\net40\Nancy.dll + + False + ..\packages\Nancy.0.10.0\lib\net40\Nancy.dll - - ..\packages\Nancy.Authentication.Forms.0.9.0\lib\net40\Nancy.Authentication.Forms.dll + + False + ..\packages\Nancy.Authentication.Forms.0.10.0\lib\net40\Nancy.Authentication.Forms.dll - - ..\packages\Nancy.Hosting.Aspnet.0.9.0\lib\net40\Nancy.Hosting.Aspnet.dll + + False + ..\packages\Nancy.Hosting.Aspnet.0.10.0\lib\net40\Nancy.Hosting.Aspnet.dll - - ..\packages\Nancy.Viewengines.Razor.0.9.0\lib\net40\Nancy.ViewEngines.Razor.dll + + False + ..\packages\Nancy.Viewengines.Razor.0.10.0\lib\net40\Nancy.ViewEngines.Razor.dll ..\packages\System.Data.SQLite.1.0.79.0\lib\net40\System.Data.SQLite.dll @@ -66,8 +70,8 @@ - - ..\packages\Nancy.Viewengines.Razor.0.9.0\lib\net40\System.Web.Razor.dll + + ..\packages\Nancy.Viewengines.Razor.0.10.0\lib\net40\System.Web.Razor.dll @@ -81,7 +85,10 @@ + + + @@ -96,7 +103,8 @@ PreserveNewest Designer - + + @@ -120,7 +128,10 @@ - + + + + @@ -186,6 +197,11 @@ + + +xcopy /s /y "$(SolutionDir)packages\Nancy.Viewengines.Razor.0.10.0\BuildProviders\Nancy.ViewEngines.Razor.BuildProviders.dll" "$(ProjectDir)bin" +xcopy /s /y "$(SolutionDir)packages\Nancy.Viewengines.Razor.0.10.0\lib\Net40\Nancy.ViewEngines.Razor.dll" "$(ProjectDir)bin" + + +
+ + + + + + - - + + + + + + + @@ -17,4 +30,7 @@ + + + \ No newline at end of file diff --git a/CodeProse.Shifter/content/base.css b/CodeProse.Shifter/content/base.css index eb03091..88e4eab 100644 --- a/CodeProse.Shifter/content/base.css +++ b/CodeProse.Shifter/content/base.css @@ -152,4 +152,13 @@ li.user .ui-widget-content { padding: 10px; +} + +.time-selector > * { + display: inline; +} + +.number-picker input[type=button], .number-picker input[type=text], .number-picker select { + width: 40px; + height: 40px; } \ No newline at end of file diff --git a/CodeProse.Shifter/content/number-picker.js b/CodeProse.Shifter/content/number-picker.js new file mode 100644 index 0000000..abc846a --- /dev/null +++ b/CodeProse.Shifter/content/number-picker.js @@ -0,0 +1,46 @@ +(function ($) { + $(document).ready(function () { + $('.number-picker').each(function () { + var picker = $(this); + var max = picker.data('maximum'); + var min = picker.data('minimum'); + + var number = picker.children(':input').first(); + var incrementor = number.next(); + var decrementor = incrementor.next(); + + if (number.val() === '') { + number.val(min); + } + + incrementor.click(function () { + var current = parseInt(number.val()); + + if (current === max) { + current = min; + } else { + current++; + } + + number.val(current); + }); + + decrementor.click(function () { + var current = parseInt(number.val()); + + if (current === min) { + current = max; + } else { + current--; + } + + number.val(current); + }); + }); + }); + + $.fn.number = function () { + return this.children(':input').first().val(); + }; + +})(jQuery); \ No newline at end of file diff --git a/CodeProse.Shifter/content/string-extensions.js b/CodeProse.Shifter/content/string-extensions.js new file mode 100644 index 0000000..e88cfac --- /dev/null +++ b/CodeProse.Shifter/content/string-extensions.js @@ -0,0 +1,8 @@ +(function () { + String.prototype.padLeft = function (padString, length) { + var str = this; + while (str.length < length) + str = padString + str; + return str; + }; +})(); \ No newline at end of file diff --git a/CodeProse.Shifter/content/time-selector.js b/CodeProse.Shifter/content/time-selector.js new file mode 100644 index 0000000..b07bac9 --- /dev/null +++ b/CodeProse.Shifter/content/time-selector.js @@ -0,0 +1,29 @@ +(function ($) { + $(document).ready(function () { + + }); + + $.fn.time = function () { + var numbers = this.children('.number-picker'); + + var hour = numbers.first().number(); + var minute = numbers.first().next().number(); + var ampm = this.children('select').children('option:selected').val(); + + var formatted = function () { + var minutePart = ''; + if (minute > 0) { + minutePart = ':' + minute.toString().padLeft('0', 2); + }; + + return hour.toString() + minutePart + ' ' + ampm; + }; + + return { + hour: hour, + minute: minute, + ampm: ampm, + formatted: formatted + }; + }; +})(jQuery); \ No newline at end of file diff --git a/CodeProse.Shifter/layouts/base.cshtml b/CodeProse.Shifter/layouts/base.cshtml index 03359ff..2de5531 100644 --- a/CodeProse.Shifter/layouts/base.cshtml +++ b/CodeProse.Shifter/layouts/base.cshtml @@ -1,15 +1,18 @@ - - + + @RenderSection("Title") - + + - + + + @Html.Partial("partials/topnav.cshtml", Model) diff --git a/CodeProse.Shifter/modules/HomeModule.cs b/CodeProse.Shifter/modules/HomeModule.cs index a8fd848..82c13e3 100644 --- a/CodeProse.Shifter/modules/HomeModule.cs +++ b/CodeProse.Shifter/modules/HomeModule.cs @@ -1,8 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Web; -using Nancy; +using Nancy; using CodeProse.Shifter.models; namespace CodeProse.Shifter.modules diff --git a/CodeProse.Shifter/packages.config b/CodeProse.Shifter/packages.config index b8d883b..8fc74d8 100644 --- a/CodeProse.Shifter/packages.config +++ b/CodeProse.Shifter/packages.config @@ -2,9 +2,9 @@ - - - - + + + + \ No newline at end of file diff --git a/CodeProse.Shifter/partials/controls/NumberPickerModel.cs b/CodeProse.Shifter/partials/controls/NumberPickerModel.cs new file mode 100644 index 0000000..1c190a3 --- /dev/null +++ b/CodeProse.Shifter/partials/controls/NumberPickerModel.cs @@ -0,0 +1,14 @@ +namespace CodeProse.Shifter.partials.controls +{ + public class NumberPickerModel + { + public NumberPickerModel(int minValue, int maxValue) + { + MaxValue = maxValue; + MinValue = minValue; + } + + public int MaxValue { get; private set; } + public int MinValue { get; private set; } + } +} \ No newline at end of file diff --git a/CodeProse.Shifter/partials/controls/LabeledCheckBoxModel.cs b/CodeProse.Shifter/partials/controls/WeekDayCheckBoxModel.cs similarity index 50% rename from CodeProse.Shifter/partials/controls/LabeledCheckBoxModel.cs rename to CodeProse.Shifter/partials/controls/WeekDayCheckBoxModel.cs index 2b2a159..f7fe64c 100644 --- a/CodeProse.Shifter/partials/controls/LabeledCheckBoxModel.cs +++ b/CodeProse.Shifter/partials/controls/WeekDayCheckBoxModel.cs @@ -1,14 +1,16 @@ namespace CodeProse.Shifter.partials.controls { - public class LabeledCheckBoxModel + public class WeekDayCheckBoxModel { - public LabeledCheckBoxModel(string name, bool @checked) + public WeekDayCheckBoxModel(string name, string abbreviation, bool @checked) { Name = name; Checked = @checked; + Abbreviation = abbreviation; } public string Name { get; private set; } public bool Checked { get; private set; } + public string Abbreviation { get; private set; } } } \ No newline at end of file diff --git a/CodeProse.Shifter/partials/controls/number-picker.cshtml b/CodeProse.Shifter/partials/controls/number-picker.cshtml new file mode 100644 index 0000000..cd9662b --- /dev/null +++ b/CodeProse.Shifter/partials/controls/number-picker.cshtml @@ -0,0 +1,5 @@ +
+ + + +
\ No newline at end of file diff --git a/CodeProse.Shifter/partials/controls/time-selector.cshtml b/CodeProse.Shifter/partials/controls/time-selector.cshtml index 6558819..abb682f 100644 --- a/CodeProse.Shifter/partials/controls/time-selector.cshtml +++ b/CodeProse.Shifter/partials/controls/time-selector.cshtml @@ -1,12 +1,9 @@ -
+@using CodeProse.Shifter.partials.controls +
- - - - - - - diff --git a/CodeProse.Shifter/partials/controls/labeled-checkbox.cshtml b/CodeProse.Shifter/partials/controls/weekday-checkbox.cshtml similarity index 61% rename from CodeProse.Shifter/partials/controls/labeled-checkbox.cshtml rename to CodeProse.Shifter/partials/controls/weekday-checkbox.cshtml index 6867904..a74bd86 100644 --- a/CodeProse.Shifter/partials/controls/labeled-checkbox.cshtml +++ b/CodeProse.Shifter/partials/controls/weekday-checkbox.cshtml @@ -8,5 +8,5 @@
- +
\ No newline at end of file diff --git a/CodeProse.Shifter/partials/shifts/shift-form.cshtml b/CodeProse.Shifter/partials/shifts/shift-form.cshtml index 9b788be..9d815fa 100644 --- a/CodeProse.Shifter/partials/shifts/shift-form.cshtml +++ b/CodeProse.Shifter/partials/shifts/shift-form.cshtml @@ -1,41 +1,37 @@ -@using CodeProse.Shifter.partials.controls; +@using CodeProse.Shifter.partials.controls +@using CodeProse.Shifter.utility
Add New Shift @Html.Partial("partials/controls/time-selector.cshtml", "Begin Time") @Html.Partial("partials/controls/time-selector.cshtml", "End Time") - @foreach(var day in new []{"Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"}) + @foreach(var day in Days.All) { - @Html.Partial("partials/controls/labeled-checkbox.cshtml", new LabeledCheckBoxModel(day, true)) + @Html.Partial("partials/controls/weekday-checkbox.cshtml", new WeekDayCheckBoxModel(day.Name, day.Abbreviation, true)) } - - -
- -
-
- -
+ + +
+ + +
+
+ +
diff --git a/CodeProse.Shifter/resources/RestModule.cs b/CodeProse.Shifter/resources/RestModule.cs index d4959de..84dd9c2 100644 --- a/CodeProse.Shifter/resources/RestModule.cs +++ b/CodeProse.Shifter/resources/RestModule.cs @@ -1,5 +1,4 @@ using System; -using CodeProse.Shifter.data; using CodeProse.Shifter.data.queries; using CodeProse.Shifter.modules; using CodeProse.Shifter.utility; diff --git a/CodeProse.Shifter/utility/Day.cs b/CodeProse.Shifter/utility/Day.cs new file mode 100644 index 0000000..f11107b --- /dev/null +++ b/CodeProse.Shifter/utility/Day.cs @@ -0,0 +1,8 @@ +namespace CodeProse.Shifter.utility +{ + public class Day + { + public string Name { get; set; } + public string Abbreviation { get; set; } + } +} \ No newline at end of file diff --git a/CodeProse.Shifter/utility/Days.cs b/CodeProse.Shifter/utility/Days.cs new file mode 100644 index 0000000..bae64b3 --- /dev/null +++ b/CodeProse.Shifter/utility/Days.cs @@ -0,0 +1,24 @@ +using System.Collections.Generic; + +namespace CodeProse.Shifter.utility +{ + public static class Days + { + public static IList All + { + get + { + return new List + { + new Day{ Abbreviation = "M", Name = "Monday"}, + new Day{ Abbreviation = "Tu", Name = "Tuesday"}, + new Day{ Abbreviation = "W", Name = "Wednesday"}, + new Day{ Abbreviation = "Th", Name = "Thursday"}, + new Day{ Abbreviation = "F", Name = "Friday"}, + new Day{ Abbreviation = "Sa", Name = "Saturday"}, + new Day{ Abbreviation = "Su", Name = "Sunday"} + }; + } + } + } +} \ No newline at end of file diff --git a/CodeProse.Shifter/utility/ShifterBootStrapper.cs b/CodeProse.Shifter/utility/ShifterBootStrapper.cs index 6f39628..8307b1d 100644 --- a/CodeProse.Shifter/utility/ShifterBootStrapper.cs +++ b/CodeProse.Shifter/utility/ShifterBootStrapper.cs @@ -8,6 +8,12 @@ namespace CodeProse.Shifter.utility { public class ShifterBootStrapper : DefaultNancyBootstrapper { + protected override void ConfigureRequestContainer(TinyIoC.TinyIoCContainer container, NancyContext context) + { + base.ConfigureRequestContainer(container, context); + container.Register(); + } + protected override void ConfigureApplicationContainer(TinyIoC.TinyIoCContainer container) { DapperBootStrapper.ConfigureDapper(); @@ -25,20 +31,15 @@ protected override void ConfigureApplicationContainer(TinyIoC.TinyIoCContainer c } - protected override void ConfigureRequestContainer(TinyIoC.TinyIoCContainer container) - { - base.ConfigureRequestContainer(container); - container.Register(); - } - protected override void RequestStartup(TinyIoC.TinyIoCContainer container, Nancy.Bootstrapper.IPipelines pipelines) + protected override void RequestStartup(TinyIoC.TinyIoCContainer container, Nancy.Bootstrapper.IPipelines pipelines, NancyContext context) { var formsAuthConfiguration = new FormsAuthenticationConfiguration() - { - RedirectUrl = "~/login", - UserMapper = container.Resolve(), - }; + { + RedirectUrl = "~/login", + UserMapper = container.Resolve(), + }; FormsAuthentication.Enable(pipelines, formsAuthConfiguration); } diff --git a/packages/Nancy.0.10.0/Nancy.0.10.0.nupkg b/packages/Nancy.0.10.0/Nancy.0.10.0.nupkg new file mode 100644 index 0000000..e5cb924 Binary files /dev/null and b/packages/Nancy.0.10.0/Nancy.0.10.0.nupkg differ diff --git a/packages/Nancy.0.10.0/lib/net40/Nancy.dll b/packages/Nancy.0.10.0/lib/net40/Nancy.dll new file mode 100644 index 0000000..569dc9d Binary files /dev/null and b/packages/Nancy.0.10.0/lib/net40/Nancy.dll differ diff --git a/packages/Nancy.Authentication.Forms.0.10.0/Nancy.Authentication.Forms.0.10.0.nupkg b/packages/Nancy.Authentication.Forms.0.10.0/Nancy.Authentication.Forms.0.10.0.nupkg new file mode 100644 index 0000000..1acdc9b Binary files /dev/null and b/packages/Nancy.Authentication.Forms.0.10.0/Nancy.Authentication.Forms.0.10.0.nupkg differ diff --git a/packages/Nancy.Authentication.Forms.0.10.0/lib/net40/Nancy.Authentication.Forms.dll b/packages/Nancy.Authentication.Forms.0.10.0/lib/net40/Nancy.Authentication.Forms.dll new file mode 100644 index 0000000..12c4081 Binary files /dev/null and b/packages/Nancy.Authentication.Forms.0.10.0/lib/net40/Nancy.Authentication.Forms.dll differ diff --git a/packages/Nancy.Authentication.Forms.0.9.0/Nancy.Authentication.Forms.0.9.0.nupkg b/packages/Nancy.Authentication.Forms.0.9.0/Nancy.Authentication.Forms.0.9.0.nupkg deleted file mode 100644 index fe9f3e6..0000000 Binary files a/packages/Nancy.Authentication.Forms.0.9.0/Nancy.Authentication.Forms.0.9.0.nupkg and /dev/null differ diff --git a/packages/Nancy.Authentication.Forms.0.9.0/lib/net40/Nancy.Authentication.Forms.dll b/packages/Nancy.Authentication.Forms.0.9.0/lib/net40/Nancy.Authentication.Forms.dll deleted file mode 100644 index 307c9e0..0000000 Binary files a/packages/Nancy.Authentication.Forms.0.9.0/lib/net40/Nancy.Authentication.Forms.dll and /dev/null differ diff --git a/packages/Nancy.Hosting.Aspnet.0.10.0/Nancy.Hosting.Aspnet.0.10.0.nupkg b/packages/Nancy.Hosting.Aspnet.0.10.0/Nancy.Hosting.Aspnet.0.10.0.nupkg new file mode 100644 index 0000000..db91ae3 Binary files /dev/null and b/packages/Nancy.Hosting.Aspnet.0.10.0/Nancy.Hosting.Aspnet.0.10.0.nupkg differ diff --git a/packages/Nancy.Hosting.Aspnet.0.9.0/content/web.config.transform b/packages/Nancy.Hosting.Aspnet.0.10.0/content/web.config.transform similarity index 100% rename from packages/Nancy.Hosting.Aspnet.0.9.0/content/web.config.transform rename to packages/Nancy.Hosting.Aspnet.0.10.0/content/web.config.transform diff --git a/packages/Nancy.Hosting.Aspnet.0.9.0/lib/net40/Nancy.Hosting.Aspnet.dll b/packages/Nancy.Hosting.Aspnet.0.10.0/lib/net40/Nancy.Hosting.Aspnet.dll similarity index 54% rename from packages/Nancy.Hosting.Aspnet.0.9.0/lib/net40/Nancy.Hosting.Aspnet.dll rename to packages/Nancy.Hosting.Aspnet.0.10.0/lib/net40/Nancy.Hosting.Aspnet.dll index d2d6929..53aab42 100644 Binary files a/packages/Nancy.Hosting.Aspnet.0.9.0/lib/net40/Nancy.Hosting.Aspnet.dll and b/packages/Nancy.Hosting.Aspnet.0.10.0/lib/net40/Nancy.Hosting.Aspnet.dll differ diff --git a/packages/Nancy.Hosting.Aspnet.0.9.0/Nancy.Hosting.Aspnet.0.9.0.nupkg b/packages/Nancy.Hosting.Aspnet.0.9.0/Nancy.Hosting.Aspnet.0.9.0.nupkg deleted file mode 100644 index e8fcd5c..0000000 Binary files a/packages/Nancy.Hosting.Aspnet.0.9.0/Nancy.Hosting.Aspnet.0.9.0.nupkg and /dev/null differ diff --git a/packages/Nancy.Viewengines.Razor.0.10.0/BuildProviders/Nancy.ViewEngines.Razor.BuildProviders.dll b/packages/Nancy.Viewengines.Razor.0.10.0/BuildProviders/Nancy.ViewEngines.Razor.BuildProviders.dll new file mode 100644 index 0000000..ed2b728 Binary files /dev/null and b/packages/Nancy.Viewengines.Razor.0.10.0/BuildProviders/Nancy.ViewEngines.Razor.BuildProviders.dll differ diff --git a/packages/Nancy.Viewengines.Razor.0.9.0/Nancy.Viewengines.Razor.0.9.0.nupkg b/packages/Nancy.Viewengines.Razor.0.10.0/Nancy.Viewengines.Razor.0.10.0.nupkg similarity index 75% rename from packages/Nancy.Viewengines.Razor.0.9.0/Nancy.Viewengines.Razor.0.9.0.nupkg rename to packages/Nancy.Viewengines.Razor.0.10.0/Nancy.Viewengines.Razor.0.10.0.nupkg index 090f59a..81fd52c 100644 Binary files a/packages/Nancy.Viewengines.Razor.0.9.0/Nancy.Viewengines.Razor.0.9.0.nupkg and b/packages/Nancy.Viewengines.Razor.0.10.0/Nancy.Viewengines.Razor.0.10.0.nupkg differ diff --git a/packages/Nancy.Viewengines.Razor.0.10.0/Tools/GetNancyRazorBuildProviderPostBuildCmd.ps1 b/packages/Nancy.Viewengines.Razor.0.10.0/Tools/GetNancyRazorBuildProviderPostBuildCmd.ps1 new file mode 100644 index 0000000..9594245 --- /dev/null +++ b/packages/Nancy.Viewengines.Razor.0.10.0/Tools/GetNancyRazorBuildProviderPostBuildCmd.ps1 @@ -0,0 +1,9 @@ +$solutionDir = [System.IO.Path]::GetDirectoryName($dte.Solution.FullName) + "\" +$path = $installPath.Replace($solutionDir, "`$(SolutionDir)") + +$BuildProvidersDir = Join-Path $path "BuildProviders" +$ViewEngineDir = Join-Path $path "lib\Net40" + +$NancyRazorBuildProviderPostBuildCmd = " +xcopy /s /y `"$BuildProvidersDir\Nancy.ViewEngines.Razor.BuildProviders.dll`" `"`$(ProjectDir)bin`" +xcopy /s /y `"$ViewEngineDir\Nancy.ViewEngines.Razor.dll`" `"`$(ProjectDir)bin`"" \ No newline at end of file diff --git a/packages/Nancy.Viewengines.Razor.0.10.0/Tools/install.ps1 b/packages/Nancy.Viewengines.Razor.0.10.0/Tools/install.ps1 new file mode 100644 index 0000000..e1ea11f --- /dev/null +++ b/packages/Nancy.Viewengines.Razor.0.10.0/Tools/install.ps1 @@ -0,0 +1,50 @@ +param($installPath, $toolsPath, $package, $project) + +. (Join-Path $toolsPath "GetNancyRazorBuildProviderPostBuildCmd.ps1") + +# Get the current Post Build Event cmd +$currentPostBuildCmd = $project.Properties.Item("PostBuildEvent").Value + +# Append our post build command if it's not already there +if (!$currentPostBuildCmd.Contains($NancyRazorBuildProviderPostBuildCmd)) { + $project.Properties.Item("PostBuildEvent").Value += $NancyRazorBuildProviderPostBuildCmd +} + +function Get-VsFileSystem { + $componentModel = Get-VSComponentModel + $fileSystemProvider = $componentModel.GetService([NuGet.VisualStudio.IFileSystemProvider]) + $solutionManager = $componentModel.GetService([NuGet.VisualStudio.ISolutionManager]) + + $fileSystem = $fileSystemProvider.GetFileSystem($solutionManager.SolutionDirectory) + + return $fileSystem +} + +$projectRoot = $project.Properties.Item("FullPath").Value + +if (!$projectRoot) { + return; +} + +$destDirectory = $projectRoot +$fileSystem = Get-VsFileSystem + +$file = Join-Path $installPath "content\web.config.transform" + +ls $file -Filter *.transform | %{ + $destPath = Join-Path $destDirectory "web.config" + if (!(Test-Path $destPath)) { + $fileStream = $null + try { + $fileStream = [System.IO.File]::OpenRead($_.FullName) + $fileSystem.AddFile($destPath, $fileStream) + $project.ProjectItems.AddFromFile($destPath) + } catch { + # We don't want an exception to surface if we can't add the file for some reason + } finally { + if ($fileStream -ne $null) { + $fileStream.Dispose() + } + } + } +} \ No newline at end of file diff --git a/packages/Nancy.Viewengines.Razor.0.10.0/Tools/uninstall.ps1 b/packages/Nancy.Viewengines.Razor.0.10.0/Tools/uninstall.ps1 new file mode 100644 index 0000000..bff1d4c --- /dev/null +++ b/packages/Nancy.Viewengines.Razor.0.10.0/Tools/uninstall.ps1 @@ -0,0 +1,9 @@ +param($installPath, $toolsPath, $package, $project) + +. (Join-Path $toolsPath "GetNancyRazorBuildProviderPostBuildCmd.ps1") + +# Get the current Post Build Event cmd +$currentPostBuildCmd = $project.Properties.Item("PostBuildEvent").Value + +# Remove our post build command from it (if it's there) +$project.Properties.Item("PostBuildEvent").Value = $currentPostBuildCmd.Replace($NancyRazorBuildProviderPostBuildCmd, "") diff --git a/packages/Nancy.Viewengines.Razor.0.10.0/content/app.config.transform b/packages/Nancy.Viewengines.Razor.0.10.0/content/app.config.transform new file mode 100644 index 0000000..a709e64 --- /dev/null +++ b/packages/Nancy.Viewengines.Razor.0.10.0/content/app.config.transform @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/packages/Nancy.Viewengines.Razor.0.10.0/content/web.config.transform b/packages/Nancy.Viewengines.Razor.0.10.0/content/web.config.transform new file mode 100644 index 0000000..e6667ed --- /dev/null +++ b/packages/Nancy.Viewengines.Razor.0.10.0/content/web.config.transform @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/packages/Nancy.Viewengines.Razor.0.10.0/lib/net40/Nancy.ViewEngines.Razor.dll b/packages/Nancy.Viewengines.Razor.0.10.0/lib/net40/Nancy.ViewEngines.Razor.dll new file mode 100644 index 0000000..abd8172 Binary files /dev/null and b/packages/Nancy.Viewengines.Razor.0.10.0/lib/net40/Nancy.ViewEngines.Razor.dll differ diff --git a/packages/Nancy.Viewengines.Razor.0.9.0/lib/net40/System.Web.Razor.dll b/packages/Nancy.Viewengines.Razor.0.10.0/lib/net40/System.Web.Razor.dll similarity index 100% rename from packages/Nancy.Viewengines.Razor.0.9.0/lib/net40/System.Web.Razor.dll rename to packages/Nancy.Viewengines.Razor.0.10.0/lib/net40/System.Web.Razor.dll diff --git a/packages/Nancy.Viewengines.Razor.0.9.0/lib/net40/Nancy.ViewEngines.Razor.dll b/packages/Nancy.Viewengines.Razor.0.9.0/lib/net40/Nancy.ViewEngines.Razor.dll deleted file mode 100644 index 02904aa..0000000 Binary files a/packages/Nancy.Viewengines.Razor.0.9.0/lib/net40/Nancy.ViewEngines.Razor.dll and /dev/null differ