chore: roslyn tips
This commit is contained in:
parent
cceffd09c4
commit
7587b9217b
|
|
@ -27,13 +27,13 @@ namespace Kiseki.Launcher
|
||||||
if (args.Length > 0)
|
if (args.Length > 0)
|
||||||
{
|
{
|
||||||
// TODO: handle these more gracefully
|
// TODO: handle these more gracefully
|
||||||
if (!Helpers.Base64.IsBase64String(args[0]))
|
if (!Base64.IsBase64String(args[0]))
|
||||||
{
|
{
|
||||||
Environment.Exit(0);
|
Environment.Exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: the payload will soon include more members, such as whether to open the IDE or not (as well as values required for our weird loopback authentication thing)
|
// TODO: the payload will soon include more members, such as whether to open the IDE or not (as well as values required for our weird loopback authentication thing)
|
||||||
string payload = Helpers.Base64.ConvertBase64ToString(args[0]);
|
string payload = Base64.ConvertBase64ToString(args[0]);
|
||||||
if (payload.Split("|").Length != 2)
|
if (payload.Split("|").Length != 2)
|
||||||
{
|
{
|
||||||
Environment.Exit(0);
|
Environment.Exit(0);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue