You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Flecs.NET** provides both [release](https://www.nuget.org/packages/Flecs.NET.Release) and [debug](https://www.nuget.org/packages/Flecs.NET.Debug) packages for nuget.
72
+
**Flecs.NET** provides both [release](https://www.nuget.org/packages/Flecs.NET.Release) and [debug](https://www.nuget.org/packages/Flecs.NET.Debug) packages for nuget. It is recommended that the debug packages be used when developing as they include checks for incorrect usage of the API.
74
73
To include both of them in your project based on your build configuration, use the package references below. The latest stable or prerelease versions will be added to your project.
75
74
```xml
76
75
<ProjectSdk="Microsoft.NET.Sdk">
77
-
78
76
<PropertyGroup>
79
77
<OutputType>Exe</OutputType>
80
78
<TargetFramework>net8.0</TargetFramework>
@@ -84,7 +82,20 @@ To include both of them in your project based on your build configuration, use t
**Flecs.NET** provides precompiled static libraries that can be used when ``PublishAOT`` is enabled. To enable static linking, add ``<FlecsStaticLink>true</FlecsStaticLink>`` to a property group. To prevent shared libraries from being copied to the output directory, add ``ExcludeAssets="native"`` to your package reference.
0 commit comments