我遇到ConfuserEx CLI工具问题。我想从C#Programm中启动CLI,如下所示:
System.Diagnostics.Process p = new System.Diagnostics.Process();
//p.StartInfo.RedirectStandardOutput = true;
//p.StartInfo.UseShellExecute = false;
//p.StartInfo.CreateNoWindow = true;
p.StartInfo.FileName = strConfuserExFilePath;
p.StartInfo.Arguments = strConfuserExProjectFilePath;
p.Start();
strConfuserExFilePath = D:\ Examples .Net \ Diagramm \ TEST \ Haupt-Projekt \ packages \ ConfuserEx.Final.1.0.0 \ tools \ Confuser.CLI.exe
strConfuserExProjectFilePath = D:\ Examples .Net \ Diagramm \ TEST \ Haupt-Projekt \ TEST \ bin \ x86 \ Debug \ ConfuserEx.crproj
我的.crproj文件如下所示:
<project outputDir="D:\Examples .Net\Diagramm\TEST\Haupt-Projekt\TEST\bin\x86\Debug\Confused" baseDir="D:\Examples .Net\Diagramm\TEST\Haupt-Projekt\TEST\bin\x86\Debug" debug="false" xmlns="http://confuser.codeplex.com">
<rule pattern="true" preset="normal" inherit="false">
<protection id="anti ildasm" action="add" />
<protection id="anti tamper" action="add" />
<protection id="constants" action="add" />
<protection id="ctrl flow" action="add" />
<protection id="anti dump" action="add" />
<protection id="anti debug" action="add" />
<protection id="invalid metadata" action="remove" />
<protection id="ref proxy" action="remove" />
<protection id="resources" action="remove" />
<protection id="rename" />
</rule>
<module path="h01_SonstVerwaltung.dll" />
</project>
当我运行该代码时,CommandBox消失得如此之快,以至于我无法读取错误。所以我想我会通过CommandLine启动CLI来查看会发生什么。当我执行以下操作时:
D:\Examples .Net\Diagramm\TEST\Haupt.Projekt\packages\ConfuserEx.Final.1.0.0\tools>Confuser.CLI.exe D:\Examples .Net\Diagramm\TEST\Haupt-Projekt\TEST\bin\x86\Debug\ConfuserEx.crproj
我收到了错误
Confuser.Ex.CLI:未指定输出目录
奇怪的是如果我运行相同的代码但在PowerShell中它可以运行:
function ObfuscateProjectAssembly
{
[CmdletBinding()]
param()
Utility_AssertValid_FilePath $ConfuserExFilePath
Utility_AssertValid_FilePath $ConfuserExProjectFilePath
if( Test-Path -Path $ObfuscatedAssemblyFilePath ) {
Remove-Item -Path $ObfuscatedAssemblyFilePath
}
& $ConfuserExFilePath -nopause $ConfuserExProjectFilePath
Utility_AssertValid_FilePath $ObfuscatedAssemblyFilePath
}
为什么它适用于PowerShell而不适用于C#。我已经尝试在我的C#代码中添加-n | -noPause参数。
修改 我尝试从我的C#-Code执行PowerShell但仍然使用相同的错误消息。
using (PowerShell PowerShellInstance = PowerShell.Create())
{
PowerShellInstance.AddScript("& (\"" + strConfuserExFilePath + "\") -nopause " + strConfuserExFilePath);
Collection<PSObject> PSOutput = PowerShellInstance.Invoke();
if (PowerShellInstance.Streams.Error.Count > 0)
{
foreach(ErrorRecord er in PowerShellInstance.Streams.Error)
{
}
}
foreach (PSObject outputItem in PSOutput)
{
if (outputItem != null)
{
//System.Diagnostics.Debug.WriteLine(outputItem.BaseObject.GetType().FullName);
System.Diagnostics.Debug.Write(outputItem.BaseObject.ToString() + "\n");
}
}
}
答案 0 :(得分:1)
所以我找到了我的问题,这很简单。我忘记了&#34;围绕.crproj文件。
这里有正确的方法: 通过进程编号1:
p.StartInfo.Arguments =&#34; -nopause \&#34;&#34; + strConfuserExProjectFilePath +&#34; \&#34;&#34;;
通过PowerShell获得第2名:
PowerShellInstance.AddScript(&#34;&amp; \&#34;&#34; + strConfuserExFilePath +&#34; \&#34; -nopause \&#34;&#34; + strConfuserExProjectFilePath +&# 34; \&#34;&#34);