我尝试使用 Dotpeek 和 ILSpy.Net 来反编译(我自己的代码),但它们失败了。
我是否需要对 .Net Core 3自包含单个可执行文件的分布式二进制文件进行特殊混淆?
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.0</TargetFramework>
<PublishTrimmed>true</PublishTrimmed>
<PublishReadyToRun>true</PublishReadyToRun>
<PublishSingleFile>true</PublishSingleFile>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
</PropertyGroup>
</Project>