Changed namespace
This commit is contained in:
Родитель
54b69eeaef
Коммит
7ecad50cfb
|
@ -3,7 +3,19 @@ Microsoft Visual Studio Solution File, Format Version 12.00
|
|||
# Visual Studio 14
|
||||
VisualStudioVersion = 14.0.22310.1
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AngleSharp.TestSite", "AngleSharp.TestSite\AngleSharp.TestSite.csproj", "{7C4BE9B9-30E6-411B-8403-F05755533583}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{7C4BE9B9-30E6-411B-8403-F05755533583}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{7C4BE9B9-30E6-411B-8403-F05755533583}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{7C4BE9B9-30E6-411B-8403-F05755533583}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{7C4BE9B9-30E6-411B-8403-F05755533583}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
using System.Web;
|
||||
using System.Web.Mvc;
|
||||
|
||||
namespace AngleSharpSubmitTest
|
||||
namespace AngleSharp.TestSite.Config
|
||||
{
|
||||
using System.Web;
|
||||
using System.Web.Mvc;
|
||||
|
||||
public class FilterConfig
|
||||
{
|
||||
public static void RegisterGlobalFilters(GlobalFilterCollection filters)
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
using System.Web.Mvc;
|
||||
using System.Web.Routing;
|
||||
|
||||
namespace AngleSharpSubmitTest
|
||||
namespace AngleSharp.TestSite.Config
|
||||
{
|
||||
using System.Web.Mvc;
|
||||
using System.Web.Routing;
|
||||
|
||||
public class RouteConfig
|
||||
{
|
||||
public static void RegisterRoutes(RouteCollection routes)
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
using AngleSharpSubmitTest.Models;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Web.Mvc;
|
||||
|
||||
namespace AngleSharpSubmitTest.Controllers
|
||||
namespace AngleSharp.TestSite.Controllers
|
||||
{
|
||||
using AngleSharp.TestSite.Models;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Web.Mvc;
|
||||
|
||||
public class TestsController : Controller
|
||||
{
|
||||
#region Urlencode
|
||||
|
|
|
@ -1 +1 @@
|
|||
<%@ Application Codebehind="Global.asax.cs" Inherits="AngleSharpSubmitTest.MvcApplication" Language="C#" %>
|
||||
<%@ Application Codebehind="Global.asax.cs" Inherits="AngleSharp.TestSite.MvcApplication" Language="C#" %>
|
||||
|
|
|
@ -1,14 +1,11 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Web.Mvc;
|
||||
using System.Web.Optimization;
|
||||
using System.Web.Routing;
|
||||
|
||||
namespace AngleSharpSubmitTest
|
||||
namespace AngleSharp.TestSite
|
||||
{
|
||||
public class MvcApplication : System.Web.HttpApplication
|
||||
using AngleSharp.TestSite.Config;
|
||||
using System.Web;
|
||||
using System.Web.Mvc;
|
||||
using System.Web.Routing;
|
||||
|
||||
public class MvcApplication : HttpApplication
|
||||
{
|
||||
protected void Application_Start()
|
||||
{
|
||||
|
|
|
@ -1,10 +1,8 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
|
||||
namespace AngleSharpSubmitTest.Models
|
||||
namespace AngleSharp.TestSite.Models
|
||||
{
|
||||
using System;
|
||||
using System.Web;
|
||||
|
||||
public class FileModel
|
||||
{
|
||||
public String Name
|
||||
|
|
|
@ -1,10 +1,9 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
|
||||
namespace AngleSharpSubmitTest.Models
|
||||
namespace AngleSharp.TestSite.Models
|
||||
{
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Web;
|
||||
|
||||
public class FilesModel
|
||||
{
|
||||
public String Name
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
using System;
|
||||
|
||||
namespace AngleSharpSubmitTest.Models
|
||||
namespace AngleSharp.TestSite.Models
|
||||
{
|
||||
using System;
|
||||
|
||||
public class NormalModel
|
||||
{
|
||||
public String Name
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@model AngleSharpSubmitTest.Models.FileModel
|
||||
@model AngleSharp.TestSite.Models.FileModel
|
||||
@{
|
||||
ViewBag.Title = "PostMultipartFile";
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@model AngleSharpSubmitTest.Models.FilesModel
|
||||
@model AngleSharp.TestSite.Models.FilesModel
|
||||
@{
|
||||
ViewBag.Title = "PostMultipartFiles";
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@model AngleSharpSubmitTest.Models.NormalModel
|
||||
@model AngleSharp.TestSite.Models.NormalModel
|
||||
@{
|
||||
ViewBag.Title = "PostMultipartNormal";
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@model AngleSharpSubmitTest.Models.FileModel
|
||||
@model AngleSharp.TestSite.Models.FileModel
|
||||
@{
|
||||
ViewBag.Title = "PostUrlencodeFile";
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@model AngleSharpSubmitTest.Models.NormalModel
|
||||
@model AngleSharp.TestSite.Models.NormalModel
|
||||
@{
|
||||
ViewBag.Title = "PostUrlencodeNormal";
|
||||
}
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
<add namespace="System.Web.Mvc.Html" />
|
||||
<add namespace="System.Web.Optimization"/>
|
||||
<add namespace="System.Web.Routing" />
|
||||
<add namespace="AngleSharpSubmitTest" />
|
||||
<add namespace="AngleSharp.TestSite" />
|
||||
</namespaces>
|
||||
</pages>
|
||||
</system.web.webPages.razor>
|
||||
|
|
Загрузка…
Ссылка в новой задаче