diff --git a/.vs/GMAssetCompiler/v15/.suo b/.vs/GMAssetCompiler/v15/.suo new file mode 100644 index 0000000..573a714 Binary files /dev/null and b/.vs/GMAssetCompiler/v15/.suo differ diff --git a/GMAC1098/.vs/GMAssetCompiler/v15/.suo b/GMAC1098/.vs/GMAssetCompiler/v15/.suo index 9016c57..7084de6 100644 Binary files a/GMAC1098/.vs/GMAssetCompiler/v15/.suo and b/GMAC1098/.vs/GMAssetCompiler/v15/.suo differ diff --git a/GMAssetCompiler.csproj b/GMAssetCompiler.csproj index 4efec6f..4f9d136 100644 --- a/GMAssetCompiler.csproj +++ b/GMAssetCompiler.csproj @@ -40,6 +40,9 @@ Icon4.ico + + ..\..\Desktop\chovy-gm\Ionic.Zip.Reduced.dll + packages\NAudio.1.9.0\lib\net35\NAudio.dll @@ -56,9 +59,6 @@ C:\Windows\assembly\GAC_MSIL\System.Core\3.5.0.0__b77a5c561934e089\System.Core.dll - - C:\Users\Nik\AppData\Roaming\GameMaker-Studio\Ionic.Zip.Reduced.dll - diff --git a/UMDGEN.CS b/UMDGEN.CS index 3add123..ed780ef 100644 --- a/UMDGEN.CS +++ b/UMDGEN.CS @@ -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;