diff --git a/src/Orchard.Web/Core/Navigation/Views/Admin/Index.cshtml b/src/Orchard.Web/Core/Navigation/Views/Admin/Index.cshtml
index 9efc403b4..eb9698417 100644
--- a/src/Orchard.Web/Core/Navigation/Views/Admin/Index.cshtml
+++ b/src/Orchard.Web/Core/Navigation/Views/Admin/Index.cshtml
@@ -1,7 +1,7 @@
@model NavigationManagementViewModel
-@using Orchard.ContentManagement
-@using Orchard.Core.Navigation.Models
-@using Orchard.Core.Navigation.ViewModels
+@using Orchard.ContentManagement;
+@using Orchard.Core.Navigation.Models;
+@using Orchard.Core.Navigation.ViewModels;
@Html.TitleForPage(T("Manage Main Menu").ToString())
@using (Html.BeginFormAntiForgeryPost()) {
diff --git a/src/Orchard.Web/Core/Navigation/Views/EditorTemplates/Parts/Navigation.EditMenuPart.cshtml b/src/Orchard.Web/Core/Navigation/Views/EditorTemplates/Parts/Navigation.EditMenuPart.cshtml
index 1e1a048f9..5d7b94c8a 100644
--- a/src/Orchard.Web/Core/Navigation/Views/EditorTemplates/Parts/Navigation.EditMenuPart.cshtml
+++ b/src/Orchard.Web/Core/Navigation/Views/EditorTemplates/Parts/Navigation.EditMenuPart.cshtml
@@ -1,6 +1,6 @@
@model MenuPart
-@using Orchard.Core.Navigation.Models
-@using Orchard.Core.Navigation.ViewModels
+@using Orchard.Core.Navigation.Models;
+@using Orchard.Core.Navigation.ViewModels;
@{
Script.Require("ShapesBase");
}
diff --git a/src/Orchard.Web/Core/Reports/Views/Admin/Display.cshtml b/src/Orchard.Web/Core/Reports/Views/Admin/Display.cshtml
index 6dee247ed..d41f9bda4 100644
--- a/src/Orchard.Web/Core/Reports/Views/Admin/Display.cshtml
+++ b/src/Orchard.Web/Core/Reports/Views/Admin/Display.cshtml
@@ -1,5 +1,5 @@
@model DisplayReportViewModel
-@using Orchard.Core.Reports.ViewModels
+@using Orchard.Core.Reports.ViewModels;
@Html.TitleForPage(T("Display Report").ToString())
@using(Html.BeginFormAntiForgeryPost()) {
@Html.ValidationSummary()
diff --git a/src/Orchard.Web/Core/Reports/Views/Admin/Index.cshtml b/src/Orchard.Web/Core/Reports/Views/Admin/Index.cshtml
index 01ac13e91..90249bf4d 100644
--- a/src/Orchard.Web/Core/Reports/Views/Admin/Index.cshtml
+++ b/src/Orchard.Web/Core/Reports/Views/Admin/Index.cshtml
@@ -1,5 +1,5 @@
@model ReportsAdminIndexViewModel
-@using Orchard.Core.Reports.ViewModels
+@using Orchard.Core.Reports.ViewModels;
@Html.TitleForPage(T("Manage Reports").ToString())
@using(Html.BeginFormAntiForgeryPost()) {
@Html.ValidationSummary()
diff --git a/src/Orchard.Web/Core/Routable/Views/EditorTemplates/Parts/Routable.RoutePart.cshtml b/src/Orchard.Web/Core/Routable/Views/EditorTemplates/Parts/Routable.RoutePart.cshtml
index 44ea24b54..0b26db83a 100644
--- a/src/Orchard.Web/Core/Routable/Views/EditorTemplates/Parts/Routable.RoutePart.cshtml
+++ b/src/Orchard.Web/Core/Routable/Views/EditorTemplates/Parts/Routable.RoutePart.cshtml
@@ -1,5 +1,5 @@
@model Orchard.Core.Routable.ViewModels.RoutableEditorViewModel
-@using Orchard.Utility.Extensions
+@using Orchard.Utility.Extensions;
@{ Script.Require("Slugify"); }
diff --git a/src/Orchard.Web/Core/Settings/Views/Admin/Culture.cshtml b/src/Orchard.Web/Core/Settings/Views/Admin/Culture.cshtml
index 82e1eaa3e..9dde5e792 100644
--- a/src/Orchard.Web/Core/Settings/Views/Admin/Culture.cshtml
+++ b/src/Orchard.Web/Core/Settings/Views/Admin/Culture.cshtml
@@ -1,5 +1,5 @@
@model SiteCulturesViewModel
-@using Orchard.Core.Settings.ViewModels
+@using Orchard.Core.Settings.ViewModels;
@Html.TitleForPage(T("Cultures").ToString())
@Html.ActionLink(T("Manage Settings").Text, "index")@T(" > ")@T("Supported Cultures")
@T("Available Cultures")
diff --git a/src/Orchard.Web/Core/Settings/Views/EditorTemplates/Parts/Settings.SiteSettingsPart.cshtml b/src/Orchard.Web/Core/Settings/Views/EditorTemplates/Parts/Settings.SiteSettingsPart.cshtml
index 696374e97..39954f3f0 100644
--- a/src/Orchard.Web/Core/Settings/Views/EditorTemplates/Parts/Settings.SiteSettingsPart.cshtml
+++ b/src/Orchard.Web/Core/Settings/Views/EditorTemplates/Parts/Settings.SiteSettingsPart.cshtml
@@ -1,5 +1,5 @@
@model Orchard.Core.Settings.ViewModels.SiteSettingsPartViewModel
-@using Orchard.Settings
+@using Orchard.Settings;
@{
var resourceDebugMode = new SelectList(new object[] {
new { Id = (int)ResourceDebugMode.FromAppSetting, Text = "Use web.config setting" },
diff --git a/src/Orchard.Web/Core/Shapes/Views/Document.cshtml b/src/Orchard.Web/Core/Shapes/Views/Document.cshtml
index ba46a0fd9..98759ff34 100644
--- a/src/Orchard.Web/Core/Shapes/Views/Document.cshtml
+++ b/src/Orchard.Web/Core/Shapes/Views/Document.cshtml
@@ -1,5 +1,5 @@
-@using Orchard.Mvc.Html
-@using Orchard.UI.Resources
+@using Orchard.Mvc.Html;
+@using Orchard.UI.Resources;
@{
RegisterLink(new LinkEntry {Type = "image/x-icon", Rel = "shortcut icon", Href = Url.Content("~/modules/orchard.themes/Content/orchard.ico")});
}
diff --git a/src/Orchard.Web/Core/Shapes/Views/User.cshtml b/src/Orchard.Web/Core/Shapes/Views/User.cshtml
index f9bc647c5..f11a5ca62 100644
--- a/src/Orchard.Web/Core/Shapes/Views/User.cshtml
+++ b/src/Orchard.Web/Core/Shapes/Views/User.cshtml
@@ -1,4 +1,4 @@
-@using System.Web.Mvc
+@using System.Web.Mvc;
@if (Request.IsAuthenticated) {
@T("Welcome,
{0} !", WorkContext.CurrentUser.UserName)
diff --git a/src/Orchard.Web/Modules/Orchard.ArchiveLater/Views/DisplayTemplates/Parts/ArchiveLater.Metadata.SummaryAdmin.cshtml b/src/Orchard.Web/Modules/Orchard.ArchiveLater/Views/DisplayTemplates/Parts/ArchiveLater.Metadata.SummaryAdmin.cshtml
index 34be7b760..181ea0445 100644
--- a/src/Orchard.Web/Modules/Orchard.ArchiveLater/Views/DisplayTemplates/Parts/ArchiveLater.Metadata.SummaryAdmin.cshtml
+++ b/src/Orchard.Web/Modules/Orchard.ArchiveLater/Views/DisplayTemplates/Parts/ArchiveLater.Metadata.SummaryAdmin.cshtml
@@ -1,5 +1,5 @@
@model Orchard.ArchiveLater.ViewModels.ArchiveLaterViewModel
-@using Orchard.Mvc.Html
+@using Orchard.Mvc.Html;
@if ((Model.IsPublished && Model.ScheduledArchiveUtc.HasValue && Model.ScheduledArchiveUtc.Value > DateTime.UtcNow)) {
diff --git a/src/Orchard.Web/Modules/Orchard.ArchiveLater/Views/EditorTemplates/Parts/ArchiveLater.cshtml b/src/Orchard.Web/Modules/Orchard.ArchiveLater/Views/EditorTemplates/Parts/ArchiveLater.cshtml
index 538e603eb..1d2c1b6a5 100644
--- a/src/Orchard.Web/Modules/Orchard.ArchiveLater/Views/EditorTemplates/Parts/ArchiveLater.cshtml
+++ b/src/Orchard.Web/Modules/Orchard.ArchiveLater/Views/EditorTemplates/Parts/ArchiveLater.cshtml
@@ -1,5 +1,5 @@
@model Orchard.ArchiveLater.ViewModels.ArchiveLaterViewModel
-@using System.Web.Mvc.Html
+@using System.Web.Mvc.Html;
@{
Style.Require("jQueryUtils_TimePicker");
Style.Require("jQueryUI_DatePicker");
diff --git a/src/Orchard.Web/Modules/Orchard.Blogs/Views/BlogAdmin/List.cshtml b/src/Orchard.Web/Modules/Orchard.Blogs/Views/BlogAdmin/List.cshtml
index 591eb2680..f67493b8d 100644
--- a/src/Orchard.Web/Modules/Orchard.Blogs/Views/BlogAdmin/List.cshtml
+++ b/src/Orchard.Web/Modules/Orchard.Blogs/Views/BlogAdmin/List.cshtml
@@ -1,4 +1,4 @@
-@using Orchard.Blogs.Extensions
+@using Orchard.Blogs.Extensions;
@Html.TitleForPage(T("Manage Blogs").ToString())
@if (Model.ContentItems.Items.Count > 0) {
diff --git a/src/Orchard.Web/Modules/Orchard.Blogs/Views/BlogArchives.cshtml b/src/Orchard.Web/Modules/Orchard.Blogs/Views/BlogArchives.cshtml
index 34b3fa14c..b8e34dcfc 100644
--- a/src/Orchard.Web/Modules/Orchard.Blogs/Views/BlogArchives.cshtml
+++ b/src/Orchard.Web/Modules/Orchard.Blogs/Views/BlogArchives.cshtml
@@ -1,5 +1,5 @@
-@using Orchard.Blogs.Extensions
-@using Orchard.Blogs.ViewModels
+@using Orchard.Blogs.Extensions;
+@using Orchard.Blogs.ViewModels;
@{
BlogPostArchiveViewModel model = Model.Archives;
Style.Require("BlogsArchives");
diff --git a/src/Orchard.Web/Modules/Orchard.Blogs/Views/BlogPost/ListByArchive.cshtml b/src/Orchard.Web/Modules/Orchard.Blogs/Views/BlogPost/ListByArchive.cshtml
index 99291fe1b..3f1d1f716 100644
--- a/src/Orchard.Web/Modules/Orchard.Blogs/Views/BlogPost/ListByArchive.cshtml
+++ b/src/Orchard.Web/Modules/Orchard.Blogs/Views/BlogPost/ListByArchive.cshtml
@@ -1,4 +1,4 @@
-@using Orchard.Blogs.Extensions
+@using Orchard.Blogs.Extensions;
@Html.TitleForPage(T("Archives").Text, (string)Model.ArchiveData.Year.ToString(), (string)(Model.ArchiveData.Month > 0 ? new DateTime(Model.ArchiveData.Year, Model.ArchiveData.Month, 1).ToString("MMMM") : null), (string)(Model.ArchiveData.Day > 0 ? Model.ArchiveData.Day.ToString() : null))
@T("Archives") /
diff --git a/src/Orchard.Web/Modules/Orchard.Blogs/Views/DisplayTemplates/Parts/Blogs.Blog.Manage.cshtml b/src/Orchard.Web/Modules/Orchard.Blogs/Views/DisplayTemplates/Parts/Blogs.Blog.Manage.cshtml
index e707e3f2b..ec9924e89 100644
--- a/src/Orchard.Web/Modules/Orchard.Blogs/Views/DisplayTemplates/Parts/Blogs.Blog.Manage.cshtml
+++ b/src/Orchard.Web/Modules/Orchard.Blogs/Views/DisplayTemplates/Parts/Blogs.Blog.Manage.cshtml
@@ -1,4 +1,4 @@
-@using Orchard.Blogs.Extensions
+@using Orchard.Blogs.Extensions;
@{
Style.Require("BlogsAdmin");
}
diff --git a/src/Orchard.Web/Modules/Orchard.Blogs/Views/DisplayTemplates/Parts/Blogs.BlogPost.List.Admin.cshtml b/src/Orchard.Web/Modules/Orchard.Blogs/Views/DisplayTemplates/Parts/Blogs.BlogPost.List.Admin.cshtml
index c567e668a..e71d4bc6b 100644
--- a/src/Orchard.Web/Modules/Orchard.Blogs/Views/DisplayTemplates/Parts/Blogs.BlogPost.List.Admin.cshtml
+++ b/src/Orchard.Web/Modules/Orchard.Blogs/Views/DisplayTemplates/Parts/Blogs.BlogPost.List.Admin.cshtml
@@ -1,5 +1,5 @@
-@using Orchard.Core.Contents.ViewModels
-@using Orchard.Utility.Extensions
+@using Orchard.Core.Contents.ViewModels;
+@using Orchard.Utility.Extensions;
@if (Model.Items.Count > 0) {
using (Html.BeginFormAntiForgeryPost(Url.Action("List", "Admin", new { area = "Contents", id = "" }))) {
diff --git a/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Admin.Blog.cshtml b/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Admin.Blog.cshtml
index a70e25b6e..3847f90ce 100644
--- a/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Admin.Blog.cshtml
+++ b/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Admin.Blog.cshtml
@@ -1,5 +1,5 @@
-@using Orchard.Blogs.Extensions
-@using Orchard.Blogs.Models
+@using Orchard.Blogs.Extensions;
+@using Orchard.Blogs.Models;
@Display(Model.manage)
diff --git a/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Blog.cshtml b/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Blog.cshtml
index 9706d8c52..e99cc1c67 100644
--- a/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Blog.cshtml
+++ b/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Blog.cshtml
@@ -1,5 +1,5 @@
-@using Orchard.Blogs.Extensions
-@using Orchard.UI.Resources
+@using Orchard.Blogs.Extensions;
+@using Orchard.UI.Resources;
@{
RegisterLink(new LinkEntry { Rel = "wlwmanifest", Type = "application/wlwmanifest+xml", Href = Url.BlogLiveWriterManifest((string)Model.Slug) });
RegisterLink(new LinkEntry { Rel = "EditURI", Type = "application/rsd+xml", Title = "RSD", Href = Url.BlogRsd((string)Model.Slug) });
diff --git a/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Edit.BlogPost.cshtml b/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Edit.BlogPost.cshtml
index 42697f22e..dfc127ab1 100644
--- a/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Edit.BlogPost.cshtml
+++ b/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Edit.BlogPost.cshtml
@@ -1,4 +1,4 @@
-@using Orchard.Blogs.Models
+@using Orchard.Blogs.Models;
@{
Html.AddTitleParts((string)Model.Title);
BlogPostPart blogPost = Model.ContentItem.Get(typeof(BlogPostPart));
diff --git a/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Summary.Blog.cshtml b/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Summary.Blog.cshtml
index 87722010e..abb445ea0 100644
--- a/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Summary.Blog.cshtml
+++ b/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Summary.Blog.cshtml
@@ -1,5 +1,5 @@
-@using Orchard.Blogs.Extensions
-@using Orchard.Blogs.Models
+@using Orchard.Blogs.Extensions;
+@using Orchard.Blogs.Models;
@Html.Link((string)Model.Title, Url.Blog((string)Model.Slug))
@if (!string.IsNullOrEmpty((string)Model.Description)) {
@Model.Description
diff --git a/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Summary.BlogPost.cshtml b/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Summary.BlogPost.cshtml
index be565384a..f788fb89e 100644
--- a/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Summary.BlogPost.cshtml
+++ b/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.Summary.BlogPost.cshtml
@@ -1,8 +1,8 @@
-@using Orchard.Blogs.Extensions
-@using Orchard.Blogs.Models
-@using Orchard.Core.Common.Extensions
-@using Orchard.Core.Common.Models
-@using Orchard.Core.Common.ViewModels
+@using Orchard.Blogs.Extensions;
+@using Orchard.Blogs.Models;
+@using Orchard.Core.Common.Extensions;
+@using Orchard.Core.Common.Models;
+@using Orchard.Core.Common.ViewModels;
@Html.Link((string)Model.Title, Url.BlogPost((BlogPostPart)Model.ContentItem.Get(typeof(BlogPostPart))))
@Html.PublishedState(new CommonMetadataViewModel((CommonPart)Model.ContentItem.Get(typeof(CommonPart))), T) | @Display(Model.meta)
@Display(Model.primary)
\ No newline at end of file
diff --git a/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.SummaryAdmin.Blog.cshtml b/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.SummaryAdmin.Blog.cshtml
index 4aedc8254..a1cb5f13e 100644
--- a/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.SummaryAdmin.Blog.cshtml
+++ b/src/Orchard.Web/Modules/Orchard.Blogs/Views/Items/Content.SummaryAdmin.Blog.cshtml
@@ -1,5 +1,5 @@
-@using Orchard.Blogs.Extensions
-@using Orchard.Blogs.Models
+@using Orchard.Blogs.Extensions;
+@using Orchard.Blogs.Models;