mirror of
https://github.com/tonytins/staggerpost.git
synced 2025-04-30 05:31:41 -04:00
Compare commits
2 commits
2498b71fed
...
3ceff705a3
Author | SHA1 | Date | |
---|---|---|---|
3ceff705a3 | |||
1d2f15793c |
6 changed files with 8 additions and 8 deletions
|
@ -1,5 +1,5 @@
|
|||
// I hereby waive this project under the public domain - see UNLICENSE for details.
|
||||
namespace PublishTimes;
|
||||
namespace StaggerPost;
|
||||
|
||||
/// <summary>
|
||||
/// Represents the configuration settings for exporting a schedule,
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
global using System.Diagnostics;
|
||||
global using Tomlyn;
|
||||
global using Tomlyn.Model;
|
||||
global using PublishTimes;
|
||||
global using StaggerPost;
|
||||
global using System.Text.Json;
|
||||
global using System.Text.Json.Serialization;
|
|
@ -262,7 +262,7 @@ void ExportSchedule(List<String> storeTimes)
|
|||
jsonList.Add(new Schedule()
|
||||
{
|
||||
Topic = chosenTopic.Trim(),
|
||||
Date = date,
|
||||
Date = date.Trim(),
|
||||
Times = times,
|
||||
});
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Publish Times
|
||||
# StaggerPost
|
||||
|
||||
This is a very simple console application that generates a list of times to publish news articles within a randomized 2-3 hour delay within a 30-minute window to avoid conflicts. This keeps thing flowing at an organic and slow pace.
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
// I hereby waive this project under the public domain - see UNLICENSE for details.
|
||||
namespace PublishTimes;
|
||||
namespace StaggerPost;
|
||||
|
||||
/// <summary>
|
||||
/// Provides debug-only console output methods.
|
||||
|
@ -13,7 +13,7 @@ internal static class Tracer
|
|||
/// <param name="content">The text to write to the console.</param>
|
||||
[Conditional("DEBUG")]
|
||||
internal static void WriteLine(string content) =>
|
||||
Console.WriteLine(content);
|
||||
Console.WriteLine(content);
|
||||
|
||||
/// <summary>
|
||||
/// Writes text to the console without a newline, but only when in DEBUG mode.
|
||||
|
@ -21,7 +21,7 @@ internal static class Tracer
|
|||
/// <param name="content">The text to write to the console.</param>
|
||||
[Conditional("DEBUG")]
|
||||
internal static void Write(string content) =>
|
||||
Console.Write(content);
|
||||
Console.Write(content);
|
||||
|
||||
/// <summary>
|
||||
/// Writes multiple lines of text to the console, but only when in DEBUG mode.
|
||||
|
@ -59,7 +59,7 @@ internal static class Tracer
|
|||
#if DEBUG
|
||||
return Directory.GetCurrentDirectory();
|
||||
#else
|
||||
return AppDomain.CurrentDomain.BaseDirectory;
|
||||
return AppDomain.CurrentDomain.BaseDirectory;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue