3
私はC#とNet Coreの新機能です。誰かが評価コマンドに私のコードを渡しました。 しかし、Net Coreでは作成されていないため、AppDomainはNet Coreには存在しません。どうすればよいですか?Net CoreのAppDomainの置き換え
ScriptOptions so = ScriptOptions.Default;
so = so.WithImports(new string[] { "System.Math", "System.Diagnostics", "System.Runtime.InteropServices",
"Discord.WebSocket", "Discord.Commands", "Discord", "System.Threading.Tasks", "System.Linq", "System", "System.Collections.Generic", "System.Convert", "System.Reflection"});
so = so.WithReferences(AppDomain.CurrentDomain.GetAssemblies().Where(xa => !xa.IsDynamic && !string.IsNullOrWhiteSpace(xa.Location)));
AppDomainは、[.Net Standard 2.0(https://stackoverflow.com/a/45600956/465053)の一部として完全に消滅していません。 – RBT