From 785cecd7a0a28024abc735c72a1037d6e869bc52 Mon Sep 17 00:00:00 2001 From: Eric Gregory Date: Thu, 5 Sep 2024 09:20:59 -0400 Subject: [PATCH 1/2] Add experimental package source config to readme Signed-off-by: Eric Gregory --- .gitignore | 1 + README.md | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/.gitignore b/.gitignore index 863657b..60bcf98 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ obj/ .vs/ artifacts/ test/WasmComponentSdkTest/testapps/OciWit/wit +.DS_Store diff --git a/README.md b/README.md index 53f96cf..69d45e1 100644 --- a/README.md +++ b/README.md @@ -32,6 +32,14 @@ If you don't already have it, install [.NET 8+ SDK](https://dotnet.microsoft.com * `dotnet new console -o MyApp` * `cd MyApp` + +Create a `nuget.config` file and add the `dotnet-experimental` package source for the `NativeAOT-LLVM` dependency: + +* `dotnet new nugetconfig` +* Add the key to `nuget.config` after ``: `` + +Add the `componentize-dotnet` package: + * `dotnet add package BytecodeAlliance.Componentize.DotNet.Wasm.SDK --prerelease` ### 3. Configure the compilation output From 076fac2c2cdfe1a9a575252a116470861e247bdb Mon Sep 17 00:00:00 2001 From: Eric Gregory Date: Thu, 5 Sep 2024 12:03:57 -0400 Subject: [PATCH 2/2] add nuget source Signed-off-by: Eric Gregory --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 69d45e1..30286e4 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,12 @@ If you don't already have it, install [.NET 8+ SDK](https://dotnet.microsoft.com Create a `nuget.config` file and add the `dotnet-experimental` package source for the `NativeAOT-LLVM` dependency: * `dotnet new nugetconfig` -* Add the key to `nuget.config` after ``: `` +* Add these keys to `nuget.config` after ``: + +```xml + + +``` Add the `componentize-dotnet` package: