mirror of https://github.com/abpframework/abp.git
22 changed files with 212 additions and 16 deletions
@ -0,0 +1,18 @@ |
|||
{ |
|||
"name": "Volo.BloggingTestApp.EntityFrameworkCore", |
|||
"hash": "9bca59fa99494d82517715624e8b4974", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.BloggingTestApp.EntityFrameworkCore", |
|||
"contentType": "abpModule", |
|||
"name": "BloggingTestAppEntityFrameworkCoreModule" |
|||
}, |
|||
{ |
|||
"namespace": "Volo.BloggingTestApp.EntityFrameworkCore", |
|||
"connectionStringName": null, |
|||
"databaseTables": [], |
|||
"contentType": "efCoreDbContext", |
|||
"name": "BloggingTestAppDbContext" |
|||
} |
|||
] |
|||
} |
|||
@ -0,0 +1,11 @@ |
|||
{ |
|||
"name": "Volo.BloggingTestApp.MongoDB", |
|||
"hash": "fad6ecadd947f85cb1e3da6b87211432", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.BloggingTestApp.MongoDB", |
|||
"contentType": "abpModule", |
|||
"name": "BloggingTestAppMongoDbModule" |
|||
} |
|||
] |
|||
} |
|||
@ -0,0 +1,11 @@ |
|||
{ |
|||
"name": "Volo.Blogging.Admin.HttpApi.Client", |
|||
"hash": "a721bcce141abe86ecb9c0d1c29350c1", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Blogging.Admin", |
|||
"contentType": "abpModule", |
|||
"name": "BloggingAdminHttpApiClientModule" |
|||
} |
|||
] |
|||
} |
|||
@ -0,0 +1,11 @@ |
|||
{ |
|||
"name": "Volo.Blogging.HttpApi.Client", |
|||
"hash": "81cf265f097ded223f74972a77367635", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Blogging", |
|||
"contentType": "abpModule", |
|||
"name": "BloggingHttpApiClientModule" |
|||
} |
|||
] |
|||
} |
|||
@ -0,0 +1,3 @@ |
|||
<Weavers xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="FodyWeavers.xsd"> |
|||
<ConfigureAwait /> |
|||
</Weavers> |
|||
@ -0,0 +1,30 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> |
|||
<!-- This file was generated by Fody. Manual changes to this file will be lost when your project is rebuilt. --> |
|||
<xs:element name="Weavers"> |
|||
<xs:complexType> |
|||
<xs:all> |
|||
<xs:element name="ConfigureAwait" minOccurs="0" maxOccurs="1"> |
|||
<xs:complexType> |
|||
<xs:attribute name="ContinueOnCapturedContext" type="xs:boolean" /> |
|||
</xs:complexType> |
|||
</xs:element> |
|||
</xs:all> |
|||
<xs:attribute name="VerifyAssembly" type="xs:boolean"> |
|||
<xs:annotation> |
|||
<xs:documentation>'true' to run assembly verification (PEVerify) on the target assembly after all weavers have been executed.</xs:documentation> |
|||
</xs:annotation> |
|||
</xs:attribute> |
|||
<xs:attribute name="VerifyIgnoreCodes" type="xs:string"> |
|||
<xs:annotation> |
|||
<xs:documentation>A comma-separated list of error codes that can be safely ignored in assembly verification.</xs:documentation> |
|||
</xs:annotation> |
|||
</xs:attribute> |
|||
<xs:attribute name="GenerateXsd" type="xs:boolean"> |
|||
<xs:annotation> |
|||
<xs:documentation>'false' to turn off automatic generation of the XML Schema file.</xs:documentation> |
|||
</xs:annotation> |
|||
</xs:attribute> |
|||
</xs:complexType> |
|||
</xs:element> |
|||
</xs:schema> |
|||
@ -0,0 +1,24 @@ |
|||
<Project Sdk="Microsoft.NET.Sdk"> |
|||
|
|||
<Import Project="..\..\..\..\configureawait.props" /> |
|||
<Import Project="..\..\..\..\common.props" /> |
|||
|
|||
<PropertyGroup> |
|||
<TargetFramework>net6.0</TargetFramework> |
|||
<GenerateEmbeddedFilesManifest>true</GenerateEmbeddedFilesManifest> |
|||
<RootNamespace /> |
|||
</PropertyGroup> |
|||
|
|||
<ItemGroup> |
|||
<ProjectReference Include="..\..\..\..\..\abp-studio\src\Volo.Abp.Studio.ModuleInstaller\Volo.Abp.Studio.ModuleInstaller.csproj" /> |
|||
<ProjectReference Include="..\..\..\..\framework\src\Volo.Abp.VirtualFileSystem\Volo.Abp.VirtualFileSystem.csproj" /> |
|||
</ItemGroup> |
|||
|
|||
<ItemGroup> |
|||
<None Remove="..\..\Volo.Blogging.abpmdl.json" /> |
|||
<EmbeddedResource Include="..\..\Volo.Blogging.abpmdl.json" /> |
|||
<None Remove="..\..\**\*.abppkg*.json" /> |
|||
<EmbeddedResource Include="..\..\**\*.abppkg*.json" /> |
|||
</ItemGroup> |
|||
|
|||
</Project> |
|||
@ -0,0 +1,20 @@ |
|||
using Volo.Abp.Modularity; |
|||
using Volo.Abp.Studio; |
|||
using Volo.Abp.VirtualFileSystem; |
|||
|
|||
namespace Volo.Abp.Identity; |
|||
|
|||
[DependsOn( |
|||
typeof(AbpStudioModuleInstallerModule), |
|||
typeof(AbpVirtualFileSystemModule) |
|||
)] |
|||
public class BloggingInstallerModule : AbpModule |
|||
{ |
|||
public override void ConfigureServices(ServiceConfigurationContext context) |
|||
{ |
|||
Configure<AbpVirtualFileSystemOptions>(options => |
|||
{ |
|||
options.FileSets.AddEmbedded<BloggingInstallerModule>(); |
|||
}); |
|||
} |
|||
} |
|||
@ -0,0 +1,17 @@ |
|||
using System.Threading.Tasks; |
|||
using Microsoft.Extensions.DependencyInjection; |
|||
using Volo.Abp.DependencyInjection; |
|||
using Volo.Abp.Studio.ModuleInstalling; |
|||
|
|||
namespace Volo.Blogging; |
|||
|
|||
[Dependency(ServiceLifetime.Transient, ReplaceServices = true)] |
|||
[ExposeServices(typeof(IModuleInstallingPipelineBuilder))] |
|||
public class BloggingInstallerPipelineBuilder : ModuleInstallingPipelineBuilderBase, IModuleInstallingPipelineBuilder, ITransientDependency |
|||
{ |
|||
public async Task<ModuleInstallingPipeline> BuildAsync(ModuleInstallingContext context) |
|||
{ |
|||
|
|||
return GetBasePipeline(context); |
|||
} |
|||
} |
|||
@ -0,0 +1,44 @@ |
|||
{ |
|||
"name": "Volo.Blogging.MongoDB", |
|||
"hash": "6837c014507cf952197f4b5ae3cafb97", |
|||
"contents": [ |
|||
{ |
|||
"namespace": "Volo.Blogging.MongoDB", |
|||
"contentType": "abpModule", |
|||
"name": "BloggingMongoDbModule" |
|||
}, |
|||
{ |
|||
"namespace": "Volo.Blogging.MongoDB", |
|||
"connectionStringName": "Blogging", |
|||
"databaseCollections": [ |
|||
{ |
|||
"entityFullName": "Volo.Blogging.Comments.Comment", |
|||
"contentType": "databaseCollection", |
|||
"name": "BlgComments" |
|||
}, |
|||
{ |
|||
"entityFullName": "Volo.Blogging.Posts.Post", |
|||
"contentType": "databaseCollection", |
|||
"name": "BlgPosts" |
|||
}, |
|||
{ |
|||
"entityFullName": "Volo.Blogging.Blogs.Blog", |
|||
"contentType": "databaseCollection", |
|||
"name": "BlgBlogs" |
|||
}, |
|||
{ |
|||
"entityFullName": "Volo.Blogging.Tagging.Tag", |
|||
"contentType": "databaseCollection", |
|||
"name": "BlgTags" |
|||
}, |
|||
{ |
|||
"entityFullName": "Volo.Blogging.Users.BlogUser", |
|||
"contentType": "databaseCollection", |
|||
"name": "BlgUsers" |
|||
} |
|||
], |
|||
"contentType": "mongoDbContext", |
|||
"name": "BloggingMongoDbContext" |
|||
} |
|||
] |
|||
} |
|||
Loading…
Reference in new issue