Visual Studioコードを使用していますが、安全でないコードを実行しようとすると、次のエラー「メッセージ」がスローされます。安全でないコードは、/ unsafeでコンパイルした場合にのみ表示される場合があります。
visual Studioと同様に、project-> propertiesのようなオプションはありません。
私のnetcoreapp3.1C#プロジェクトですべてが機能していません
これは役に立ちました(.vscode/tasks.jsonで):
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/rest.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary",
"/unsafe"
],
"problemMatcher": "$msCompile"
},
緑色の起動ボタンではなく、「dotnetbuild」コマンドで機能します
ターミナルから実行した場合も機能します: 'dotnet build -p:unsafe = true'