C
C#2y ago
Dropps

Project Structure

how would you guys structure a big project (planning on making a general purpose game engine) wich uses 3 base projects (Editor CoreLibrary Launcher) (windows only) in terms of folder strucutre nameing conventions and overall referencing there could be a better way than this i belive:
8 Replies
Dropps
Dropps2y ago
(its alrdy about 5million LOC but i wanna refactor the entire project strucutre to maybe get a performance boost on it)
Unknown User
Unknown User2y ago
Message Not Public
Sign In & Join Server To View
Dropps
Dropps2y ago
uhh kind of hard to explain how it currently is but ima try it out the Core project has all logic in it everything thats somehow need processing or methods the Launcher and Editor are entirely UI projects in those files are only UI depended dataproviders no logic or anything that gets all importet by the core project
Unknown User
Unknown User2y ago
Message Not Public
Sign In & Join Server To View
Dropps
Dropps2y ago
well ive had some ppl in a other server suggesting me to split it up into each type 1 csproj file so all interfaces go into one project all models get into one all enums all services etc wich i really doubt is good
Unknown User
Unknown User2y ago
Message Not Public
Sign In & Join Server To View
Dropps
Dropps2y ago
hmm thanks alot still maybe someone else has a idea too
Unknown User
Unknown User2y ago
Message Not Public
Sign In & Join Server To View
Want results from more Discord servers?
Add your server
More Posts
Hypothetical, downloading a Nuget package to a specific location [Answered]This is just a hypothetical and it's not part of anything I'm doing currently. Would it be possible interface instead of mapping one by onehi all, im trying to use an interface to initialize common properties, for example INote that contaUpdate Database with EF core doesn't work and no error messagei am trying to create a database with ef core. Adding a migration works. Update database doesn't, widependency injection net frameworkhi all, I'm following a reference on how to use dependency injection in net framework https://stackSafe to ignore non-null value on exit contructor? (disabling warning)Can I safely add this as a ignore? I don't really know how I would fix this otherwiseHow should I start learninghi everybody I started learning c#, going through basics and want to ask those who in industry alreaCreating an instance of a class using DI [Answered]This is purely just out of curiosity. If you have a class which takes some arguments in its ctor andIs there any benefit to write a Property with a private variable ?Why: ```cs private int myVar; public int MyVar { get => myVar; set => myVar = value; } ``` may be beHow add analyzer for suggesting to add missing parameters or removing them?Soo I have analyzer which checks if parameter type is proper soo then I need to make codefix which j[ASP.NET] B-Logic Services, ValidationI am using anemic models, therefore I want to implement Business Logic Services. And the questions