some cleaning
This commit is contained in:
parent
44b534fb9b
commit
0e3d28768f
4 changed files with 58 additions and 46 deletions
|
|
@ -1,6 +1,7 @@
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
|
namespace Yavsc.Abstract.IT {
|
||||||
|
|
||||||
public class CiBuildSettings
|
public class CiBuildSettings
|
||||||
{
|
{
|
||||||
|
|
@ -47,3 +48,4 @@ public class CiBuildSettings
|
||||||
public string[] Emails { get; set; }
|
public string[] Emails { get; set; }
|
||||||
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,10 @@
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
|
namespace Yavsc.Abstract.IT
|
||||||
|
{
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A command specification (a system command),
|
/// A command specification (a system command),
|
||||||
/// in order to reference some trusted server-side process
|
/// in order to reference some trusted server-side process
|
||||||
|
|
@ -34,3 +38,5 @@ public class Command
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -4,8 +4,10 @@ using System.Diagnostics;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
public class CommandPipe
|
namespace Yavsc.Abstract.IT
|
||||||
{
|
{
|
||||||
|
public class CommandPipe
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
[JsonPropertyAttribute("pipe")]
|
[JsonPropertyAttribute("pipe")]
|
||||||
|
|
@ -61,4 +63,6 @@ public class CommandPipe
|
||||||
(latest = runQueue.Dequeue()).WaitForExit();
|
(latest = runQueue.Dequeue()).WaitForExit();
|
||||||
return latest.ExitCode;
|
return latest.ExitCode;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
1.0.6-rc05
|
1.0.6-rc06
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue