netcore-blueprint 0.0.72 → 0.0.73
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/BlueprintTemplate/{Host.API → Host/Host.API}/Extensions/ThirdPartyExtensions.cs +2 -1
- package/BlueprintTemplate/Host/Host.API/Host.API.csproj +29 -0
- package/BlueprintTemplate/{User.API → Modules/UserModule/User.API}/UserModule.API.csproj +1 -1
- package/BlueprintTemplate/{User.Core → Modules/UserModule/User.Core}/UserModule.Core.csproj +4 -2
- package/BlueprintTemplate/{User.Infrastructure → Modules/UserModule/User.Infrastructure}/UserModule.Infrastructure.csproj +1 -1
- package/BlueprintTemplate/Modules/__MODULE__Module/__MODULE__Module.API/__MODULE__Module.API.csproj +1 -1
- package/BlueprintTemplate/Modules/__MODULE__Module/__MODULE__Module.Core/__MODULE__Module.Core.csproj +1 -1
- package/BlueprintTemplate/Modules/__MODULE__Module/__MODULE__Module.Infrastructure/__MODULE__Module.Infrastructure.csproj +2 -2
- package/BlueprintTemplate/MyBlueprint.slnx +6 -6
- package/package.json +1 -1
- package/BlueprintTemplate/Host.API/Host.API.csproj +0 -29
- /package/BlueprintTemplate/{Host.API → Host/Host.API}/Extensions/ApplicationBuilderExtensions.cs +0 -0
- /package/BlueprintTemplate/{Host.API → Host/Host.API}/Extensions/DatabaseExtensions.cs +0 -0
- /package/BlueprintTemplate/{Host.API → Host/Host.API}/Extensions/ModuleExtension.cs +0 -0
- /package/BlueprintTemplate/{Host.API → Host/Host.API}/Extensions/ServiceCollectionExtensions.cs +0 -0
- /package/BlueprintTemplate/{Host.API → Host/Host.API}/Host.API.csproj.user +0 -0
- /package/BlueprintTemplate/{Host.API → Host/Host.API}/Host.API.http +0 -0
- /package/BlueprintTemplate/{Host.API → Host/Host.API}/Program.cs +0 -0
- /package/BlueprintTemplate/{Host.API → Host/Host.API}/Properties/launchSettings.json +0 -0
- /package/BlueprintTemplate/{Host.API → Host/Host.API}/appsettings.Development.json +0 -0
- /package/BlueprintTemplate/{Host.API → Host/Host.API}/appsettings.json +0 -0
- /package/BlueprintTemplate/{User.API → Modules/UserModule/User.API}/Controllers/Admin/UserController.cs +0 -0
- /package/BlueprintTemplate/{User.API → Modules/UserModule/User.API}/Mappers/DtoUserMappingProfile.cs +0 -0
- /package/BlueprintTemplate/{User.API → Modules/UserModule/User.API}/UserModule.cs +0 -0
- /package/BlueprintTemplate/{User.Core → Modules/UserModule/User.Core}/Dtos/Admin/UserRequestDto.cs +0 -0
- /package/BlueprintTemplate/{User.Core → Modules/UserModule/User.Core}/Dtos/Admin/UserResponseDto.cs +0 -0
- /package/BlueprintTemplate/{User.Core → Modules/UserModule/User.Core}/Entities/User.cs +0 -0
- /package/BlueprintTemplate/{User.Core → Modules/UserModule/User.Core}/Enums/UserRole.cs +0 -0
- /package/BlueprintTemplate/{User.Core → Modules/UserModule/User.Core}/Interfaces/API/IUserService.cs +0 -0
- /package/BlueprintTemplate/{User.Core → Modules/UserModule/User.Core}/Interfaces/SPI/IUserInfra.cs +0 -0
- /package/BlueprintTemplate/{User.Core → Modules/UserModule/User.Core}/Services/UserService.cs +0 -0
- /package/BlueprintTemplate/{User.Core → Modules/UserModule/User.Core}/UserCoreDependencyInjection.cs +0 -0
- /package/BlueprintTemplate/{User.Infrastructure → Modules/UserModule/User.Infrastructure}/Database/ItemConfiguration.cs +0 -0
- /package/BlueprintTemplate/{User.Infrastructure → Modules/UserModule/User.Infrastructure}/Database/Seeder.cs +0 -0
- /package/BlueprintTemplate/{User.Infrastructure → Modules/UserModule/User.Infrastructure}/Services/MySQLUserInfra.cs +0 -0
- /package/BlueprintTemplate/{User.Infrastructure → Modules/UserModule/User.Infrastructure}/UserInfraDependencyInjection.cs +0 -0
- /package/BlueprintTemplate/{Shared.Core → Shared/Shared.Core}/Dtos/Requests/BaseRequestDto.cs +0 -0
- /package/BlueprintTemplate/{Shared.Core → Shared/Shared.Core}/Dtos/Responses/BaseResponseDto.cs +0 -0
- /package/BlueprintTemplate/{Shared.Core → Shared/Shared.Core}/Entities/BaseEntity.cs +0 -0
- /package/BlueprintTemplate/{Shared.Core → Shared/Shared.Core}/Enums/EntityStatus.cs +0 -0
- /package/BlueprintTemplate/{Shared.Core → Shared/Shared.Core}/Exceptions/Errors.cs +0 -0
- /package/BlueprintTemplate/{Shared.Core → Shared/Shared.Core}/Interfaces/API/IItemService.cs +0 -0
- /package/BlueprintTemplate/{Shared.Core → Shared/Shared.Core}/Interfaces/Modules/IModule.cs +0 -0
- /package/BlueprintTemplate/{Shared.Core → Shared/Shared.Core}/Interfaces/SPI/IItemInfra.cs +0 -0
- /package/BlueprintTemplate/{Shared.Core → Shared/Shared.Core}/Interfaces/SPI/IModuleSeeder.cs +0 -0
- /package/BlueprintTemplate/{Shared.Core → Shared/Shared.Core}/Interfaces/SPI/IRepositoryFactory.cs +0 -0
- /package/BlueprintTemplate/{Shared.Core → Shared/Shared.Core}/Models/Error.cs +0 -0
- /package/BlueprintTemplate/{Shared.Core → Shared/Shared.Core}/Models/ErrorDetail.cs +0 -0
- /package/BlueprintTemplate/{Shared.Core → Shared/Shared.Core}/Models/PagerData.cs +0 -0
- /package/BlueprintTemplate/{Shared.Core → Shared/Shared.Core}/Models/PagingParams.cs +0 -0
- /package/BlueprintTemplate/{Shared.Core → Shared/Shared.Core}/Services/ItemService.cs +0 -0
- /package/BlueprintTemplate/{Shared.Core → Shared/Shared.Core}/Shared.Core.csproj +0 -0
- /package/BlueprintTemplate/{Shared.Infrastructure → Shared/Shared.Infrastructure}/Database/DbInitializer.cs +0 -0
- /package/BlueprintTemplate/{Shared.Infrastructure → Shared/Shared.Infrastructure}/Database/MyDbContext.cs +0 -0
- /package/BlueprintTemplate/{Shared.Infrastructure → Shared/Shared.Infrastructure}/Migrations/20260210145611_SeedInitialData.Designer.cs +0 -0
- /package/BlueprintTemplate/{Shared.Infrastructure → Shared/Shared.Infrastructure}/Migrations/20260210145611_SeedInitialData.cs +0 -0
- /package/BlueprintTemplate/{Shared.Infrastructure → Shared/Shared.Infrastructure}/Migrations/MyDbContextModelSnapshot.cs +0 -0
- /package/BlueprintTemplate/{Shared.Infrastructure → Shared/Shared.Infrastructure}/Services/Mongo/MongoItemInfra.cs +0 -0
- /package/BlueprintTemplate/{Shared.Infrastructure → Shared/Shared.Infrastructure}/Services/MySQL/MySQLItemInfra.cs +0 -0
- /package/BlueprintTemplate/{Shared.Infrastructure → Shared/Shared.Infrastructure}/Services/RepositoryFactory.cs +0 -0
- /package/BlueprintTemplate/{Shared.Infrastructure → Shared/Shared.Infrastructure}/Shared.Infrastructure.csproj +0 -0
- /package/BlueprintTemplate/{Shared.Infrastructure → Shared/Shared.Infrastructure}/SharedDependencyInjection.cs +0 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
2
|
+
|
|
3
|
+
<PropertyGroup>
|
|
4
|
+
<TargetFramework>net10.0</TargetFramework>
|
|
5
|
+
<Nullable>enable</Nullable>
|
|
6
|
+
<ImplicitUsings>enable</ImplicitUsings>
|
|
7
|
+
</PropertyGroup>
|
|
8
|
+
|
|
9
|
+
<ItemGroup>
|
|
10
|
+
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.2" />
|
|
11
|
+
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.0">
|
|
12
|
+
<PrivateAssets>all</PrivateAssets>
|
|
13
|
+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
14
|
+
</PackageReference>
|
|
15
|
+
<PackageReference Include="Swashbuckle.AspNetCore" Version="10.1.0" />
|
|
16
|
+
</ItemGroup>
|
|
17
|
+
|
|
18
|
+
<ItemGroup>
|
|
19
|
+
<ProjectReference Include="..\..\Modules\UserModule\User.API\UserModule.API.csproj" />
|
|
20
|
+
<ProjectReference Include="..\..\Modules\UserModule\User.Core\UserModule.Core.csproj" />
|
|
21
|
+
<ProjectReference Include="..\..\Modules\UserModule\User.Infrastructure\UserModule.Infrastructure.csproj" />
|
|
22
|
+
<ProjectReference Include="..\..\Modules\__MODULE__Module\__MODULE__Module.API\__MODULE__Module.API.csproj" />
|
|
23
|
+
<ProjectReference Include="..\..\Modules\__MODULE__Module\__MODULE__Module.Core\__MODULE__Module.Core.csproj" />
|
|
24
|
+
<ProjectReference Include="..\..\Modules\__MODULE__Module\__MODULE__Module.Infrastructure\__MODULE__Module.Infrastructure.csproj" />
|
|
25
|
+
<ProjectReference Include="..\..\Shared\Shared.Core\Shared.Core.csproj" />
|
|
26
|
+
<ProjectReference Include="..\..\Shared\Shared.Infrastructure\Shared.Infrastructure.csproj" />
|
|
27
|
+
</ItemGroup>
|
|
28
|
+
|
|
29
|
+
</Project>
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
2
2
|
|
|
3
3
|
<ItemGroup>
|
|
4
|
+
<ProjectReference Include="..\..\..\Shared\Shared.Core\Shared.Core.csproj" />
|
|
4
5
|
<ProjectReference Include="..\User.Core\UserModule.Core.csproj" />
|
|
5
|
-
<ProjectReference Include="..\Shared.Core\Shared.Core.csproj" />
|
|
6
6
|
<ProjectReference Include="..\User.Infrastructure\UserModule.Infrastructure.csproj" />
|
|
7
7
|
</ItemGroup>
|
|
8
8
|
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
2
2
|
|
|
3
3
|
<ItemGroup>
|
|
4
|
-
<
|
|
4
|
+
<Compile Remove="Dtos\Public\**" />
|
|
5
|
+
<EmbeddedResource Remove="Dtos\Public\**" />
|
|
6
|
+
<None Remove="Dtos\Public\**" />
|
|
5
7
|
</ItemGroup>
|
|
6
8
|
|
|
7
9
|
<ItemGroup>
|
|
8
|
-
<
|
|
10
|
+
<ProjectReference Include="..\..\..\Shared\Shared.Core\Shared.Core.csproj" />
|
|
9
11
|
</ItemGroup>
|
|
10
12
|
|
|
11
13
|
<PropertyGroup>
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
2
2
|
|
|
3
3
|
<ItemGroup>
|
|
4
|
+
<ProjectReference Include="..\..\..\Shared\Shared.Infrastructure\Shared.Infrastructure.csproj" />
|
|
4
5
|
<ProjectReference Include="..\User.Core\UserModule.Core.csproj" />
|
|
5
|
-
<ProjectReference Include="..\Shared.Infrastructure\Shared.Infrastructure.csproj" />
|
|
6
6
|
</ItemGroup>
|
|
7
7
|
|
|
8
8
|
<PropertyGroup>
|
package/BlueprintTemplate/Modules/__MODULE__Module/__MODULE__Module.API/__MODULE__Module.API.csproj
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
</ItemGroup>
|
|
14
14
|
|
|
15
15
|
<ItemGroup>
|
|
16
|
-
<ProjectReference Include="..\..\..\Shared.Core\Shared.Core.csproj" />
|
|
16
|
+
<ProjectReference Include="..\..\..\Shared\Shared.Core\Shared.Core.csproj" />
|
|
17
17
|
<ProjectReference Include="..\__MODULE__Module.Core\__MODULE__Module.Core.csproj" />
|
|
18
18
|
<ProjectReference Include="..\__MODULE__Module.Infrastructure\__MODULE__Module.Infrastructure.csproj" />
|
|
19
19
|
</ItemGroup>
|
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
</PropertyGroup>
|
|
8
8
|
|
|
9
9
|
<ItemGroup>
|
|
10
|
-
<ProjectReference Include="..\..\..\Shared.Core\Shared.Core.csproj" />
|
|
11
|
-
<ProjectReference Include="..\..\..\Shared.Infrastructure\Shared.Infrastructure.csproj" />
|
|
10
|
+
<ProjectReference Include="..\..\..\Shared\Shared.Core\Shared.Core.csproj" />
|
|
11
|
+
<ProjectReference Include="..\..\..\Shared\Shared.Infrastructure\Shared.Infrastructure.csproj" />
|
|
12
12
|
<ProjectReference Include="..\__MODULE__Module.Core\__MODULE__Module.Core.csproj" />
|
|
13
13
|
</ItemGroup>
|
|
14
14
|
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
<Solution>
|
|
2
2
|
<Folder Name="/Host/">
|
|
3
|
-
<Project Path="Host.API/Host.API.csproj" />
|
|
3
|
+
<Project Path="Host/Host.API/Host.API.csproj" />
|
|
4
4
|
</Folder>
|
|
5
5
|
<Folder Name="/Modules/" />
|
|
6
6
|
<Folder Name="/Modules/UserModule/">
|
|
7
|
-
<Project Path="User.API/UserModule.API.csproj" />
|
|
8
|
-
<Project Path="User.Core/UserModule.Core.csproj" />
|
|
9
|
-
<Project Path="User.Infrastructure/UserModule.Infrastructure.csproj" />
|
|
7
|
+
<Project Path="Modules/UserModule/User.API/UserModule.API.csproj" />
|
|
8
|
+
<Project Path="Modules/UserModule/User.Core/UserModule.Core.csproj" />
|
|
9
|
+
<Project Path="Modules/UserModule/User.Infrastructure/UserModule.Infrastructure.csproj" />
|
|
10
10
|
</Folder>
|
|
11
11
|
<Folder Name="/Modules/__MODULE__Module/">
|
|
12
12
|
<Project Path="Modules/__MODULE__Module/__MODULE__Module.API/__MODULE__Module.API.csproj" />
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
<Project Path="Modules/__MODULE__Module/__MODULE__Module.Infrastructure/__MODULE__Module.Infrastructure.csproj" />
|
|
15
15
|
</Folder>
|
|
16
16
|
<Folder Name="/Shared/">
|
|
17
|
-
<Project Path="Shared.Core/Shared.Core.csproj" />
|
|
18
|
-
<Project Path="Shared.Infrastructure/Shared.Infrastructure.csproj" />
|
|
17
|
+
<Project Path="Shared/Shared.Core/Shared.Core.csproj" />
|
|
18
|
+
<Project Path="Shared/Shared.Infrastructure/Shared.Infrastructure.csproj" />
|
|
19
19
|
</Folder>
|
|
20
20
|
<Folder Name="/Solution Items/">
|
|
21
21
|
<File Path="README.md" />
|
package/package.json
CHANGED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
2
|
-
|
|
3
|
-
<PropertyGroup>
|
|
4
|
-
<TargetFramework>net10.0</TargetFramework>
|
|
5
|
-
<Nullable>enable</Nullable>
|
|
6
|
-
<ImplicitUsings>enable</ImplicitUsings>
|
|
7
|
-
</PropertyGroup>
|
|
8
|
-
|
|
9
|
-
<ItemGroup>
|
|
10
|
-
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.2" />
|
|
11
|
-
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.0">
|
|
12
|
-
<PrivateAssets>all</PrivateAssets>
|
|
13
|
-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
14
|
-
</PackageReference>
|
|
15
|
-
<PackageReference Include="Swashbuckle.AspNetCore" Version="10.1.0" />
|
|
16
|
-
</ItemGroup>
|
|
17
|
-
|
|
18
|
-
<ItemGroup>
|
|
19
|
-
<ProjectReference Include="..\Modules\__MODULE__Module\__MODULE__Module.API\__MODULE__Module.API.csproj" />
|
|
20
|
-
<ProjectReference Include="..\Modules\__MODULE__Module\__MODULE__Module.Core\__MODULE__Module.Core.csproj" />
|
|
21
|
-
<ProjectReference Include="..\Modules\__MODULE__Module\__MODULE__Module.Infrastructure\__MODULE__Module.Infrastructure.csproj" />
|
|
22
|
-
<ProjectReference Include="..\Shared.Core\Shared.Core.csproj" />
|
|
23
|
-
<ProjectReference Include="..\Shared.Infrastructure\Shared.Infrastructure.csproj" />
|
|
24
|
-
<ProjectReference Include="..\User.API\UserModule.API.csproj" />
|
|
25
|
-
<ProjectReference Include="..\User.Core\UserModule.Core.csproj" />
|
|
26
|
-
<ProjectReference Include="..\User.Infrastructure\UserModule.Infrastructure.csproj" />
|
|
27
|
-
</ItemGroup>
|
|
28
|
-
|
|
29
|
-
</Project>
|
/package/BlueprintTemplate/{Host.API → Host/Host.API}/Extensions/ApplicationBuilderExtensions.cs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/BlueprintTemplate/{Host.API → Host/Host.API}/Extensions/ServiceCollectionExtensions.cs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/BlueprintTemplate/{User.API → Modules/UserModule/User.API}/Mappers/DtoUserMappingProfile.cs
RENAMED
|
File without changes
|
|
File without changes
|
/package/BlueprintTemplate/{User.Core → Modules/UserModule/User.Core}/Dtos/Admin/UserRequestDto.cs
RENAMED
|
File without changes
|
/package/BlueprintTemplate/{User.Core → Modules/UserModule/User.Core}/Dtos/Admin/UserResponseDto.cs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/BlueprintTemplate/{User.Core → Modules/UserModule/User.Core}/Interfaces/API/IUserService.cs
RENAMED
|
File without changes
|
/package/BlueprintTemplate/{User.Core → Modules/UserModule/User.Core}/Interfaces/SPI/IUserInfra.cs
RENAMED
|
File without changes
|
/package/BlueprintTemplate/{User.Core → Modules/UserModule/User.Core}/Services/UserService.cs
RENAMED
|
File without changes
|
/package/BlueprintTemplate/{User.Core → Modules/UserModule/User.Core}/UserCoreDependencyInjection.cs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/BlueprintTemplate/{Shared.Core → Shared/Shared.Core}/Dtos/Requests/BaseRequestDto.cs
RENAMED
|
File without changes
|
/package/BlueprintTemplate/{Shared.Core → Shared/Shared.Core}/Dtos/Responses/BaseResponseDto.cs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/BlueprintTemplate/{Shared.Core → Shared/Shared.Core}/Interfaces/API/IItemService.cs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/BlueprintTemplate/{Shared.Core → Shared/Shared.Core}/Interfaces/SPI/IModuleSeeder.cs
RENAMED
|
File without changes
|
/package/BlueprintTemplate/{Shared.Core → Shared/Shared.Core}/Interfaces/SPI/IRepositoryFactory.cs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|