Simon Schmid
Simon Schmid
@kkohno > Jenny have bug with pure C# projects Not quite sure what you mean. You can specify any folder.
@benzsuankularb As described in the wiki https://github.com/sschmid/Entitas-CSharp/wiki/Entitas-pure-C%23 here's a working project https://github.com/sschmid/EntitasPure
Installed dotnet 2. First impression, csproj works differently. Source files are not listed but recognized. To fix compilation, I removed `DesperateDevs.CodeGeneration.Plugins.UpdateCSProjPostProcessor` to prevent `` Have to investigate further. My guess,...
> Duplicate 'Compile' items were included. The .NET SDK includes 'Compile' items from your project directory by default. You can either remove these items from your project file, or set...
I readded `DesperateDevs.CodeGeneration.Plugins.UpdateCSProjPostProcessor` and added ``` false ``` to the projects `` and readded `Program.cs` and `HealthComponent.cs` Code Generation and updating the project works now, but still no component generated
Seems to be an issue with the netcore csproj, works with .NET csproj
This works as a workaround for net core solutions: Add a new .NET 4.x project for all your components within your solution with a standard jenny setup and reference this...
If components use custom datatypes as fields, those obviously have to be in that project too.
Here's a sample Entitas project as a dotnet console app using .NET 6.0 and .NET Standard 2.1, including a working Jenny setup: [Entitas-Standalone](https://github.com/sschmid/Entitas-Standalone) Also see announcement: Jenny is now open-source...
Are you using jenny and the roslyn code generator? If so, please try deleting the generated folder and generate again.