Fix Razor views "using" syntax

"@using" directive now requires a semicolon at the end.

--HG--
branch : dev
This commit is contained in:
Renaud Paquay
2010-10-07 10:48:51 -07:00
parent 0f4613cb18
commit 1e826830f2
86 changed files with 144 additions and 141 deletions

View File

@@ -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) });