From b7a625c8bc9b7aa649df3c61c355a1412dc3a021 Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Sat, 27 Dec 2025 10:39:18 -0800 Subject: [PATCH] fix: Update sample projects to target net8.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Three sample projects were still targeting net6.0 which is incompatible with the main library now targeting net8.0. Updated: - helloworld - helloworld-async - helloworld-attributes 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- docs/samples/helloworld-async/AsyncBuilderApi.csproj | 2 +- docs/samples/helloworld-attributes/HelloWorldAttributes.csproj | 2 +- docs/samples/helloworld/HelloWorld.csproj | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/samples/helloworld-async/AsyncBuilderApi.csproj b/docs/samples/helloworld-async/AsyncBuilderApi.csproj index 6a5da0ac..29ecb192 100644 --- a/docs/samples/helloworld-async/AsyncBuilderApi.csproj +++ b/docs/samples/helloworld-async/AsyncBuilderApi.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 diff --git a/docs/samples/helloworld-attributes/HelloWorldAttributes.csproj b/docs/samples/helloworld-attributes/HelloWorldAttributes.csproj index 1d22a369..af31fefa 100644 --- a/docs/samples/helloworld-attributes/HelloWorldAttributes.csproj +++ b/docs/samples/helloworld-attributes/HelloWorldAttributes.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/docs/samples/helloworld/HelloWorld.csproj b/docs/samples/helloworld/HelloWorld.csproj index 652699c6..e4e4a5de 100644 --- a/docs/samples/helloworld/HelloWorld.csproj +++ b/docs/samples/helloworld/HelloWorld.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable