Merge branch 'dev' of https://github.com/abpframework/abp into feat/4894
|
After Width: | Height: | Size: 29 KiB |
|
After Width: | Height: | Size: 51 KiB |
|
After Width: | Height: | Size: 78 KiB |
|
After Width: | Height: | Size: 36 KiB |
|
After Width: | Height: | Size: 46 KiB |
|
After Width: | Height: | Size: 25 KiB |
|
After Width: | Height: | Size: 75 KiB |
|
After Width: | Height: | Size: 76 KiB |
|
After Width: | Height: | Size: 65 KiB |
|
After Width: | Height: | Size: 42 KiB |
|
After Width: | Height: | Size: 74 KiB |
|
Before Width: | Height: | Size: 55 KiB After Width: | Height: | Size: 35 KiB |
|
After Width: | Height: | Size: 40 KiB |
|
After Width: | Height: | Size: 92 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 27 KiB |
|
After Width: | Height: | Size: 9.5 KiB |
|
After Width: | Height: | Size: 72 KiB |
|
After Width: | Height: | Size: 62 KiB |
|
After Width: | Height: | Size: 82 KiB |
|
After Width: | Height: | Size: 2.9 KiB |
|
After Width: | Height: | Size: 58 KiB |
|
After Width: | Height: | Size: 33 KiB |
@ -1,25 +0,0 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||
<AssemblyName>Volo.Abp.Users.EntityFrameworkCore.Tests</AssemblyName>
|
||||
<PackageId>Volo.Abp.Users.EntityFrameworkCore.Tests</PackageId>
|
||||
<LangVersion>latest</LangVersion>
|
||||
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
|
||||
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
|
||||
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
|
||||
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
|
||||
<RootNamespace />
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\src\Volo.Abp.Users.EntityFrameworkCore\Volo.Abp.Users.EntityFrameworkCore.csproj" />
|
||||
<ProjectReference Include="..\..\test\Volo.Abp.Users.Tests.Shared\Volo.Abp.Users.Tests.Shared.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="3.1.4" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
@ -1,2 +0,0 @@
|
||||
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
|
||||
<s:String x:Key="/Default/CodeInspection/CSharpLanguageProject/LanguageLevel/@EntryValue">CSharp71</s:String></wpf:ResourceDictionary>
|
||||
@ -1,25 +0,0 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||
<AssemblyName>Volo.Abp.Users.MongoDB.Tests</AssemblyName>
|
||||
<PackageId>Volo.Abp.Users.MongoDB.Tests</PackageId>
|
||||
<LangVersion>latest</LangVersion>
|
||||
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
|
||||
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
|
||||
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
|
||||
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
|
||||
<RootNamespace />
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\src\Volo.Abp.Users.MongoDB\Volo.Abp.Users.MongoDB.csproj" />
|
||||
<ProjectReference Include="..\..\test\Volo.Abp.Users.Tests.Shared\Volo.Abp.Users.Tests.Shared.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
|
||||
<PackageReference Include="Mongo2Go" Version="2.2.12" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
@ -1,22 +0,0 @@
|
||||
using System;
|
||||
using Mongo2Go;
|
||||
|
||||
namespace Volo.Abp.Users.MongoDB
|
||||
{
|
||||
public class MongoDbFixture : IDisposable
|
||||
{
|
||||
private static readonly MongoDbRunner MongoDbRunner;
|
||||
public static readonly string ConnectionString;
|
||||
|
||||
static MongoDbFixture()
|
||||
{
|
||||
MongoDbRunner = MongoDbRunner.Start();
|
||||
ConnectionString = MongoDbRunner.ConnectionString;
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
MongoDbRunner?.Dispose();
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1,10 +0,0 @@
|
||||
using Xunit;
|
||||
|
||||
namespace Volo.Abp.Users.MongoDB
|
||||
{
|
||||
[CollectionDefinition(Name)]
|
||||
public class MongoTestCollection : ICollectionFixture<MongoDbFixture>
|
||||
{
|
||||
public const string Name = "MongoDB Collection";
|
||||
}
|
||||
}
|
||||
@ -1,31 +0,0 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||
<AssemblyName>Volo.Abp.Users.Tests.Shared</AssemblyName>
|
||||
<PackageId>Volo.Abp.Users.Tests.Shared</PackageId>
|
||||
<LangVersion>latest</LangVersion>
|
||||
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
|
||||
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
|
||||
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
|
||||
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
|
||||
<RootNamespace />
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\src\Volo.Abp.Users.Domain\Volo.Abp.Users.Domain.csproj" />
|
||||
|
||||
<ProjectReference Include="..\..\..\..\framework\src\Volo.Abp.Autofac\Volo.Abp.Autofac.csproj" />
|
||||
<ProjectReference Include="..\..\..\..\framework\src\Volo.Abp.TestBase\Volo.Abp.TestBase.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
|
||||
<PackageReference Include="NSubstitute" Version="4.2.1" />
|
||||
<PackageReference Include="Shouldly" Version="3.0.2" />
|
||||
<PackageReference Include="xunit" Version="2.4.1" />
|
||||
<PackageReference Include="xunit.extensibility.execution" Version="2.4.1" />
|
||||
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
@ -1,2 +0,0 @@
|
||||
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
|
||||
<s:String x:Key="/Default/CodeInspection/CSharpLanguageProject/LanguageLevel/@EntryValue">CSharp71</s:String></wpf:ResourceDictionary>
|
||||
@ -1,11 +1,11 @@
|
||||
{
|
||||
"version": "3.0.4",
|
||||
"version": "3.0.5",
|
||||
"name": "@abp/aspnetcore.mvc.ui.theme.basic",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"dependencies": {
|
||||
"@abp/aspnetcore.mvc.ui.theme.shared": "~3.0.4"
|
||||
"@abp/aspnetcore.mvc.ui.theme.shared": "~3.0.5"
|
||||
},
|
||||
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"
|
||||
}
|
||||
|
||||
@ -1,24 +1,24 @@
|
||||
{
|
||||
"version": "3.0.4",
|
||||
"version": "3.0.5",
|
||||
"name": "@abp/aspnetcore.mvc.ui.theme.shared",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"dependencies": {
|
||||
"@abp/aspnetcore.mvc.ui": "~3.0.4",
|
||||
"@abp/bootstrap": "~3.0.4",
|
||||
"@abp/bootstrap-datepicker": "~3.0.4",
|
||||
"@abp/datatables.net-bs4": "~3.0.4",
|
||||
"@abp/font-awesome": "~3.0.4",
|
||||
"@abp/jquery-form": "~3.0.4",
|
||||
"@abp/jquery-validation-unobtrusive": "~3.0.4",
|
||||
"@abp/lodash": "~3.0.4",
|
||||
"@abp/luxon": "~3.0.4",
|
||||
"@abp/malihu-custom-scrollbar-plugin": "~3.0.4",
|
||||
"@abp/select2": "~3.0.4",
|
||||
"@abp/sweetalert": "~3.0.4",
|
||||
"@abp/timeago": "~3.0.4",
|
||||
"@abp/toastr": "~3.0.4"
|
||||
"@abp/aspnetcore.mvc.ui": "~3.0.5",
|
||||
"@abp/bootstrap": "~3.0.5",
|
||||
"@abp/bootstrap-datepicker": "~3.0.5",
|
||||
"@abp/datatables.net-bs4": "~3.0.5",
|
||||
"@abp/font-awesome": "~3.0.5",
|
||||
"@abp/jquery-form": "~3.0.5",
|
||||
"@abp/jquery-validation-unobtrusive": "~3.0.5",
|
||||
"@abp/lodash": "~3.0.5",
|
||||
"@abp/luxon": "~3.0.5",
|
||||
"@abp/malihu-custom-scrollbar-plugin": "~3.0.5",
|
||||
"@abp/select2": "~3.0.5",
|
||||
"@abp/sweetalert": "~3.0.5",
|
||||
"@abp/timeago": "~3.0.5",
|
||||
"@abp/toastr": "~3.0.5"
|
||||
},
|
||||
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"
|
||||
}
|
||||
|
||||
@ -1,14 +1,14 @@
|
||||
{
|
||||
"version": "3.0.4",
|
||||
"version": "3.0.5",
|
||||
"name": "@abp/blogging",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"dependencies": {
|
||||
"@abp/aspnetcore.mvc.ui.theme.shared": "~3.0.4",
|
||||
"@abp/owl.carousel": "~3.0.4",
|
||||
"@abp/prismjs": "~3.0.4",
|
||||
"@abp/tui-editor": "~3.0.4"
|
||||
"@abp/aspnetcore.mvc.ui.theme.shared": "~3.0.5",
|
||||
"@abp/owl.carousel": "~3.0.5",
|
||||
"@abp/prismjs": "~3.0.5",
|
||||
"@abp/tui-editor": "~3.0.5"
|
||||
},
|
||||
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"
|
||||
}
|
||||
|
||||
@ -1,11 +1,11 @@
|
||||
{
|
||||
"version": "3.0.4",
|
||||
"version": "3.0.5",
|
||||
"name": "@abp/core",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"dependencies": {
|
||||
"@abp/utils": "^3.0.4"
|
||||
"@abp/utils": "^3.0.5"
|
||||
},
|
||||
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"
|
||||
}
|
||||
|
||||
@ -1,15 +1,15 @@
|
||||
{
|
||||
"version": "3.0.4",
|
||||
"version": "3.0.5",
|
||||
"name": "@abp/docs",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"dependencies": {
|
||||
"@abp/anchor-js": "~3.0.4",
|
||||
"@abp/clipboard": "~3.0.4",
|
||||
"@abp/malihu-custom-scrollbar-plugin": "~3.0.4",
|
||||
"@abp/popper.js": "~3.0.4",
|
||||
"@abp/prismjs": "~3.0.4"
|
||||
"@abp/anchor-js": "~3.0.5",
|
||||
"@abp/clipboard": "~3.0.5",
|
||||
"@abp/malihu-custom-scrollbar-plugin": "~3.0.5",
|
||||
"@abp/popper.js": "~3.0.5",
|
||||
"@abp/prismjs": "~3.0.5"
|
||||
},
|
||||
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"
|
||||
}
|
||||
|
||||
@ -1,11 +1,11 @@
|
||||
{
|
||||
"version": "3.0.4",
|
||||
"version": "3.0.5",
|
||||
"name": "@abp/highlight.js",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"dependencies": {
|
||||
"@abp/core": "~3.0.4"
|
||||
"@abp/core": "~3.0.5"
|
||||
},
|
||||
"gitHead": "bb4ea17d5996f01889134c138d00b6c8f858a431"
|
||||
}
|
||||
|
||||