创建项目
commit
a3724f75c6
@ -0,0 +1,7 @@
|
||||
obj
|
||||
bin
|
||||
/packages
|
||||
/.vs
|
||||
/AMS.Web/Temp
|
||||
/AMS.Web/App_Data
|
||||
/AMS.Web/MailSend.Web.csproj.user
|
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<configSections>
|
||||
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
|
||||
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
|
||||
</configSections>
|
||||
<entityFramework>
|
||||
<providers>
|
||||
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
|
||||
</providers>
|
||||
</entityFramework>
|
||||
</configuration>
|
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="EntityFramework" version="6.4.4" targetFramework="net461" />
|
||||
<package id="log4net" version="2.0.14" targetFramework="net461" />
|
||||
<package id="Microsoft.Extensions.Logging.Abstractions" version="2.1.1" targetFramework="net461" />
|
||||
<package id="Newtonsoft.Json" version="12.0.2" targetFramework="net461" />
|
||||
<package id="Quartz" version="3.3.3" targetFramework="net461" />
|
||||
<package id="SharpZipLib" version="1.3.3" targetFramework="net461" />
|
||||
</packages>
|
@ -0,0 +1,38 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<LastActiveSolutionConfig>Debug|Any CPU</LastActiveSolutionConfig>
|
||||
<UseIISExpress>true</UseIISExpress>
|
||||
<Use64BitIISExpress />
|
||||
<IISExpressSSLPort />
|
||||
<IISExpressAnonymousAuthentication />
|
||||
<IISExpressWindowsAuthentication />
|
||||
<IISExpressUseClassicPipelineMode />
|
||||
<UseGlobalApplicationHostFile />
|
||||
</PropertyGroup>
|
||||
<ProjectExtensions>
|
||||
<VisualStudio>
|
||||
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
|
||||
<WebProjectProperties>
|
||||
<StartPageUrl>
|
||||
</StartPageUrl>
|
||||
<StartAction>CurrentPage</StartAction>
|
||||
<AspNetDebugging>True</AspNetDebugging>
|
||||
<SilverlightDebugging>False</SilverlightDebugging>
|
||||
<NativeDebugging>False</NativeDebugging>
|
||||
<SQLDebugging>False</SQLDebugging>
|
||||
<ExternalProgram>
|
||||
</ExternalProgram>
|
||||
<StartExternalURL>
|
||||
</StartExternalURL>
|
||||
<StartCmdLineArguments>
|
||||
</StartCmdLineArguments>
|
||||
<StartWorkingDirectory>
|
||||
</StartWorkingDirectory>
|
||||
<EnableENC>True</EnableENC>
|
||||
<AlwaysStartWebServerOnDebug>False</AlwaysStartWebServerOnDebug>
|
||||
</WebProjectProperties>
|
||||
</FlavorProperties>
|
||||
</VisualStudio>
|
||||
</ProjectExtensions>
|
||||
</Project>
|
@ -0,0 +1 @@
|
||||
<%@ Application Codebehind="Global.asax.cs" Inherits="AMS.Web.MvcApplication" Language="C#" %>
|
@ -0,0 +1,26 @@
|
||||
using Quartz.Impl;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Web.Mvc;
|
||||
using System.Web.Routing;
|
||||
|
||||
namespace AMS.Web
|
||||
{
|
||||
public class MvcApplication : System.Web.HttpApplication
|
||||
{
|
||||
protected void Application_Start()
|
||||
{
|
||||
AreaRegistration.RegisterAllAreas();
|
||||
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
|
||||
RouteConfig.RegisterRoutes(RouteTable.Routes);
|
||||
|
||||
var scheduler = StdSchedulerFactory.GetDefaultScheduler().Result;
|
||||
scheduler.Start();
|
||||
|
||||
log4net.Config.XmlConfigurator.Configure(new FileInfo(Server.MapPath("~/log4net.config")));
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
-->
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<DeleteExistingFiles>False</DeleteExistingFiles>
|
||||
<ExcludeApp_Data>False</ExcludeApp_Data>
|
||||
<LaunchSiteAfterPublish>True</LaunchSiteAfterPublish>
|
||||
<LastUsedBuildConfiguration>Release</LastUsedBuildConfiguration>
|
||||
<LastUsedPlatform>Any CPU</LastUsedPlatform>
|
||||
<PublishProvider>FileSystem</PublishProvider>
|
||||
<PublishUrl>bin\app.publish\</PublishUrl>
|
||||
<WebPublishMethod>FileSystem</WebPublishMethod>
|
||||
</PropertyGroup>
|
||||
</Project>
|
@ -0,0 +1,573 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
-->
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<_PublishTargetUrl>E:\whm\git-proj\MailSend\MailSend.Web\bin\app.publish\</_PublishTargetUrl>
|
||||
<History>True|2022-03-10T07:24:12.0931709Z;</History>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<File Include="bin/Antlr3.Runtime.dll">
|
||||
<publishTime>09/10/2013 16:29:20</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Antlr3.Runtime.pdb">
|
||||
<publishTime>09/10/2013 16:29:20</publishTime>
|
||||
</File>
|
||||
<File Include="bin/EntityFramework.dll">
|
||||
<publishTime>04/17/2020 04:38:42</publishTime>
|
||||
</File>
|
||||
<File Include="bin/EntityFramework.SqlServer.dll">
|
||||
<publishTime>04/17/2020 04:38:56</publishTime>
|
||||
</File>
|
||||
<File Include="bin/ICSharpCode.SharpZipLib.dll">
|
||||
<publishTime>09/19/2021 17:20:28</publishTime>
|
||||
</File>
|
||||
<File Include="bin/ICSharpCode.SharpZipLib.pdb">
|
||||
<publishTime>09/19/2021 17:20:28</publishTime>
|
||||
</File>
|
||||
<File Include="bin/log4net.config">
|
||||
<publishTime>03/04/2022 10:16:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/log4net.dll">
|
||||
<publishTime>12/17/2021 10:45:06</publishTime>
|
||||
</File>
|
||||
<File Include="bin/MailSend.Common.dll">
|
||||
<publishTime>03/10/2022 15:24:08</publishTime>
|
||||
</File>
|
||||
<File Include="bin/MailSend.Common.dll.config">
|
||||
<publishTime>03/03/2022 15:07:07</publishTime>
|
||||
</File>
|
||||
<File Include="bin/MailSend.Common.pdb">
|
||||
<publishTime>03/10/2022 15:24:08</publishTime>
|
||||
</File>
|
||||
<File Include="bin/MailSend.Web.dll">
|
||||
<publishTime>03/10/2022 15:24:09</publishTime>
|
||||
</File>
|
||||
<File Include="bin/MailSend.Web.pdb">
|
||||
<publishTime>03/10/2022 15:24:09</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll">
|
||||
<publishTime>09/05/2018 16:10:50</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Microsoft.Extensions.Logging.Abstractions.dll">
|
||||
<publishTime>06/07/2018 00:26:54</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Microsoft.Web.Infrastructure.dll">
|
||||
<publishTime>07/25/2012 11:48:56</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Microsoft.Win32.Primitives.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/netstandard.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Newtonsoft.Json.dll">
|
||||
<publishTime>04/22/2019 01:06:16</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Quartz.dll">
|
||||
<publishTime>08/01/2021 10:34:28</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Quartz.Jobs.dll">
|
||||
<publishTime>08/01/2021 18:35:28</publishTime>
|
||||
</File>
|
||||
<File Include="bin/Quartz.Plugins.dll">
|
||||
<publishTime>08/01/2021 18:35:38</publishTime>
|
||||
</File>
|
||||
<File Include="bin/quartz_jobs.xml">
|
||||
<publishTime>03/04/2022 10:09:47</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/csc.exe">
|
||||
<publishTime>08/08/2018 05:38:48</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/csc.exe.config">
|
||||
<publishTime>08/08/2018 12:18:12</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/csc.rsp">
|
||||
<publishTime>08/08/2018 12:09:42</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/csi.exe">
|
||||
<publishTime>08/08/2018 05:38:48</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/csi.exe.config">
|
||||
<publishTime>08/08/2018 12:18:34</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/csi.rsp">
|
||||
<publishTime>08/08/2018 12:09:56</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/Microsoft.Build.Tasks.CodeAnalysis.dll">
|
||||
<publishTime>08/08/2018 05:38:48</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/Microsoft.CodeAnalysis.CSharp.dll">
|
||||
<publishTime>08/08/2018 05:38:48</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/Microsoft.CodeAnalysis.CSharp.Scripting.dll">
|
||||
<publishTime>08/08/2018 05:38:48</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/Microsoft.CodeAnalysis.dll">
|
||||
<publishTime>08/08/2018 05:38:48</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/Microsoft.CodeAnalysis.Scripting.dll">
|
||||
<publishTime>08/08/2018 05:38:48</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/Microsoft.CodeAnalysis.VisualBasic.dll">
|
||||
<publishTime>08/08/2018 05:38:48</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/Microsoft.CSharp.Core.targets">
|
||||
<publishTime>08/08/2018 12:09:42</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/Microsoft.DiaSymReader.Native.amd64.dll">
|
||||
<publishTime>12/05/2017 09:36:44</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/Microsoft.DiaSymReader.Native.x86.dll">
|
||||
<publishTime>12/05/2017 09:36:44</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/Microsoft.Managed.Core.targets">
|
||||
<publishTime>08/08/2018 12:09:42</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/Microsoft.VisualBasic.Core.targets">
|
||||
<publishTime>08/08/2018 12:09:42</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/Microsoft.Win32.Primitives.dll">
|
||||
<publishTime>11/05/2016 18:55:32</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.AppContext.dll">
|
||||
<publishTime>11/05/2016 18:55:34</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Collections.Immutable.dll">
|
||||
<publishTime>05/16/2018 03:29:34</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Console.dll">
|
||||
<publishTime>11/05/2016 18:55:48</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Diagnostics.DiagnosticSource.dll">
|
||||
<publishTime>11/05/2016 18:55:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Diagnostics.FileVersionInfo.dll">
|
||||
<publishTime>11/05/2016 18:55:56</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Diagnostics.StackTrace.dll">
|
||||
<publishTime>11/05/2016 18:55:52</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Globalization.Calendars.dll">
|
||||
<publishTime>11/05/2016 18:56:02</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.IO.Compression.dll">
|
||||
<publishTime>11/05/2016 18:56:08</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.IO.Compression.ZipFile.dll">
|
||||
<publishTime>11/05/2016 18:56:04</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.IO.FileSystem.dll">
|
||||
<publishTime>11/05/2016 18:56:08</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.IO.FileSystem.Primitives.dll">
|
||||
<publishTime>11/05/2016 18:56:08</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Net.Http.dll">
|
||||
<publishTime>11/05/2016 18:56:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Net.Sockets.dll">
|
||||
<publishTime>11/05/2016 18:56:34</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Reflection.Metadata.dll">
|
||||
<publishTime>05/16/2018 03:29:44</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Runtime.InteropServices.RuntimeInformation.dll">
|
||||
<publishTime>11/05/2016 18:57:00</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Security.Cryptography.Algorithms.dll">
|
||||
<publishTime>11/05/2016 18:57:14</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Security.Cryptography.Encoding.dll">
|
||||
<publishTime>11/05/2016 18:57:08</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Security.Cryptography.Primitives.dll">
|
||||
<publishTime>11/05/2016 18:57:18</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Security.Cryptography.X509Certificates.dll">
|
||||
<publishTime>11/05/2016 18:57:18</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Text.Encoding.CodePages.dll">
|
||||
<publishTime>11/05/2016 18:57:20</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Threading.Tasks.Extensions.dll">
|
||||
<publishTime>11/05/2016 18:57:24</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.ValueTuple.dll">
|
||||
<publishTime>11/05/2016 18:57:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Xml.ReaderWriter.dll">
|
||||
<publishTime>11/05/2016 18:57:36</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Xml.XmlDocument.dll">
|
||||
<publishTime>11/05/2016 18:57:34</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Xml.XPath.dll">
|
||||
<publishTime>11/05/2016 18:57:40</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/System.Xml.XPath.XDocument.dll">
|
||||
<publishTime>11/05/2016 18:57:34</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/vbc.exe">
|
||||
<publishTime>08/08/2018 05:38:48</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/vbc.exe.config">
|
||||
<publishTime>08/08/2018 12:18:18</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/vbc.rsp">
|
||||
<publishTime>08/08/2018 12:09:46</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/VBCSCompiler.exe">
|
||||
<publishTime>08/08/2018 05:38:48</publishTime>
|
||||
</File>
|
||||
<File Include="bin/roslyn/VBCSCompiler.exe.config">
|
||||
<publishTime>08/08/2018 12:18:16</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.AppContext.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Collections.Concurrent.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Collections.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Collections.NonGeneric.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Collections.Specialized.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.ComponentModel.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.ComponentModel.EventBasedAsync.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.ComponentModel.Primitives.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.ComponentModel.TypeConverter.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Console.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Data.Common.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Diagnostics.Contracts.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Diagnostics.Debug.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Diagnostics.FileVersionInfo.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Diagnostics.Process.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Diagnostics.StackTrace.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Diagnostics.TextWriterTraceListener.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Diagnostics.Tools.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Diagnostics.TraceSource.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Diagnostics.Tracing.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Drawing.Primitives.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Dynamic.Runtime.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Globalization.Calendars.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Globalization.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Globalization.Extensions.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.IO.Compression.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.IO.Compression.ZipFile.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.IO.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.IO.FileSystem.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.IO.FileSystem.DriveInfo.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.IO.FileSystem.Primitives.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.IO.FileSystem.Watcher.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.IO.IsolatedStorage.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.IO.MemoryMappedFiles.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.IO.Pipes.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.IO.UnmanagedMemoryStream.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Linq.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Linq.Expressions.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Linq.Parallel.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Linq.Queryable.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Net.Http.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Net.NameResolution.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Net.NetworkInformation.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Net.Ping.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Net.Primitives.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Net.Requests.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Net.Security.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Net.Sockets.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Net.WebHeaderCollection.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Net.WebSockets.Client.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Net.WebSockets.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.ObjectModel.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Reflection.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Reflection.Extensions.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Reflection.Primitives.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Resources.Reader.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Resources.ResourceManager.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Resources.Writer.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Runtime.CompilerServices.VisualC.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Runtime.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Runtime.Extensions.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Runtime.Handles.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Runtime.InteropServices.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Runtime.InteropServices.RuntimeInformation.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Runtime.Numerics.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Runtime.Serialization.Formatters.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Runtime.Serialization.Json.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Runtime.Serialization.Primitives.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Runtime.Serialization.Xml.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Security.Claims.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Security.Cryptography.Algorithms.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Security.Cryptography.Csp.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Security.Cryptography.Encoding.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Security.Cryptography.Primitives.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Security.Cryptography.X509Certificates.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Security.Principal.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Security.SecureString.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Text.Encoding.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Text.Encoding.Extensions.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Text.RegularExpressions.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Threading.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Threading.Overlapped.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Threading.Tasks.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Threading.Tasks.Parallel.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Threading.Thread.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Threading.ThreadPool.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Threading.Timer.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.ValueTuple.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Web.Helpers.dll">
|
||||
<publishTime>11/28/2018 13:04:24</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Web.Mvc.dll">
|
||||
<publishTime>11/28/2018 12:59:46</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Web.Razor.dll">
|
||||
<publishTime>11/28/2018 13:00:12</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Web.WebPages.Deployment.dll">
|
||||
<publishTime>11/28/2018 13:04:24</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Web.WebPages.dll">
|
||||
<publishTime>11/28/2018 13:04:24</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Web.WebPages.Razor.dll">
|
||||
<publishTime>11/28/2018 13:04:24</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Xml.ReaderWriter.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Xml.XDocument.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Xml.XmlDocument.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Xml.XmlSerializer.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Xml.XPath.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/System.Xml.XPath.XDocument.dll">
|
||||
<publishTime>09/18/2021 12:40:30</publishTime>
|
||||
</File>
|
||||
<File Include="bin/zh-Hans/System.Web.Helpers.resources.dll">
|
||||
<publishTime>11/29/2018 21:29:50</publishTime>
|
||||
</File>
|
||||
<File Include="bin/zh-Hans/System.Web.Mvc.resources.dll">
|
||||
<publishTime>11/29/2018 21:25:14</publishTime>
|
||||
</File>
|
||||
<File Include="bin/zh-Hans/System.Web.Razor.resources.dll">
|
||||
<publishTime>11/29/2018 21:25:38</publishTime>
|
||||
</File>
|
||||
<File Include="bin/zh-Hans/System.Web.WebPages.Deployment.resources.dll">
|
||||
<publishTime>11/29/2018 21:29:50</publishTime>
|
||||
</File>
|
||||
<File Include="bin/zh-Hans/System.Web.WebPages.Razor.resources.dll">
|
||||
<publishTime>11/29/2018 21:29:50</publishTime>
|
||||
</File>
|
||||
<File Include="bin/zh-Hans/System.Web.WebPages.resources.dll">
|
||||
<publishTime>11/29/2018 21:29:50</publishTime>
|
||||
</File>
|
||||
<File Include="favicon.ico">
|
||||
<publishTime>03/03/2022 15:04:07</publishTime>
|
||||
</File>
|
||||
<File Include="Global.asax">
|
||||
<publishTime>03/03/2022 15:04:07</publishTime>
|
||||
</File>
|
||||
<File Include="log4net.config">
|
||||
<publishTime>03/04/2022 10:16:30</publishTime>
|
||||
</File>
|
||||
<File Include="quartz_jobs.xml">
|
||||
<publishTime>03/04/2022 10:09:47</publishTime>
|
||||
</File>
|
||||
<File Include="Views/Shared/Error.cshtml">
|
||||
<publishTime>03/03/2022 15:04:07</publishTime>
|
||||
</File>
|
||||
<File Include="Views/Shared/_Layout.cshtml">
|
||||
<publishTime>03/03/2022 15:04:07</publishTime>
|
||||
</File>
|
||||
<File Include="Views/Web.config">
|
||||
<publishTime>03/03/2022 15:04:07</publishTime>
|
||||
</File>
|
||||
<File Include="Views/_ViewStart.cshtml">
|
||||
<publishTime>03/03/2022 15:04:07</publishTime>
|
||||
</File>
|
||||
<File Include="Web.config">
|
||||
<publishTime>03/10/2022 15:24:10</publishTime>
|
||||
</File>
|
||||
</ItemGroup>
|
||||
</Project>
|
@ -0,0 +1,14 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>错误</title>
|
||||
</head>
|
||||
<body>
|
||||
<hgroup>
|
||||
<h1>错误。</h1>
|
||||
<h2>处理你的请求时出错。</h2>
|
||||
</hgroup>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,43 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>@ViewBag.Title - 我的 ASP.NET 应用程序</title>
|
||||
@Styles.Render("~/Content/css")
|
||||
@Scripts.Render("~/bundles/modernizr")
|
||||
</head>
|
||||
<body>
|
||||
<div class="navbar navbar-inverse navbar-fixed-top">
|
||||
<div class="container">
|
||||
<div class="navbar-header">
|
||||
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
</button>
|
||||
@Html.ActionLink("应用程序名称", "Index", "Home", new { area = "" }, new { @class = "navbar-brand" })
|
||||
</div>
|
||||
<div class="navbar-collapse collapse">
|
||||
<ul class="nav navbar-nav">
|
||||
<li>@Html.ActionLink("主页", "Index", "Home")</li>
|
||||
<li>@Html.ActionLink("关于", "About", "Home")</li>
|
||||
<li>@Html.ActionLink("联系方式", "Contact", "Home")</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container body-content">
|
||||
@RenderBody()
|
||||
<hr />
|
||||
<footer>
|
||||
<p>© @DateTime.Now.Year - 我的 ASP.NET 应用程序</p>
|
||||
</footer>
|
||||
</div>
|
||||
|
||||
@Scripts.Render("~/bundles/jquery")
|
||||
@Scripts.Render("~/bundles/bootstrap")
|
||||
@RenderSection("scripts", required: false)
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,43 @@
|
||||
<?xml version="1.0"?>
|
||||
|
||||
<configuration>
|
||||
<configSections>
|
||||
<sectionGroup name="system.web.webPages.razor" type="System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
|
||||
<section name="host" type="System.Web.WebPages.Razor.Configuration.HostSection, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" />
|
||||
<section name="pages" type="System.Web.WebPages.Razor.Configuration.RazorPagesSection, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" />
|
||||
</sectionGroup>
|
||||
</configSections>
|
||||
|
||||
<system.web.webPages.razor>
|
||||
<host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=5.2.7.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
|
||||
<pages pageBaseType="System.Web.Mvc.WebViewPage">
|
||||
<namespaces>
|
||||
<add namespace="System.Web.Mvc" />
|
||||
<add namespace="System.Web.Mvc.Ajax" />
|
||||
<add namespace="System.Web.Mvc.Html" />
|
||||
<add namespace="System.Web.Optimization"/>
|
||||
<add namespace="System.Web.Routing" />
|
||||
<add namespace="MailSend.Web" />
|
||||
</namespaces>
|
||||
</pages>
|
||||
</system.web.webPages.razor>
|
||||
|
||||
<appSettings>
|
||||
<add key="webpages:Enabled" value="false" />
|
||||
</appSettings>
|
||||
|
||||
<system.webServer>
|
||||
<handlers>
|
||||
<remove name="BlockViewHandler"/>
|
||||
<add name="BlockViewHandler" path="*" verb="*" preCondition="integratedMode" type="System.Web.HttpNotFoundHandler" />
|
||||
</handlers>
|
||||
</system.webServer>
|
||||
|
||||
<system.web>
|
||||
<compilation>
|
||||
<assemblies>
|
||||
<add assembly="System.Web.Mvc, Version=5.2.7.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
|
||||
</assemblies>
|
||||
</compilation>
|
||||
</system.web>
|
||||
</configuration>
|
@ -0,0 +1,3 @@
|
||||
@{
|
||||
Layout = "~/Views/Shared/_Layout.cshtml";
|
||||
}
|
@ -0,0 +1,296 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
有关如何配置 ASP.NET 应用程序的详细信息,请访问
|
||||
https://go.microsoft.com/fwlink/?LinkId=301880
|
||||
-->
|
||||
<configuration>
|
||||
<configSections>
|
||||
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
|
||||
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
|
||||
<section name="quartz" type="System.Configuration.NameValueSectionHandler, System, Version=1.0.5000.0,Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
|
||||
|
||||
</configSections>
|
||||
<appSettings>
|
||||
<add key="webpages:Version" value="3.0.0.0"/>
|
||||
<add key="webpages:Enabled" value="false"/>
|
||||
<add key="ClientValidationEnabled" value="true"/>
|
||||
<add key="UnobtrusiveJavaScriptEnabled" value="true"/>
|
||||
</appSettings>
|
||||
<connectionStrings>
|
||||
<add name="MailDB" connectionString="Data Source=192.168.0.80;Initial Catalog=MailSend;Persist Security Info=True;User ID=sa;Password=sa123" providerName="System.Data.SqlClient"/>
|
||||
|
||||
</connectionStrings>
|
||||
<system.web>
|
||||
<compilation debug="true" targetFramework="4.6.1"/>
|
||||
<httpRuntime targetFramework="4.6.1"/>
|
||||
</system.web>
|
||||
<runtime>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Xml.XPath.XDocument" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Xml.XmlSerializer" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Xml.XDocument" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Xml.ReaderWriter" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.ValueTuple" publicKeyToken="CC7B13FFCD2DDD51" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Threading.Timer" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Threading.Tasks.Parallel" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Threading.Tasks" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Threading.Overlapped" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Threading" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Text.RegularExpressions" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Text.Encoding.Extensions" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Text.Encoding" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Security.SecureString" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Security.Principal" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Security.Cryptography.Algorithms" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.3.0.0" newVersion="4.3.0.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Runtime.Serialization.Xml" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.1.3.0" newVersion="4.1.3.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Runtime.Serialization.Primitives" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Runtime.Serialization.Json" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Runtime.Numerics" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Runtime.InteropServices.RuntimeInformation" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Runtime.InteropServices" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Runtime.Extensions" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Runtime" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Resources.ResourceManager" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Reflection.Primitives" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Reflection.Extensions" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Reflection" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.ObjectModel" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Net.Sockets" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Net.Requests" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Net.Primitives" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Net.NetworkInformation" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Net.Http" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Linq.Queryable" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Linq.Parallel" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Linq.Expressions" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Linq" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.IO" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.IO.Compression" publicKeyToken="B77A5C561934E089" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Globalization.Extensions" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Globalization" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Dynamic.Runtime" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Diagnostics.Tracing" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Diagnostics.Tools" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Diagnostics.StackTrace" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Diagnostics.Debug" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Diagnostics.Contracts" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Data.Common" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.ComponentModel.EventBasedAsync" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.ComponentModel" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Collections" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Collections.Concurrent" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Antlr3.Runtime" publicKeyToken="eb42632606e9261f"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.5.0.2" newVersion="3.5.0.2"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35"/>
|
||||
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-1.6.5135.21930" newVersion="1.6.5135.21930"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35"/>
|
||||
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35"/>
|
||||
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35"/>
|
||||
<bindingRedirect oldVersion="1.0.0.0-5.2.7.0" newVersion="5.2.7.0"/>
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
||||
<system.codedom>
|
||||
<compilers>
|
||||
<compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=2.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:default /nowarn:1659;1699;1701"/>
|
||||
<compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=2.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:default /nowarn:41008 /define:_MYTYPE=\"Web\" /optionInfer+"/>
|
||||
</compilers>
|
||||
</system.codedom>
|
||||
<entityFramework>
|
||||
<providers>
|
||||
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer"/>
|
||||
</providers>
|
||||
</entityFramework>
|
||||
|
||||
<quartz>
|
||||
<add key="quartz.scheduler.instanceName" value="ServerScheduler"/>
|
||||
<add key="quartz.threadPool.type" value="Quartz.Simpl.SimpleThreadPool, Quartz"/>
|
||||
<add key="quartz.threadPool.threadCount" value="50"/>
|
||||
<add key="quartz.threadPool.threadPriority" value="2"/>
|
||||
<add key="quartz.jobStore.misfireThreshold" value="30000"/>
|
||||
<add key="quartz.jobStore.type" value="Quartz.Simpl.RAMJobStore, Quartz"/>
|
||||
|
||||
<add key="quartz.plugin.jobInitializer.type" value="Quartz.Plugin.Xml.XMLSchedulingDataProcessorPlugin, Quartz.Plugins"/>
|
||||
<add key="quartz.plugin.jobInitializer.fileNames" value="~/quartz_jobs.xml"/>
|
||||
<add key="quartz.plugin.jobInitializer.failOnFileNotFound" value="true"/>
|
||||
|
||||
</quartz>
|
||||
</configuration>
|
Binary file not shown.
After Width: | Height: | Size: 31 KiB |
@ -0,0 +1,46 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<configSections>
|
||||
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler,log4net" requirePermission="false" />
|
||||
</configSections>
|
||||
<log4net>
|
||||
<root>
|
||||
<!-- Value of priority may be ALL, DEBUG, INFO, WARN, ERROR, FATAL, OFF -->
|
||||
<level value="DEBUG" />
|
||||
<appender-ref ref="DebugAppender" />
|
||||
<appender-ref ref="ErrorAppender" />
|
||||
</root>
|
||||
<appender name="DebugAppender" type="log4net.Appender.RollingFileAppender">
|
||||
<!-- debug log: 记录 DEBUG, INFO 级别的日志 -->
|
||||
<file value="App_Data\\Logs\\debug.log" />
|
||||
<appendToFile value="true" />
|
||||
<rollingStyle value="Composite" />
|
||||
<datePattern value="yyyyMMdd" />
|
||||
<maxSizeRollBackups value="100" />
|
||||
<maximumFileSize value="10MB" />
|
||||
<staticLogFileName value="true" />
|
||||
<layout type="log4net.Layout.PatternLayout" >
|
||||
<param name="ConversionPattern" value="%date [%p] [%logger] [%thread] - %message%newline" />
|
||||
</layout>
|
||||
<filter type="log4net.Filter.LevelRangeFilter">
|
||||
<levelMax value="INFO" />
|
||||
</filter>
|
||||
</appender>
|
||||
<appender name="ErrorAppender" type="log4net.Appender.RollingFileAppender">
|
||||
<!-- error log: 记录 WARN,ERROR,FATAL 级别的日志 -->
|
||||
<file value="App_Data\\Logs\\error.log" />
|
||||
<appendToFile value="true" />
|
||||
<rollingStyle value="Composite" />
|
||||
<datePattern value="yyyyMMdd" />
|
||||
<maxSizeRollBackups value="100" />
|
||||
<maximumFileSize value="10MB" />
|
||||
<staticLogFileName value="true" />
|
||||
<layout type="log4net.Layout.PatternLayout" >
|
||||
<param name="ConversionPattern" value="%date [%p] [%logger] [%thread] - %message%newline" />
|
||||
</layout>
|
||||
<filter type="log4net.Filter.LevelRangeFilter">
|
||||
<levelMin value="WARN" />
|
||||
</filter>
|
||||
</appender>
|
||||
</log4net>
|
||||
</configuration>
|
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="Antlr" version="3.5.0.2" targetFramework="net461" />
|
||||
<package id="EntityFramework" version="6.4.4" targetFramework="net461" />
|
||||
<package id="log4net" version="2.0.14" targetFramework="net461" />
|
||||
<package id="Microsoft.AspNet.Mvc" version="5.2.7" targetFramework="net461" />
|
||||
<package id="Microsoft.AspNet.Mvc.zh-Hans" version="5.2.7" targetFramework="net461" />
|
||||
<package id="Microsoft.AspNet.Razor" version="3.2.7" targetFramework="net461" />
|
||||
<package id="Microsoft.AspNet.Razor.zh-Hans" version="3.2.7" targetFramework="net461" />
|
||||
<package id="Microsoft.AspNet.WebPages" version="3.2.7" targetFramework="net461" />
|
||||
<package id="Microsoft.AspNet.WebPages.zh-Hans" version="3.2.7" targetFramework="net461" />
|
||||
<package id="Microsoft.CodeDom.Providers.DotNetCompilerPlatform" version="2.0.1" targetFramework="net461" />
|
||||
<package id="Microsoft.Extensions.Logging.Abstractions" version="2.1.1" targetFramework="net461" />
|
||||
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net461" />
|
||||
<package id="Modernizr" version="2.8.3" targetFramework="net461" />
|
||||
<package id="Newtonsoft.Json" version="12.0.2" targetFramework="net461" />
|
||||
<package id="Quartz" version="3.3.3" targetFramework="net461" />
|
||||
<package id="Quartz.Jobs" version="3.3.3" targetFramework="net461" />
|
||||
<package id="Quartz.Plugins" version="3.3.3" targetFramework="net461" />
|
||||
</packages>
|
Loading…
Reference in New Issue