Skip to content

Commit 27e9a28

Browse files
committed
Update assembly version to 5.2.4
1 parent 0e97421 commit 27e9a28

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

src/CommonAssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
#error Runtime projects cannot define both ASPNETMVC and ASPNETWEBPAGES
2828
#elif ASPNETMVC
2929
#if !BUILD_GENERATED_VERSION
30-
[assembly: AssemblyVersion("5.2.3.0")] // ASPNETMVC
31-
[assembly: AssemblyFileVersion("5.2.3.0")] // ASPNETMVC
30+
[assembly: AssemblyVersion("5.2.4.0")] // ASPNETMVC
31+
[assembly: AssemblyFileVersion("5.2.4.0")] // ASPNETMVC
3232
#endif
3333
[assembly: AssemblyProduct("Microsoft ASP.NET MVC")]
3434
#elif ASPNETWEBPAGES

src/CommonAssemblyInfo.vb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ Imports System.Runtime.InteropServices
1919
' Version numbers are automatically generated based on regular expressions.
2020
' ===========================================================================
2121

22-
<Assembly: AssemblyVersion("5.2.3.0")> 'ASPNETMVC
23-
<Assembly: AssemblyFileVersion("5.2.3.0")> 'ASPNETMVC
22+
<Assembly: AssemblyVersion("5.2.4.0")> 'ASPNETMVC
23+
<Assembly: AssemblyFileVersion("5.2.4.0")> 'ASPNETMVC
2424
<Assembly: AssemblyProduct("Microsoft ASP.NET MVC")>

src/WebApiHelpPage/Areas/HelpPage/Views/Web.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</configSections>
1010

1111
<system.web.webPages.razor>
12-
<host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
12+
<host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=5.2.4.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
1313
<pages pageBaseType="System.Web.Mvc.WebViewPage">
1414
<namespaces>
1515
<add namespace="System.Web.Mvc" />

src/WebApiHelpPage/VB/Areas/HelpPage/Views/Web.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</configSections>
1010

1111
<system.web.webPages.razor>
12-
<host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
12+
<host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=5.2.4.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
1313
<pages pageBaseType="System.Web.Mvc.WebViewPage">
1414
<namespaces>
1515
<add namespace="System.Web.Mvc" />

test/Microsoft.Web.Mvc.Test/Test/VersionTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public class VersionTest
1212
public void VerifyMVCVersionChangesAreIntentional()
1313
{
1414
Version mvcVersion = VersionTestHelper.GetVersionFromAssembly("System.Web.Mvc", typeof(Controller));
15-
Assert.Equal(new Version(5, 2, 3, 0), mvcVersion);
15+
Assert.Equal(new Version(5, 2, 4, 0), mvcVersion);
1616
}
1717
}
1818
}

test/System.Web.WebPages.Test/App.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<dependentAssembly>
1212
<!-- Need this because the BinarySerializer uses the TypeForwardedFrom attribute and deserializes to the original assembly (MVC 2.0) for the HttpAntiForgeryException test -->
1313
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
14-
<bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
14+
<bindingRedirect oldVersion="1.0.0.0-5.2.4.0" newVersion="5.2.4.0" />
1515
</dependentAssembly>
1616
</assemblyBinding>
1717
</runtime>

0 commit comments

Comments
 (0)