some cleaning

This commit is contained in:
2019-08-26 01:54:38 +01:00
parent 9a669ea5fb
commit 2f7b4b3875
4 changed files with 66 additions and 54 deletions

View File

@ -1,6 +1,7 @@
using System.ComponentModel.DataAnnotations;
using Newtonsoft.Json;
namespace Yavsc.Abstract.IT {
public class CiBuildSettings
{
@ -47,3 +48,4 @@ public class CiBuildSettings
public string[] Emails { get; set; }
}
}

View File

@ -2,6 +2,10 @@
using System.ComponentModel.DataAnnotations;
using System.Diagnostics;
using Newtonsoft.Json;
namespace Yavsc.Abstract.IT
{
/// <summary>
/// A command specification (a system command),
/// in order to reference some trusted server-side process
@ -34,3 +38,5 @@ public class Command
}
}
}

View File

@ -4,6 +4,8 @@ using System.Diagnostics;
using System.Threading.Tasks;
using Newtonsoft.Json;
namespace Yavsc.Abstract.IT
{
public class CommandPipe
{
@ -62,3 +64,5 @@ public class CommandPipe
return latest.ExitCode;
}
}
}

View File

@ -1 +1 @@
1.0.6-rc05
1.0.6-rc06