mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
23 lines
561 B
C#
23 lines
561 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Configuration;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Windows;
|
|
using System.IO;
|
|
|
|
namespace Cosmos.Deploy.USB {
|
|
public partial class App : Application {
|
|
public static string ObjFile;
|
|
public static string Title = "Cosmos USB Deployment Tool";
|
|
|
|
private void Application_Startup(object sender, StartupEventArgs e) {
|
|
if (e.Args.Length < 1) {
|
|
MessageBox.Show("Not enough parameters.", Title);
|
|
Shutdown(-1);
|
|
}
|
|
|
|
ObjFile = e.Args[0];
|
|
}
|
|
}
|
|
}
|