Can .Net Core 3 self-contained single executable be decompiled?
问题 I tried using Dotpeek and ILSpy.Net to decompile (my own code), they failed. Do I need special obfuscation on distributed binaries of .Net Core 3 self-contained single executable ? <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