Skip to content

Commit eb1bfe5

Browse files
committed
Move to 3.2.5 Preview1
1 parent 9829dd8 commit eb1bfe5

File tree

7 files changed

+21
-21
lines changed

7 files changed

+21
-21
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ Git tag|Git branch|Other products|MVC package versions|Web API package (product)
2626
[v2.1](https://github.com/aspnet/AspNetWebStack/tree/v2.1)||ASP.NET and Web Tools 2012.2, VS 2012 Update 2 (not on http://nuget.org)|v4 2012.2 Update RTM|v1 2012.2 Update RTM|v2 2012.2 Update RTM
2727
[v3.0.2](https://github.com/aspnet/AspNetWebStack/tree/v3.0.2)|[v3-rtm](https://github.com/aspnet/AspNetWebStack/tree/v3-rtm)||5.0.2|5.0.1 (2.0.1)|3.0.1
2828
[v3.1.3](https://github.com/aspnet/AspNetWebStack/tree/v3.1.3)|[v3.1-rtm](https://github.com/aspnet/AspNetWebStack/tree/v3.1-rtm)||5.1.3|5.1.2 (2.1.2)|3.1.2
29-
[v3.2.3](https://github.com/aspnet/AspNetWebStack/tree/v3.2.3)|||5.2.3|5.2.3 (2.2.3)|3.2.3
30-
||[master](https://github.com/aspnet/AspNetWebStack/tree/master)|New work e.g. Web API 2.2.4-preview1|||
29+
[v3.2.4](https://github.com/aspnet/AspNetWebStack/tree/v3.2.4)||In https://dotnet.myget.org/gallery/aspnetwebstack-dev feed; not on https://nuget.org yet|5.2.4|5.2.4 (2.2.4)|3.2.4
30+
||[master](https://github.com/aspnet/AspNetWebStack/tree/master)|New work e.g. Web API 2.2.5-preview1|||

src/CommonAssemblyInfo.cs

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -19,31 +19,31 @@
1919
[assembly: NeutralResourcesLanguage("en-US")]
2020
[assembly: AssemblyMetadata("Serviceable", "True")]
2121

22-
// ===========================================================================
23-
// DO NOT EDIT OR REMOVE ANYTHING BELOW THIS COMMENT.
24-
// Version numbers are automatically generated based on regular expressions.
25-
// ===========================================================================
22+
// ===================================================================================
23+
// TAKE CARE WHEN EDITING OR REMOVING ANYTHING BELOW THIS COMMENT.
24+
// BUILD_GENERATED_VERSION will be set in any CI build. Versions below are not used.
25+
// ===================================================================================
2626

27-
#if ASPNETMVC && ASPNETWEBPAGES
28-
#error Runtime projects cannot define both ASPNETMVC and ASPNETWEBPAGES
27+
#if (ASPNETMVC && (ASPNETWEBPAGES || ASPNETFACEBOOK)) || (ASPNETWEBPAGES && ASPNETFACEBOOK)
28+
#error Runtime projects cannot define more than one of ASPNETMVC, ASPNETWEBPAGES or ASPNETFACEBOOK
2929
#elif ASPNETMVC
3030
#if !BUILD_GENERATED_VERSION
31-
[assembly: AssemblyVersion("5.2.4.0")] // ASPNETMVC
32-
[assembly: AssemblyFileVersion("5.2.4.0")] // ASPNETMVC
31+
[assembly: AssemblyVersion("5.2.5.0")] // ASPNETMVC
32+
[assembly: AssemblyFileVersion("5.2.5.0")] // ASPNETMVC
3333
#endif
3434
[assembly: AssemblyProduct("Microsoft ASP.NET MVC")]
3535
#elif ASPNETWEBPAGES
3636
#if !BUILD_GENERATED_VERSION
37-
[assembly: AssemblyVersion("3.0.0.0")] // ASPNETWEBPAGES
38-
[assembly: AssemblyFileVersion("3.0.0.0")] // ASPNETWEBPAGES
37+
[assembly: AssemblyVersion("3.2.5.0")] // ASPNETWEBPAGES
38+
[assembly: AssemblyFileVersion("3.2.5.0")] // ASPNETWEBPAGES
3939
#endif
4040
[assembly: AssemblyProduct("Microsoft ASP.NET Web Pages")]
4141
#elif ASPNETFACEBOOK
4242
#if !BUILD_GENERATED_VERSION
43-
[assembly: AssemblyVersion("1.1.0.0")] // ASPNETFACEBOOK
44-
[assembly: AssemblyFileVersion("1.1.0.0")] // ASPNETFACEBOOK
43+
[assembly: AssemblyVersion("1.1.1.0")] // ASPNETFACEBOOK
44+
[assembly: AssemblyFileVersion("1.1.1.0")] // ASPNETFACEBOOK
4545
#endif
4646
[assembly: AssemblyProduct("Microsoft ASP.NET Facebook")]
4747
#else
48-
#error Runtime projects must define either ASPNETMVC or ASPNETWEBPAGES
48+
#error Runtime projects must define ASPNETMVC, ASPNETWEBPAGES or ASPNETFACEBOOK
4949
#endif

src/CommonAssemblyInfo.vb

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

23-
<Assembly: AssemblyVersion("5.2.4.0")> 'ASPNETMVC
24-
<Assembly: AssemblyFileVersion("5.2.4.0")> 'ASPNETMVC
23+
<Assembly: AssemblyVersion("5.2.5.0")> 'ASPNETMVC
24+
<Assembly: AssemblyFileVersion("5.2.5.0")> 'ASPNETMVC
2525
<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.4.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
12+
<host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=5.2.5.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.4.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
12+
<host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=5.2.5.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
@@ -13,7 +13,7 @@ public class VersionTest
1313
public void VerifyMVCVersionChangesAreIntentional()
1414
{
1515
Version mvcVersion = VersionTestHelper.GetVersionFromAssembly("System.Web.Mvc", typeof(Controller));
16-
Assert.Equal(new Version(5, 2, 4, 0), mvcVersion);
16+
Assert.Equal(new Version(5, 2, 5, 0), mvcVersion);
1717
}
1818
}
1919
}

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.4.0" newVersion="5.2.4.0" />
14+
<bindingRedirect oldVersion="1.0.0.0-5.2.5.0" newVersion="5.2.5.0" />
1515
</dependentAssembly>
1616
</assemblyBinding>
1717
</runtime>

0 commit comments

Comments
 (0)