chore: Add known ticket issues to TODOs
This commit is contained in:
parent
adb3efc217
commit
cece927b3f
2 changed files with 3 additions and 3 deletions
|
|
@ -15,8 +15,8 @@ public class CopyOutputTask : FrostingTask<BuildContext>
|
||||||
public override void Run(BuildContext context)
|
public override void Run(BuildContext context)
|
||||||
{
|
{
|
||||||
var powershellModuleName = "PowershellModule";
|
var powershellModuleName = "PowershellModule";
|
||||||
// TODO: probably don't create full file locations when I can pass the output dir in and have the script
|
// TODO: [#10] Refactor file paths used in build project to be more explict and easier to understand
|
||||||
// make the path
|
// Probably don't create full file locations when I can pass the output dir in and have the script make the path
|
||||||
var scriptParams = new
|
var scriptParams = new
|
||||||
{
|
{
|
||||||
PowershellModuleFileLocation = $"{context.PowershellModuleOutputDir}/{powershellModuleName}.psd1",
|
PowershellModuleFileLocation = $"{context.PowershellModuleOutputDir}/{powershellModuleName}.psd1",
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using ModuleCore.Calendar;
|
|
||||||
using ModuleCore.Git;
|
using ModuleCore.Git;
|
||||||
using ModuleTests.Git.TestData;
|
using ModuleTests.Git.TestData;
|
||||||
|
|
||||||
namespace ModuleTests.Git;
|
namespace ModuleTests.Git;
|
||||||
|
|
||||||
|
// TODO: [#12] GitRepoRegistration tests should reset database at start of each test
|
||||||
public class AddRegistrationTests
|
public class AddRegistrationTests
|
||||||
{
|
{
|
||||||
private static readonly VerifySettings Settings;
|
private static readonly VerifySettings Settings;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue