Skip to content

Commit b964bcb

Browse files
committed
Add Binding Redirects for test projects
1 parent 41cc5cf commit b964bcb

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

src/FunnelWeb.Azure/ServiceDefinition.build.csdef

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
**********************************************************************************************
1010
-->
11-
<ServiceDefinition name="FunnelWeb.Azure" xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition">
11+
<ServiceDefinition name="FunnelWeb.Azure" xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition" schemaVersion="2012-05.1.7">
1212
<WebRole name="FunnelWeb.Web" vmsize="ExtraSmall">
1313
<Sites>
1414
<Site name="Web">

src/FunnelWeb.Tests/App.config

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
<?xml version="1.0" encoding="utf-8" ?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33
<configSections>
44
<sectionGroup name="NUnit">
5-
<section name="TestRunner" type="System.Configuration.NameValueSectionHandler"/>
5+
<section name="TestRunner" type="System.Configuration.NameValueSectionHandler" />
66
</sectionGroup>
77
</configSections>
88
<NUnit>
@@ -12,14 +12,18 @@
1212
</NUnit>
1313
<runtime>
1414
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
15-
<probing privatePath="bin/Extensions"/>
15+
<probing privatePath="bin/Extensions" />
1616
<dependentAssembly>
17-
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35"/>
18-
<bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="3.0.0.0"/>
17+
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
18+
<bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="3.0.0.0" />
1919
</dependentAssembly>
2020
<dependentAssembly>
2121
<assemblyIdentity name="NHibernate" publicKeyToken="aa95f207798dfdb4" culture="neutral" />
22-
<bindingRedirect oldVersion="0.0.0.0-3.2.0.4000" newVersion="3.2.0.4000" />
22+
<bindingRedirect oldVersion="0.0.0.0-3.3.0.4000" newVersion="3.3.0.4000" />
23+
</dependentAssembly>
24+
<dependentAssembly>
25+
<assemblyIdentity name="nunit.framework" publicKeyToken="96d09a1eb7f44a77" culture="neutral" />
26+
<bindingRedirect oldVersion="0.0.0.0-2.5.5.10112" newVersion="2.5.5.10112" />
2327
</dependentAssembly>
2428
</assemblyBinding>
2529
</runtime>

0 commit comments

Comments
 (0)