Remove old packages
This commit is contained in:
parent
614cc00290
commit
46ebccf797
@ -7,9 +7,6 @@
|
|||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Core.Blueprint.Storage" Version="0.3.0-alpha0049" />
|
|
||||||
<PackageReference Include="Core.Cerberos.Adapters" Version="0.3.0-alpha0042" />
|
|
||||||
<PackageReference Include="Lib.Architecture.BuildingBlocks" Version="0.9.0-alpha0001" />
|
|
||||||
<PackageReference Include="MongoDB.Driver" Version="3.1.0" />
|
<PackageReference Include="MongoDB.Driver" Version="3.1.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
@ -17,4 +14,8 @@
|
|||||||
<ProjectReference Include="..\Core.Cerberos.External\Core.Cerberos.External.csproj" />
|
<ProjectReference Include="..\Core.Cerberos.External\Core.Cerberos.External.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<Folder Include="UseCases\Users\Ports\" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
@ -7,7 +7,8 @@ namespace Core.Cerberos.Application.UseCases.Modules.Ports
|
|||||||
ICommandSuccessPort<ModuleAdapter>,
|
ICommandSuccessPort<ModuleAdapter>,
|
||||||
ICommandSuccessPort<List<ModuleAdapter>>,
|
ICommandSuccessPort<List<ModuleAdapter>>,
|
||||||
INoContentPort, IBusinessErrorPort, ITimeoutPort, IValidationErrorPort,
|
INoContentPort, IBusinessErrorPort, ITimeoutPort, IValidationErrorPort,
|
||||||
INotFoundPort, IForbiddenPort, IUnauthorizedPort, IInternalServerErrorPort
|
INotFoundPort, IForbiddenPort, IUnauthorizedPort, IInternalServerErrorPort,
|
||||||
|
IBadRequestPort
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -7,7 +7,8 @@ namespace Core.Cerberos.Application.UseCases.Permissions.Ports
|
|||||||
ICommandSuccessPort<PermissionAdapter>,
|
ICommandSuccessPort<PermissionAdapter>,
|
||||||
ICommandSuccessPort<List<PermissionAdapter>>,
|
ICommandSuccessPort<List<PermissionAdapter>>,
|
||||||
INoContentPort, IBusinessErrorPort, ITimeoutPort, IValidationErrorPort,
|
INoContentPort, IBusinessErrorPort, ITimeoutPort, IValidationErrorPort,
|
||||||
INotFoundPort, IForbiddenPort, IUnauthorizedPort, IInternalServerErrorPort
|
INotFoundPort, IForbiddenPort, IUnauthorizedPort, IInternalServerErrorPort,
|
||||||
|
IBadRequestPort
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -6,7 +6,8 @@ namespace Core.Cerberos.Application.UseCases.Roles.Ports
|
|||||||
public interface IRolePort : IBasePort,
|
public interface IRolePort : IBasePort,
|
||||||
ICommandSuccessPort<RoleAdapter>, ICommandSuccessPort<List<RoleAdapter>>,
|
ICommandSuccessPort<RoleAdapter>, ICommandSuccessPort<List<RoleAdapter>>,
|
||||||
INoContentPort, IBusinessErrorPort, ITimeoutPort, IValidationErrorPort,
|
INoContentPort, IBusinessErrorPort, ITimeoutPort, IValidationErrorPort,
|
||||||
INotFoundPort, IForbiddenPort, IUnauthorizedPort, IInternalServerErrorPort
|
INotFoundPort, IForbiddenPort, IUnauthorizedPort, IInternalServerErrorPort,
|
||||||
|
IBadRequestPort
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -11,7 +11,8 @@ namespace Core.Cerberos.Application.UseCases.Users.Ports
|
|||||||
ICommandSuccessPort<TokenAdapter>,
|
ICommandSuccessPort<TokenAdapter>,
|
||||||
ICommandSuccessPort<BlobDownloadUriAdapter>,
|
ICommandSuccessPort<BlobDownloadUriAdapter>,
|
||||||
INoContentPort, IBusinessErrorPort, ITimeoutPort, IValidationErrorPort,
|
INoContentPort, IBusinessErrorPort, ITimeoutPort, IValidationErrorPort,
|
||||||
INotFoundPort, IForbiddenPort, IUnauthorizedPort, IInternalServerErrorPort
|
INotFoundPort, IForbiddenPort, IUnauthorizedPort, IInternalServerErrorPort,
|
||||||
|
IBadRequestPort
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -7,9 +7,9 @@
|
|||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Core.Blueprint.Storage" Version="0.3.0-alpha0049" />
|
<PackageReference Include="Blueprint.Storage" Version="0.0.1" />
|
||||||
<PackageReference Include="Core.Cerberos.Adapters" Version="0.3.0-alpha0042" />
|
<PackageReference Include="BuildingBlocks.Library" Version="0.0.1" />
|
||||||
<PackageReference Include="Lib.Architecture.BuildingBlocks" Version="0.9.0-alpha0001" />
|
<PackageReference Include="Cerberos.Building.Blocks" Version="0.0.3" />
|
||||||
<PackageReference Include="Refit" Version="8.0.0" />
|
<PackageReference Include="Refit" Version="8.0.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|||||||
@ -7,10 +7,6 @@
|
|||||||
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<PackageReference Include="Core.Cerberos.Adapters" Version="0.3.0-alpha0042" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\Core.Cerberos.Application\Core.Cerberos.Application.csproj" />
|
<ProjectReference Include="..\Core.Cerberos.Application\Core.Cerberos.Application.csproj" />
|
||||||
<ProjectReference Include="..\Core.Cerberos.External\Core.Cerberos.External.csproj" />
|
<ProjectReference Include="..\Core.Cerberos.External\Core.Cerberos.External.csproj" />
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user