This commit is contained in:
SilicaAndPina 2019-10-18 17:18:12 +13:00
parent 6779c0bfaf
commit bdaeca1643
4 changed files with 5 additions and 5 deletions

Binary file not shown.

View File

@ -40,6 +40,9 @@
<ApplicationIcon>Icon4.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Reference Include="Ionic.Zip.Reduced">
<HintPath>..\..\Desktop\chovy-gm\Ionic.Zip.Reduced.dll</HintPath>
</Reference>
<Reference Include="NAudio, Version=1.9.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>packages\NAudio.1.9.0\lib\net35\NAudio.dll</HintPath>
</Reference>
@ -56,9 +59,6 @@
<Reference Include="System.Core">
<HintPath>C:\Windows\assembly\GAC_MSIL\System.Core\3.5.0.0__b77a5c561934e089\System.Core.dll</HintPath>
</Reference>
<Reference Include="Ionic.Zip.Reduced">
<HintPath>C:\Users\Nik\AppData\Roaming\GameMaker-Studio\Ionic.Zip.Reduced.dll</HintPath>
</Reference>
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
<Reference Include="WindowsBase" />

View File

@ -111,8 +111,8 @@ namespace UmdGen
//powershell -c ^&"C:\Users\earsy\Programs\chovy-gm\umdgenc.exe" /g "UmiFile.umi" "C:\Users\earsy\Desktop\Output"
//UmdGen.StartInfo.FileName = Path.Combine(Application.StartupPath, "umdgenc.exe");
//UmdGen.StartInfo.Arguments = "/g \"" + Path.GetFileName(UmiFile) + "\" \"" + OutputDir + "\"";
UmdGen.StartInfo.FileName = "powershell.exe";
UmdGen.StartInfo.Arguments = "-c & '" + Path.Combine(Application.StartupPath, "umdgenc.exe") + "' /g \"UmiFile.umi\" \"" + OutputDir + "\"";
UmdGen.StartInfo.FileName = Path.Combine(Application.StartupPath, "umdgenc.exe");
UmdGen.StartInfo.Arguments = "/g \"UmiFile.umi\" \"" + OutputDir + "\"";
UmdGen.StartInfo.WorkingDirectory = Path.GetDirectoryName(UmiFile);
UmdGen.StartInfo.CreateNoWindow = true;
UmdGen.StartInfo.UseShellExecute = false;