Skip to content

Commit 229faa9

Browse files
committed
common packages moved to domain
1 parent b738534 commit 229faa9

4 files changed

Lines changed: 20 additions & 31 deletions

File tree

MangoAPI.Application/MangoAPI.Application.csproj

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,6 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<ProjectReference Include="..\MangoAPI.Domain\MangoAPI.Domain.csproj" />
12+
<ProjectReference Include="..\MangoAPI.Domain\MangoAPI.Domain.csproj"/>
1313
</ItemGroup>
14-
15-
<ItemGroup>
16-
<PackageReference Include="Azure.Storage.Blobs" Version="12.15.0" />
17-
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
18-
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.2.0" />
19-
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.27.0" />
20-
</ItemGroup>
21-
2214
</Project>

MangoAPI.BusinessLogic/MangoAPI.BusinessLogic.csproj

Lines changed: 3 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,8 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<ProjectReference Include="..\MangoAPI.Application\MangoAPI.Application.csproj" />
13-
<ProjectReference Include="..\MangoAPI.Infrastructure\MangoAPI.Infrastructure.csproj" />
14-
<ProjectReference Include="..\MangoAPI.Domain\MangoAPI.Domain.csproj" />
15-
</ItemGroup>
16-
17-
<ItemGroup>
18-
<PackageReference Include="Azure.Storage.Blobs" Version="12.15.0" />
19-
<PackageReference Include="FluentValidation" Version="11.5.1" />
20-
<PackageReference Include="FluentValidation.DependencyInjectionExtensions" Version="11.5.1" />
21-
<PackageReference Include="MediatR" Version="12.0.1" />
22-
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.14" />
23-
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.2.0" />
24-
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
25-
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="6.5.0" />
26-
<PackageReference Include="Swashbuckle.AspNetCore.Swagger" Version="6.5.0" />
27-
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="6.5.0" />
28-
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" Version="6.5.0" />
12+
<ProjectReference Include="..\MangoAPI.Application\MangoAPI.Application.csproj"/>
13+
<ProjectReference Include="..\MangoAPI.Infrastructure\MangoAPI.Infrastructure.csproj"/>
14+
<ProjectReference Include="..\MangoAPI.Domain\MangoAPI.Domain.csproj"/>
2915
</ItemGroup>
3016
</Project>

MangoAPI.Domain/MangoAPI.Domain.csproj

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,22 @@
1010

1111
<ItemGroup>
1212
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="7.0.1">
13-
<PrivateAssets>all</PrivateAssets>
14-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
13+
<PrivateAssets>all</PrivateAssets>
14+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1515
</PackageReference>
16-
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="6.0.14" />
16+
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="6.0.14"/>
17+
<PackageReference Include="Azure.Storage.Blobs" Version="12.15.0"/>
18+
<PackageReference Include="FluentValidation" Version="11.5.1"/>
19+
<PackageReference Include="FluentValidation.DependencyInjectionExtensions" Version="11.5.1"/>
20+
<PackageReference Include="MediatR" Version="12.0.1"/>
21+
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.14"/>
22+
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.2.0"/>
23+
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0"/>
24+
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="6.5.0"/>
25+
<PackageReference Include="Swashbuckle.AspNetCore.Swagger" Version="6.5.0"/>
26+
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="6.5.0"/>
27+
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" Version="6.5.0"/>
28+
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0"/>
29+
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.27.0"/>
1730
</ItemGroup>
18-
1931
</Project>

MangoAPI.Presentation/MangoAPI.Presentation.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="12.0.0" />
2626
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.21.0" />
2727
<PackageReference Include="Microsoft.AspNetCore.SpaServices.Extensions" Version="6.0.10" />
28-
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.17.0" />
2928
</ItemGroup>
3029

3130
<ItemGroup>

0 commit comments

Comments
 (0)