From 17dddc7f6b004cf25e9ee5881ff50af9d1be9616 Mon Sep 17 00:00:00 2001 From: Wyatt Arent Date: Mon, 10 Jun 2024 17:07:04 -0700 Subject: [PATCH] Simplify import with new props --- README.md | 19 ++++++++----------- addons/HLNC/HLNC.props | 12 ++++++++++++ 2 files changed, 20 insertions(+), 11 deletions(-) create mode 100644 addons/HLNC/HLNC.props diff --git a/README.md b/README.md index 0feae16..05607ca 100644 --- a/README.md +++ b/README.md @@ -71,18 +71,15 @@ namespace MyGame ### Setup steps 1. Add HLNC to your "addons" -2. Add [Fody](https://github.com/Fody/Fody) and [Fody.PropertyChanged](https://github.com/Fody/PropertyChanged) to your `.csproj` dependencies +2. Import HLNC in your `.csproj`. For example: ```xml - - - all - runtime; build; native; contentfiles; analyzers; buildtransitive - - - all - compile; runtime; build; native; contentfiles; analyzers; buildtransitive - - + + + net6.0 + + + + ``` 3. Enable the HLNC plugin in Godot diff --git a/addons/HLNC/HLNC.props b/addons/HLNC/HLNC.props new file mode 100644 index 0000000..929441c --- /dev/null +++ b/addons/HLNC/HLNC.props @@ -0,0 +1,12 @@ + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + all + compile; runtime; build; native; contentfiles; analyzers; buildtransitive + + + \ No newline at end of file