Skip to content

Commit

Permalink
feat: Added project references:
Browse files Browse the repository at this point in the history
  - UI references Application
  - Application references Domain
  - Infra references Domain
  - Infra.IoC references Application and Infra for Dependency Injection
  • Loading branch information
Pedrolustosa committed Oct 27, 2024
1 parent 5eb7be0 commit b538a8f
Show file tree
Hide file tree
Showing 5 changed files with 53 additions and 12 deletions.
20 changes: 8 additions & 12 deletions Back/FinanceTracker.API/FinanceTracker.API.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,15 @@
<DockerComposeProjectPath>..\docker-compose.dcproj</DockerComposeProjectPath>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.10" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.10" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="7.5.1" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="AutoMapper" Version="13.0.1" />
<PackageReference Include="CloudinaryDotNet" Version="1.26.2" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.6" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.6">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.6" />
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.20.1" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.6.2" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.0.0" />
<ProjectReference Include="..\FinanceTracker.Infra.IoC\FinanceTracker.Infra.IoC.csproj" />
</ItemGroup>

</Project>
10 changes: 10 additions & 0 deletions Back/FinanceTracker.Application/FinanceTracker.Application.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,14 @@
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="AutoMapper" Version="13.0.1" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.6" />
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.1.39" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\FinanceTracker.Domain\FinanceTracker.Domain.csproj" />
</ItemGroup>

</Project>
5 changes: 5 additions & 0 deletions Back/FinanceTracker.Domain/FinanceTracker.Domain.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,9 @@
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.1.39" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.10" />
</ItemGroup>

</Project>
13 changes: 13 additions & 0 deletions Back/FinanceTracker.Infra.IoC/FinanceTracker.Infra.IoC.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,17 @@
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.10" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="7.5.1" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.10" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\FinanceTracker.Application\FinanceTracker.Application.csproj" />
<ProjectReference Include="..\FinanceTracker.Domain\FinanceTracker.Domain.csproj" />
<ProjectReference Include="..\FinanceTracker.Infra\FinanceTracker.Infra.csproj" />
</ItemGroup>

</Project>
17 changes: 17 additions & 0 deletions Back/FinanceTracker.Infra/FinanceTracker.Infra.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,21 @@
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.10" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.10">
<PrivateAssets>none</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.10" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.10">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\FinanceTracker.Domain\FinanceTracker.Domain.csproj" />
</ItemGroup>

</Project>

0 comments on commit b538a8f

Please sign in to comment.