Skip to content

Commit

Permalink
Adding Glimpse.Mvc3
Browse files Browse the repository at this point in the history
  • Loading branch information
jchadwick committed Dec 18, 2011
1 parent 320d613 commit e066ff9
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 14 deletions.
21 changes: 12 additions & 9 deletions UnitTests/App.config
@@ -1,14 +1,17 @@
<?xml version="1.0" encoding="utf-8" ?>
<?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>
<appSettings></appSettings>
<connectionStrings></connectionStrings>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
8 changes: 4 additions & 4 deletions Website/Web.config
Expand Up @@ -80,14 +80,14 @@
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0" newVersion="2.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="4.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0" newVersion="2.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
<glimpse enabled="true" />
Expand Down
5 changes: 4 additions & 1 deletion Website/Website.csproj
Expand Up @@ -41,6 +41,9 @@
<Reference Include="Glimpse.Core">
<HintPath>..\packages\Glimpse.0.86\lib\net40\Glimpse.Core.dll</HintPath>
</Reference>
<Reference Include="Glimpse.Mvc3">
<HintPath>..\packages\Glimpse.Mvc3.0.86\lib\net40\Glimpse.Mvc3.dll</HintPath>
</Reference>
<Reference Include="Microsoft.CSharp" />
<Reference Include="Microsoft.Web.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<Private>True</Private>
Expand Down Expand Up @@ -98,7 +101,6 @@
</ItemGroup>
<ItemGroup>
<Compile Include="Controllers\AccountController.cs" />
<Compile Include="Controllers\AuctionsController.cs" />
<Compile Include="Controllers\HomeController.cs" />
<Compile Include="Global.asax.cs">
<DependentUpon>Global.asax</DependentUpon>
Expand All @@ -108,6 +110,7 @@
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="App_Readme\glimpse.mvc3.readme.txt" />
<Content Include="Content\themes\base\images\ui-bg_flat_0_aaaaaa_40x100.png" />
<Content Include="Content\themes\base\images\ui-bg_flat_75_ffffff_40x100.png" />
<Content Include="Content\themes\base\images\ui-bg_glass_55_fbf9ee_1x400.png" />
Expand Down
1 change: 1 addition & 0 deletions Website/packages.config
Expand Up @@ -4,6 +4,7 @@
<package id="AspNetWebPagesCore" version="2.0.10906.0" />
<package id="EntityFramework" version="4.2.0.0" />
<package id="Glimpse" version="0.86" />
<package id="Glimpse.Mvc3" version="0.86" />
<package id="jQuery" version="1.7.1" />
<package id="jQuery.Ajax.Unobtrusive" version="1.0" />
<package id="jQuery.UI.Combined" version="1.8.16" />
Expand Down

0 comments on commit e066ff9

Please sign in to comment.