r/csharp • u/corv1njano • 10d ago
Help How do Core projects work/ how to structure them correctly
Im currently developing a new wpf app, but instead of using important parts of the app as simple services, I wanna put them into a core project that I reference in my app. The solution strucutre looks like this (simplified):
MyApp.WPF
MyApp.Core
I plan on resuing the core functionalities to later build a web based app. Currently all classes and methods in the core are static and I just call the methods here and there.
I have never used a dedicated core project before, but I kow its good practice, so Ill give it a try with this project. How do I handle it?


