这是我的项目结构:

.
|-- app.config
|-- bin
|   `-- Debug
|-- NLog.config
|-- NLog.xsd
|-- obj
|   `-- Debug
|-- packages.config
|-- Program.cs
|-- Properties
|   `-- AssemblyInfo.cs
|-- ServiceClient.csproj
`-- Web References
    `-- TestSvc
        |-- Reference.cs
        |-- Reference.map
        |-- TestService.disco
        `-- TestService.wsdl

7 directories, 14 files

我已经使用以下mcs命令手动编译了项目:
mcs -d:TRACE -d:DEBUG -r:System.Web.Services.dll -out:./bin/Debug/ServiceClient.exe Web\ References/TestSvc/Reference.cs Program.cs

我什至已将app.config复制为ServiceClient.exe.config到目标文件夹

以下是配置的外观:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.diagnostics>
    <sharedListeners>
        <add name="console" type="System.Diagnostics.ConsoleTraceListener"/>
        <add name="nlog" type="NLog.NLogTraceListener,Nlog"/>
    </sharedListeners>

    <sources>
        <source name="System.Net" switchValue="All">
            <listeners>
                <add name="nlog"/>
            </listeners>
        </source>
        <source name="System.Net.Sockets" switchValue="All">
            <listeners>
                <add name="nlog"/>
            </listeners>
        </source>
    </sources>
</system.diagnostics>
</configuration>

但是当我运行时:
mono ServiceClient.exe "hello world"

我看不到跟踪输出...

最佳答案

请尝试Mono log profiler

基本上,您需要像这样运行您的应用程序:

mono --profile=log ServiceClient.exe "hello world"

它将在同一目录中生成文件output.mlpd。看见了:
mprof-report output.mlpd

关于c# - 单声道中没有应用跟踪吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41867129/

10-17 00:54