From d4b22b64279b2359ca07b8ef266018b33384d791 Mon Sep 17 00:00:00 2001 From: Muhammad Azeez Date: Sun, 15 Oct 2023 17:23:30 +0300 Subject: [PATCH] fix: update nuget command to download prerelease version The PDK is currently in prerelease state, so we have to specify the `--prerelease` flag --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0d60e3b..709db0d 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Create a new project and add this nuget package to your project: ``` dotnet new wasiconsole -o MyPlugin cd MyPlugin -dotnet add package Extism.Pdk +dotnet add package Extism.Pdk --prerelease ``` Update your MyPlugin.csproj as follows: