Skip to content

Commit

Permalink
Solution structure adjustment
Browse files Browse the repository at this point in the history
  • Loading branch information
gdlcf88 committed Apr 9, 2020
1 parent 13f0bc2 commit 1e9abec
Show file tree
Hide file tree
Showing 61 changed files with 25 additions and 17 deletions.
2 changes: 1 addition & 1 deletion common.props
@@ -1,7 +1,7 @@
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Version>0.1.2</Version>
<Version>0.1.3</Version>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>EasyAbp Team</Authors>
Expand Down
Expand Up @@ -4,7 +4,7 @@

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>EasyAbp.UniappManagement</RootNamespace>
<RootNamespace />
</PropertyGroup>

<ItemGroup>
Expand Down
Expand Up @@ -4,7 +4,7 @@

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>EasyAbp.UniappManagement</RootNamespace>
<RootNamespace />
</PropertyGroup>

<ItemGroup>
Expand Down
Expand Up @@ -4,16 +4,16 @@

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>EasyAbp.UniappManagement</RootNamespace>
<RootNamespace />
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Volo.Abp.Validation" Version="2.3.0" />
</ItemGroup>

<ItemGroup>
<EmbeddedResource Include="Localization\UniappManagement\*.json" />
<Content Remove="Localization\UniappManagement\*.json" />
<EmbeddedResource Include="EasyAbp\UniappManagement\Localization\UniappManagement\*.json" />
<Content Remove="EasyAbp\UniappManagement\Localization\UniappManagement\*.json" />
</ItemGroup>

</Project>
Expand Up @@ -17,20 +17,20 @@ public override void ConfigureServices(ServiceConfigurationContext context)
{
Configure<AbpVirtualFileSystemOptions>(options =>
{
options.FileSets.AddEmbedded<UniappManagementDomainSharedModule>("EasyAbp.UniappManagement");
options.FileSets.AddEmbedded<UniappManagementDomainSharedModule>();
});

Configure<AbpLocalizationOptions>(options =>
{
options.Resources
.Add<UniappManagementResource>("en")
.AddBaseTypes(typeof(AbpValidationResource))
.AddVirtualJson("/Localization/UniappManagement");
.AddVirtualJson("/EasyAbp/UniappManagement/Localization/UniappManagement");
});

Configure<AbpExceptionLocalizationOptions>(options =>
{
options.MapCodeNamespace("UniappManagement", typeof(UniappManagementResource));
options.MapCodeNamespace("EasyAbp.UniappManagement", typeof(UniappManagementResource));
});
}
}
Expand Down
Expand Up @@ -4,7 +4,7 @@

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>EasyAbp.UniappManagement</RootNamespace>
<RootNamespace />
</PropertyGroup>

<ItemGroup>
Expand Down
@@ -1,15 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="..\..\common.props" />

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>EasyAbp.UniappManagement</RootNamespace>
<RootNamespace />
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Volo.Abp.EntityFrameworkCore" Version="2.3.0" />
<ProjectReference Include="..\EasyAbp.UniappManagement.Domain\EasyAbp.UniappManagement.Domain.csproj" />
</ItemGroup>

<ItemGroup>
<Folder Include="EasyAbp\UniappManagement" />
</ItemGroup>

</Project>
@@ -1,10 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="..\..\common.props" />

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<RootNamespace>EasyAbp.UniappManagement</RootNamespace>
<RootNamespace />
</PropertyGroup>

<ItemGroup>
Expand Down
Expand Up @@ -4,7 +4,7 @@

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<RootNamespace>EasyAbp.UniappManagement</RootNamespace>
<RootNamespace />
</PropertyGroup>

<ItemGroup>
Expand Down
@@ -1,15 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="..\..\common.props" />

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<RootNamespace>EasyAbp.UniappManagement</RootNamespace>
<RootNamespace />
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Volo.Abp.MongoDB" Version="2.3.0" />
<ProjectReference Include="..\EasyAbp.UniappManagement.Domain\EasyAbp.UniappManagement.Domain.csproj" />
</ItemGroup>

<ItemGroup>
<Folder Include="EasyAbp\UniappManagement" />
</ItemGroup>

</Project>

0 comments on commit 1e9abec

Please sign in to comment.