This commit is contained in:
2025-07-04 09:50:02 +08:00
commit 3d800dbd11
2564 changed files with 1353015 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Practices.Unity;
using MyCode.Project.Infrastructure.UnityExtensions;
using MyCode.Project.Infrastructure.Common;
using MyCode.Project.Services;
using System.Threading;
using MyCode.Project.Infrastructure.WebPost;
namespace MyCode.Project.ScheduleTask
{
class Program
{
static void Main(string[] args)
{
JobsHelp.start(AppDomain.CurrentDomain.BaseDirectory + "/JobConfig.xml");
Console.ReadKey();
}
}
}