Closed dandohotaru closed 2 years ago
on the project structure page it is stated that
Note that the Application project does not depend on any other project. ... Note that the Domain project does not depend on any other project.
I would assume that to be true for the domain but maybe not so much for the application project
domain
application
Checking the actual source code for the application.csproj seems to imply that the application actually depends on domain as expected
<ItemGroup> <ProjectReference Include="..\Domain\Domain.csproj" /> <ProjectReference Include="..\Shared\Shared.csproj" /> </ItemGroup>
updated
on the project structure page it is stated that
I would assume that to be true for the
domain
but maybe not so much for theapplication
projectChecking the actual source code for the application.csproj seems to imply that the
application
actually depends ondomain
as expected