when creating a .net core class library I noticed that if the folder name is "MyLib" then the dll will be MyLib.dll and when you want to reference this project into another project in the same solution you will also have to be like this:
"dependencies": {
"MyLib": { "target": "project" },
my questions is what if I want my dll to be Foo.Bar.MLibrary.dll while still having the folder name "MyLib" (or how are we supposed to do this now)