删除无用的WebContext类

This commit is contained in:
falcon 2019-03-28 09:15:55 +08:00
parent edaea6fccc
commit 0309fe8f8f
2 changed files with 5 additions and 27 deletions

View File

@ -220,7 +220,6 @@
<Compile Include="IOCFactory.cs" />
<Compile Include="Models\HisInfoModels.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="WebContext.cs" />
<Compile Include="WebSettings.cs" />
<Compile Include="ws\HisInterface.asmx.cs">
<DependentUpon>HisInterface.asmx</DependentUpon>
@ -264,13 +263,13 @@
<Content Include="Scripts\jquery.validate.unobtrusive.js" />
<Content Include="Scripts\jquery.validate.unobtrusive.min.js" />
<Content Include="Scripts\modernizr-2.8.3.js" />
<Content Include="Web.config" />
<Content Include="Web.Debug.config">
<None Include="Web.config" />
<None Include="Web.Debug.config">
<DependentUpon>Web.config</DependentUpon>
</Content>
<Content Include="Web.Release.config">
</None>
<None Include="Web.Release.config">
<DependentUpon>Web.config</DependentUpon>
</Content>
</None>
<Content Include="Views\Web.config" />
<Content Include="Views\_ViewStart.cshtml" />
<Content Include="Views\Shared\Error.cshtml" />

View File

@ -1,21 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Cmdjy
{
/// <summary>
/// 网站执行上下文
/// </summary>
public static class WebContext
{
/// <summary>
/// 记录日志记录
/// </summary>
/// <param name="msg">日志信息</param>
public static void Log(string msg) {
}
}
}