From 3fc5fe4f536d495019c430ca587740fdfc5904f3 Mon Sep 17 00:00:00 2001 From: botoddly <250804054+botoddly@users.noreply.github.com> Date: Thu, 5 Mar 2026 08:44:19 +0100 Subject: [PATCH 1/2] Document automatic Compile deduplication in README (#12) --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 65c7374..463e5eb 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,9 @@ Fluidify works with any text format — C#, JSON, HTML, YAML, or anything else. ### Compilation -Generated `.cs` files are automatically included in compilation. To opt out, set `Compile="false"`: +Generated `.cs` files are automatically included in compilation. Fluidify handles deduplication, so you don't need to add `` for generated files — there will be no CS2002 "specified multiple times" warnings even on rebuild. + +To opt out of compilation, set `Compile="false"`: ```xml From bdd1e38c60e359526db5d1eeecaed6ee423a26fe Mon Sep 17 00:00:00 2001 From: botoddly <250804054+botoddly@users.noreply.github.com> Date: Thu, 5 Mar 2026 08:45:16 +0100 Subject: [PATCH 2/2] Trim verbose CS2002 detail from README note --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 463e5eb..08b4a8b 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Fluidify works with any text format — C#, JSON, HTML, YAML, or anything else. ### Compilation -Generated `.cs` files are automatically included in compilation. Fluidify handles deduplication, so you don't need to add `` for generated files — there will be no CS2002 "specified multiple times" warnings even on rebuild. +Generated `.cs` files are automatically included in compilation. Fluidify handles deduplication, so you don't need to add `` for generated files. To opt out of compilation, set `Compile="false"`: