fullstackhero / docs

docs for fullstackhero project.
https://fullstackhero.net/
MIT License
58 stars 58 forks source link

[Documentation] Application project does not depend on any other project #88

Closed dandohotaru closed 2 years ago

dandohotaru commented 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

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>
iammukeshm commented 2 years ago

updated