Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
DataCenter_Core2.1_20190520
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
bltdc
DataCenter_Core2.1_20190520
Commits
b1d197f8
Commit
b1d197f8
authored
Jul 03, 2021
by
guanzhenshan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改任务生成的时间规则
parent
eda12942
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
Program.cs
Bailun.DC.TaskCenter/Program.cs
+7
-7
Services.cs
Bailun.DC.TaskCenter/Services.cs
+1
-1
No files found.
Bailun.DC.TaskCenter/Program.cs
View file @
b1d197f8
...
@@ -13,15 +13,15 @@ namespace Bailun.DC.TaskCenter
...
@@ -13,15 +13,15 @@ namespace Bailun.DC.TaskCenter
/// <param name="args"></param>
/// <param name="args"></param>
static
async
Task
Main
(
string
[]
args
)
static
async
Task
Main
(
string
[]
args
)
{
{
//
Console.WriteLine("启动服务 " + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"));
Console
.
WriteLine
(
"启动服务 "
+
DateTime
.
Now
.
ToString
(
"yyyy-MM-dd HH:mm:ss"
));
//
var builder = new HostBuilder().ConfigureServices((hostContext, services) =>
var
builder
=
new
HostBuilder
().
ConfigureServices
((
hostContext
,
services
)
=>
//
{
{
//
services.AddHostedService<Services>();
services
.
AddHostedService
<
Services
>();
//
});
});
//
await builder.RunConsoleAsync();
await
builder
.
RunConsoleAsync
();
new
Services
().
Init
();
//
new Services().Init();
}
}
}
}
...
...
Bailun.DC.TaskCenter/Services.cs
View file @
b1d197f8
...
@@ -23,7 +23,7 @@ namespace Bailun.DC.TaskCenter
...
@@ -23,7 +23,7 @@ namespace Bailun.DC.TaskCenter
{
{
var
now
=
DateTime
.
Now
;
var
now
=
DateTime
.
Now
;
if
(
now
.
Minute
==
12
&&
now
.
Second
==
3
)
//
if
(
now
.
Day
==
5
&&
now
.
Hour
==
2
&&
now
.
Minute
==
12
)
//
{
{
Console
.
WriteLine
(
"开始启动 "
+
DateTime
.
Now
.
ToString
(
"yyyy-MM-dd HH:mm:ss"
));
Console
.
WriteLine
(
"开始启动 "
+
DateTime
.
Now
.
ToString
(
"yyyy-MM-dd HH:mm:ss"
));
Init
();
Init
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment