From d48bdcfd66744235cf929fd8791a42d8f54cb1e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halil=20=C4=B0brahim=20Kalkan?= Date: Thu, 5 Sep 2019 18:12:56 +0300 Subject: [PATCH] Updated test csproj file dependencies and created common.test.config --- common.test.props | 10 ++++++++++ .../src/Volo.Abp.Caching/Volo.Abp.Caching.csproj | 4 ++-- framework/test/AbpTestBase/AbpTestBase.csproj | 5 ++--- ....Abp.AspNetCore.Authentication.OAuth.Tests.csproj | 2 ++ .../Volo.Abp.AspNetCore.MultiTenancy.Tests.csproj | 6 ++---- .../Volo.Abp.AspNetCore.Mvc.Tests.csproj | 5 ++--- ...Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Tests.csproj | 5 ++--- .../Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.csproj | 4 +++- .../Volo.Abp.AspNetCore.Mvc.UI.Tests.csproj | 5 ++--- .../Volo.Abp.AspNetCore.Mvc.Versioning.Tests.csproj | 5 ++--- .../Volo.Abp.AspNetCore.Tests.csproj | 2 ++ .../Volo.Abp.Auditing.Tests.csproj | 6 ++---- .../Volo.Abp.Authorization.Tests.csproj | 6 ++---- .../Volo.Abp.AutoMapper.Tests.csproj | 6 ++---- .../Volo.Abp.Autofac.Tests.csproj | 5 ++--- .../Volo.Abp.BackgroundJobs.Tests.csproj | 7 ++----- .../Volo.Abp.Caching.Tests.csproj | 7 ++----- .../Volo.Abp.Castle.Core.Tests.csproj | 8 ++------ .../Volo.Abp.Cli.Core.Tests.csproj | 3 ++- .../Volo.Abp.Core.Tests/Volo.Abp.Core.Tests.csproj | 8 ++------ .../Volo.Abp.Dapper.Tests.csproj | 10 +++------- .../Volo.Abp.Data.Tests/Volo.Abp.Data.Tests.csproj | 8 ++------ .../Volo.Abp.Ddd.Tests/Volo.Abp.Ddd.Tests.csproj | 9 ++------- .../Volo.Abp.Emailing.Tests.csproj | 7 ++----- ...bp.EntityFrameworkCore.Tests.SecondContext.csproj | 9 +++------ .../Volo.Abp.EntityFrameworkCore.Tests.csproj | 12 ++++-------- .../Volo.Abp.EventBus.Tests.csproj | 9 ++------- .../Volo.Abp.Features.Tests.csproj | 9 ++------- .../Volo.Abp.FluentValidation.Tests.csproj | 8 ++------ .../Volo.Abp.Http.Client.Tests.csproj | 8 ++------ .../Volo.Abp.Ldap.Tests/Volo.Abp.Ldap.Tests.csproj | 4 ++-- .../Volo.Abp.Localization.Tests.csproj | 8 ++------ .../Volo.Abp.MailKit.Tests.csproj | 7 ++----- .../Volo.Abp.MemoryDb.Tests.csproj | 10 +++------- .../Volo.Abp.MongoDB.Tests.csproj | 8 ++------ .../Volo.Abp.MultiTenancy.Tests.csproj | 8 ++------ .../Volo.Abp.Security.Tests.csproj | 8 ++------ .../Volo.Abp.Serialization.Tests.csproj | 9 ++------- .../Volo.Abp.Settings.Tests.csproj | 9 ++------- .../Volo.Abp.Specifications.Tests.csproj | 9 ++------- .../Volo.Abp.TestApp.Tests.csproj | 8 ++------ .../test/Volo.Abp.TestApp/Volo.Abp.TestApp.csproj | 8 ++------ .../Volo.Abp.UI.Navigation.Tests.csproj | 8 ++------ .../Volo.Abp.Uow.Tests/Volo.Abp.Uow.Tests.csproj | 9 ++------- .../Volo.Abp.Validation.Tests.csproj | 8 ++------ .../Volo.Abp.VirtualFileSystem.Tests.csproj | 8 ++------ 46 files changed, 106 insertions(+), 221 deletions(-) create mode 100644 common.test.props diff --git a/common.test.props b/common.test.props new file mode 100644 index 0000000000..e90103e606 --- /dev/null +++ b/common.test.props @@ -0,0 +1,10 @@ + + + latest + $(NoWarn);CS1591 + true + false + false + false + + \ No newline at end of file diff --git a/framework/src/Volo.Abp.Caching/Volo.Abp.Caching.csproj b/framework/src/Volo.Abp.Caching/Volo.Abp.Caching.csproj index f4417ae910..445b6c98af 100644 --- a/framework/src/Volo.Abp.Caching/Volo.Abp.Caching.csproj +++ b/framework/src/Volo.Abp.Caching/Volo.Abp.Caching.csproj @@ -1,4 +1,4 @@ - + @@ -14,7 +14,7 @@ - + diff --git a/framework/test/AbpTestBase/AbpTestBase.csproj b/framework/test/AbpTestBase/AbpTestBase.csproj index f8a5dd6fd8..c6d5b71672 100644 --- a/framework/test/AbpTestBase/AbpTestBase.csproj +++ b/framework/test/AbpTestBase/AbpTestBase.csproj @@ -1,12 +1,11 @@  + + netcoreapp3.0 AbpTestBase AbpTestBase - false - false - false diff --git a/framework/test/Volo.Abp.AspNetCore.Authentication.OAuth.Tests/Volo.Abp.AspNetCore.Authentication.OAuth.Tests.csproj b/framework/test/Volo.Abp.AspNetCore.Authentication.OAuth.Tests/Volo.Abp.AspNetCore.Authentication.OAuth.Tests.csproj index 3e30eddb00..d1eadf276d 100644 --- a/framework/test/Volo.Abp.AspNetCore.Authentication.OAuth.Tests/Volo.Abp.AspNetCore.Authentication.OAuth.Tests.csproj +++ b/framework/test/Volo.Abp.AspNetCore.Authentication.OAuth.Tests/Volo.Abp.AspNetCore.Authentication.OAuth.Tests.csproj @@ -1,4 +1,6 @@  + + netcoreapp3.0 diff --git a/framework/test/Volo.Abp.AspNetCore.MultiTenancy.Tests/Volo.Abp.AspNetCore.MultiTenancy.Tests.csproj b/framework/test/Volo.Abp.AspNetCore.MultiTenancy.Tests/Volo.Abp.AspNetCore.MultiTenancy.Tests.csproj index 14d7c66824..61d430d984 100644 --- a/framework/test/Volo.Abp.AspNetCore.MultiTenancy.Tests/Volo.Abp.AspNetCore.MultiTenancy.Tests.csproj +++ b/framework/test/Volo.Abp.AspNetCore.MultiTenancy.Tests/Volo.Abp.AspNetCore.MultiTenancy.Tests.csproj @@ -1,13 +1,11 @@  + + netcoreapp3.0 Volo.Abp.AspNetCore.MultiTenancy.Tests Volo.Abp.AspNetCore.MultiTenancy.Tests - true - false - false - false diff --git a/framework/test/Volo.Abp.AspNetCore.Mvc.Tests/Volo.Abp.AspNetCore.Mvc.Tests.csproj b/framework/test/Volo.Abp.AspNetCore.Mvc.Tests/Volo.Abp.AspNetCore.Mvc.Tests.csproj index 51849db7eb..2f956ce4b2 100644 --- a/framework/test/Volo.Abp.AspNetCore.Mvc.Tests/Volo.Abp.AspNetCore.Mvc.Tests.csproj +++ b/framework/test/Volo.Abp.AspNetCore.Mvc.Tests/Volo.Abp.AspNetCore.Mvc.Tests.csproj @@ -1,5 +1,7 @@  + + netcoreapp3.0 $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; @@ -7,9 +9,6 @@ Volo.Abp.AspNetCore.Mvc.Tests true true - false - false - false true true diff --git a/framework/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Tests/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Tests.csproj b/framework/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Tests/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Tests.csproj index a90ba69d7a..7b58c9c738 100644 --- a/framework/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Tests/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Tests.csproj +++ b/framework/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Tests/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Tests.csproj @@ -1,5 +1,7 @@  + + netcoreapp3.0 $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; @@ -7,9 +9,6 @@ Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Tests true true - false - false - false true true diff --git a/framework/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.csproj b/framework/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.csproj index d363e4ac01..eb9f5afd9c 100644 --- a/framework/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.csproj +++ b/framework/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.csproj @@ -1,11 +1,13 @@  + + netcoreapp3.0 - + diff --git a/framework/test/Volo.Abp.AspNetCore.Mvc.UI.Tests/Volo.Abp.AspNetCore.Mvc.UI.Tests.csproj b/framework/test/Volo.Abp.AspNetCore.Mvc.UI.Tests/Volo.Abp.AspNetCore.Mvc.UI.Tests.csproj index d68ebf17d6..cc1af553f8 100644 --- a/framework/test/Volo.Abp.AspNetCore.Mvc.UI.Tests/Volo.Abp.AspNetCore.Mvc.UI.Tests.csproj +++ b/framework/test/Volo.Abp.AspNetCore.Mvc.UI.Tests/Volo.Abp.AspNetCore.Mvc.UI.Tests.csproj @@ -1,4 +1,6 @@  + + netcoreapp3.0 @@ -7,9 +9,6 @@ Volo.Abp.AspNetCore.Mvc.UI.Tests true true - false - false - false true true diff --git a/framework/test/Volo.Abp.AspNetCore.Mvc.Versioning.Tests/Volo.Abp.AspNetCore.Mvc.Versioning.Tests.csproj b/framework/test/Volo.Abp.AspNetCore.Mvc.Versioning.Tests/Volo.Abp.AspNetCore.Mvc.Versioning.Tests.csproj index 623e8e01e4..139bae1588 100644 --- a/framework/test/Volo.Abp.AspNetCore.Mvc.Versioning.Tests/Volo.Abp.AspNetCore.Mvc.Versioning.Tests.csproj +++ b/framework/test/Volo.Abp.AspNetCore.Mvc.Versioning.Tests/Volo.Abp.AspNetCore.Mvc.Versioning.Tests.csproj @@ -1,5 +1,7 @@  + + netcoreapp3.0 $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; @@ -7,9 +9,6 @@ Volo.Abp.AspNetCore.Mvc.Versioning.Tests true true - false - false - false true true diff --git a/framework/test/Volo.Abp.AspNetCore.Tests/Volo.Abp.AspNetCore.Tests.csproj b/framework/test/Volo.Abp.AspNetCore.Tests/Volo.Abp.AspNetCore.Tests.csproj index 537da679d3..4050b40ea1 100644 --- a/framework/test/Volo.Abp.AspNetCore.Tests/Volo.Abp.AspNetCore.Tests.csproj +++ b/framework/test/Volo.Abp.AspNetCore.Tests/Volo.Abp.AspNetCore.Tests.csproj @@ -1,5 +1,7 @@  + + netcoreapp3.0 Volo.Abp.AspNetCore.Tests diff --git a/framework/test/Volo.Abp.Auditing.Tests/Volo.Abp.Auditing.Tests.csproj b/framework/test/Volo.Abp.Auditing.Tests/Volo.Abp.Auditing.Tests.csproj index 895400f88e..ee1e2441a6 100644 --- a/framework/test/Volo.Abp.Auditing.Tests/Volo.Abp.Auditing.Tests.csproj +++ b/framework/test/Volo.Abp.Auditing.Tests/Volo.Abp.Auditing.Tests.csproj @@ -1,14 +1,12 @@  + + netcoreapp3.0 - latest Volo.Abp.Auditing.Tests Volo.Abp.Auditing.Tests true - false - false - false diff --git a/framework/test/Volo.Abp.Authorization.Tests/Volo.Abp.Authorization.Tests.csproj b/framework/test/Volo.Abp.Authorization.Tests/Volo.Abp.Authorization.Tests.csproj index 538a85c508..817533079b 100644 --- a/framework/test/Volo.Abp.Authorization.Tests/Volo.Abp.Authorization.Tests.csproj +++ b/framework/test/Volo.Abp.Authorization.Tests/Volo.Abp.Authorization.Tests.csproj @@ -1,14 +1,12 @@  + + netcoreapp3.0 - latest Volo.Abp.Authorization.Tests Volo.Abp.Authorization.Tests true - false - false - false diff --git a/framework/test/Volo.Abp.AutoMapper.Tests/Volo.Abp.AutoMapper.Tests.csproj b/framework/test/Volo.Abp.AutoMapper.Tests/Volo.Abp.AutoMapper.Tests.csproj index c0ef5b5313..d8e2e5ec2b 100644 --- a/framework/test/Volo.Abp.AutoMapper.Tests/Volo.Abp.AutoMapper.Tests.csproj +++ b/framework/test/Volo.Abp.AutoMapper.Tests/Volo.Abp.AutoMapper.Tests.csproj @@ -1,13 +1,11 @@  + + netcoreapp3.0 Volo.Abp.AutoMapper.Tests Volo.Abp.AutoMapper.Tests - true - false - false - false diff --git a/framework/test/Volo.Abp.Autofac.Tests/Volo.Abp.Autofac.Tests.csproj b/framework/test/Volo.Abp.Autofac.Tests/Volo.Abp.Autofac.Tests.csproj index fd0387601e..96088ec3e4 100644 --- a/framework/test/Volo.Abp.Autofac.Tests/Volo.Abp.Autofac.Tests.csproj +++ b/framework/test/Volo.Abp.Autofac.Tests/Volo.Abp.Autofac.Tests.csproj @@ -1,13 +1,12 @@  + + netcoreapp3.0 Volo.Abp.Autofac.Tests Volo.Abp.Autofac.Tests true - false - false - false diff --git a/framework/test/Volo.Abp.BackgroundJobs.Tests/Volo.Abp.BackgroundJobs.Tests.csproj b/framework/test/Volo.Abp.BackgroundJobs.Tests/Volo.Abp.BackgroundJobs.Tests.csproj index 982f104a1a..f8a27d020b 100644 --- a/framework/test/Volo.Abp.BackgroundJobs.Tests/Volo.Abp.BackgroundJobs.Tests.csproj +++ b/framework/test/Volo.Abp.BackgroundJobs.Tests/Volo.Abp.BackgroundJobs.Tests.csproj @@ -1,14 +1,11 @@  + + netcoreapp3.0 - latest Volo.Abp.BackgroundJobs.Tests Volo.Abp.BackgroundJobs.Tests - true - false - false - false diff --git a/framework/test/Volo.Abp.Caching.Tests/Volo.Abp.Caching.Tests.csproj b/framework/test/Volo.Abp.Caching.Tests/Volo.Abp.Caching.Tests.csproj index 36a2cbae62..1c4818159b 100644 --- a/framework/test/Volo.Abp.Caching.Tests/Volo.Abp.Caching.Tests.csproj +++ b/framework/test/Volo.Abp.Caching.Tests/Volo.Abp.Caching.Tests.csproj @@ -1,14 +1,11 @@  + + netcoreapp3.0 - latest Volo.Abp.Caching.Tests Volo.Abp.Caching.Tests - true - false - false - false diff --git a/framework/test/Volo.Abp.Castle.Core.Tests/Volo.Abp.Castle.Core.Tests.csproj b/framework/test/Volo.Abp.Castle.Core.Tests/Volo.Abp.Castle.Core.Tests.csproj index 57a5c30c51..97988f8b3f 100644 --- a/framework/test/Volo.Abp.Castle.Core.Tests/Volo.Abp.Castle.Core.Tests.csproj +++ b/framework/test/Volo.Abp.Castle.Core.Tests/Volo.Abp.Castle.Core.Tests.csproj @@ -1,13 +1,9 @@  + + netcoreapp3.0 - Volo.Abp.Castle.Core.Tests - Volo.Abp.Castle.Core.Tests - true - false - false - false diff --git a/framework/test/Volo.Abp.Cli.Core.Tests/Volo.Abp.Cli.Core.Tests.csproj b/framework/test/Volo.Abp.Cli.Core.Tests/Volo.Abp.Cli.Core.Tests.csproj index 034517a1c8..ba75eb73ca 100644 --- a/framework/test/Volo.Abp.Cli.Core.Tests/Volo.Abp.Cli.Core.Tests.csproj +++ b/framework/test/Volo.Abp.Cli.Core.Tests/Volo.Abp.Cli.Core.Tests.csproj @@ -1,8 +1,9 @@  + + netcoreapp3.0 - latest diff --git a/framework/test/Volo.Abp.Core.Tests/Volo.Abp.Core.Tests.csproj b/framework/test/Volo.Abp.Core.Tests/Volo.Abp.Core.Tests.csproj index 75e75f9d1d..0812895ae0 100644 --- a/framework/test/Volo.Abp.Core.Tests/Volo.Abp.Core.Tests.csproj +++ b/framework/test/Volo.Abp.Core.Tests/Volo.Abp.Core.Tests.csproj @@ -1,13 +1,9 @@  + + netcoreapp3.0 - Volo.Abp.Core.Tests - Volo.Abp.Core.Tests - true - false - false - false diff --git a/framework/test/Volo.Abp.Dapper.Tests/Volo.Abp.Dapper.Tests.csproj b/framework/test/Volo.Abp.Dapper.Tests/Volo.Abp.Dapper.Tests.csproj index 0aa84a95a4..7f08897bcd 100644 --- a/framework/test/Volo.Abp.Dapper.Tests/Volo.Abp.Dapper.Tests.csproj +++ b/framework/test/Volo.Abp.Dapper.Tests/Volo.Abp.Dapper.Tests.csproj @@ -1,13 +1,9 @@  + + netcoreapp3.0 - Volo.Abp.Dapper.Tests - Volo.Abp.Dapper.Tests - true - false - false - false @@ -18,7 +14,7 @@ - + \ No newline at end of file diff --git a/framework/test/Volo.Abp.Data.Tests/Volo.Abp.Data.Tests.csproj b/framework/test/Volo.Abp.Data.Tests/Volo.Abp.Data.Tests.csproj index 184f971799..65b50126bd 100644 --- a/framework/test/Volo.Abp.Data.Tests/Volo.Abp.Data.Tests.csproj +++ b/framework/test/Volo.Abp.Data.Tests/Volo.Abp.Data.Tests.csproj @@ -1,13 +1,9 @@  + + netcoreapp3.0 - Volo.Abp.Data.Tests - Volo.Abp.Data.Tests - true - false - false - false diff --git a/framework/test/Volo.Abp.Ddd.Tests/Volo.Abp.Ddd.Tests.csproj b/framework/test/Volo.Abp.Ddd.Tests/Volo.Abp.Ddd.Tests.csproj index c9e04a7ed0..1ed24ead80 100644 --- a/framework/test/Volo.Abp.Ddd.Tests/Volo.Abp.Ddd.Tests.csproj +++ b/framework/test/Volo.Abp.Ddd.Tests/Volo.Abp.Ddd.Tests.csproj @@ -1,14 +1,9 @@  + + netcoreapp3.0 - latest - Volo.Abp.Ddd.Tests - Volo.Abp.Ddd.Tests - true - false - false - false diff --git a/framework/test/Volo.Abp.Emailing.Tests/Volo.Abp.Emailing.Tests.csproj b/framework/test/Volo.Abp.Emailing.Tests/Volo.Abp.Emailing.Tests.csproj index a4a3d57b44..bc1296cbc8 100644 --- a/framework/test/Volo.Abp.Emailing.Tests/Volo.Abp.Emailing.Tests.csproj +++ b/framework/test/Volo.Abp.Emailing.Tests/Volo.Abp.Emailing.Tests.csproj @@ -1,12 +1,9 @@  + + netcoreapp3.0 - latest - true - false - false - false diff --git a/framework/test/Volo.Abp.EntityFrameworkCore.Tests.SecondContext/Volo.Abp.EntityFrameworkCore.Tests.SecondContext.csproj b/framework/test/Volo.Abp.EntityFrameworkCore.Tests.SecondContext/Volo.Abp.EntityFrameworkCore.Tests.SecondContext.csproj index 24b8f7bc8e..bace3a67e5 100644 --- a/framework/test/Volo.Abp.EntityFrameworkCore.Tests.SecondContext/Volo.Abp.EntityFrameworkCore.Tests.SecondContext.csproj +++ b/framework/test/Volo.Abp.EntityFrameworkCore.Tests.SecondContext/Volo.Abp.EntityFrameworkCore.Tests.SecondContext.csproj @@ -1,15 +1,12 @@ - + + + netcoreapp3.0 $(AssetTargetFallback);portable-net45+win8+wp8+wpa81; - Volo.Abp.EntityFrameworkCore.Tests.SecondContext - Volo.Abp.EntityFrameworkCore.Tests.SecondContext true true - false - false - false true true diff --git a/framework/test/Volo.Abp.EntityFrameworkCore.Tests/Volo.Abp.EntityFrameworkCore.Tests.csproj b/framework/test/Volo.Abp.EntityFrameworkCore.Tests/Volo.Abp.EntityFrameworkCore.Tests.csproj index 31b16bf631..633df17917 100644 --- a/framework/test/Volo.Abp.EntityFrameworkCore.Tests/Volo.Abp.EntityFrameworkCore.Tests.csproj +++ b/framework/test/Volo.Abp.EntityFrameworkCore.Tests/Volo.Abp.EntityFrameworkCore.Tests.csproj @@ -1,13 +1,9 @@  + + - netcoreapp3.0 - Volo.Abp.EntityFrameworkCore.Tests - Volo.Abp.EntityFrameworkCore.Tests - true - false - false - false + netcoreapp3.0 @@ -20,7 +16,7 @@ - + diff --git a/framework/test/Volo.Abp.EventBus.Tests/Volo.Abp.EventBus.Tests.csproj b/framework/test/Volo.Abp.EventBus.Tests/Volo.Abp.EventBus.Tests.csproj index 96c459f8ae..a58e10af2d 100644 --- a/framework/test/Volo.Abp.EventBus.Tests/Volo.Abp.EventBus.Tests.csproj +++ b/framework/test/Volo.Abp.EventBus.Tests/Volo.Abp.EventBus.Tests.csproj @@ -1,14 +1,9 @@  + + netcoreapp3.0 - latest - Volo.Abp.EventBus.Tests - Volo.Abp.EventBus.Tests - true - false - false - false diff --git a/framework/test/Volo.Abp.Features.Tests/Volo.Abp.Features.Tests.csproj b/framework/test/Volo.Abp.Features.Tests/Volo.Abp.Features.Tests.csproj index 89c9570c60..d7b28568f3 100644 --- a/framework/test/Volo.Abp.Features.Tests/Volo.Abp.Features.Tests.csproj +++ b/framework/test/Volo.Abp.Features.Tests/Volo.Abp.Features.Tests.csproj @@ -1,14 +1,9 @@  + + netcoreapp3.0 - latest - Volo.Abp.Features.Tests - Volo.Abp.Features.Tests - true - false - false - false diff --git a/framework/test/Volo.Abp.FluentValidation.Tests/Volo.Abp.FluentValidation.Tests.csproj b/framework/test/Volo.Abp.FluentValidation.Tests/Volo.Abp.FluentValidation.Tests.csproj index 0477853c3f..e3e95e182b 100644 --- a/framework/test/Volo.Abp.FluentValidation.Tests/Volo.Abp.FluentValidation.Tests.csproj +++ b/framework/test/Volo.Abp.FluentValidation.Tests/Volo.Abp.FluentValidation.Tests.csproj @@ -1,13 +1,9 @@  + + netcoreapp3.0 - Volo.Abp.FluentValidation.Tests - Volo.Abp.FluentValidation.Tests - true - false - false - false diff --git a/framework/test/Volo.Abp.Http.Client.Tests/Volo.Abp.Http.Client.Tests.csproj b/framework/test/Volo.Abp.Http.Client.Tests/Volo.Abp.Http.Client.Tests.csproj index eca1cef206..a4bcae448b 100644 --- a/framework/test/Volo.Abp.Http.Client.Tests/Volo.Abp.Http.Client.Tests.csproj +++ b/framework/test/Volo.Abp.Http.Client.Tests/Volo.Abp.Http.Client.Tests.csproj @@ -1,13 +1,9 @@  + + netcoreapp3.0 - Volo.Abp.Http.Client.Tests - Volo.Abp.Http.Client.Tests - true - false - false - false diff --git a/framework/test/Volo.Abp.Ldap.Tests/Volo.Abp.Ldap.Tests.csproj b/framework/test/Volo.Abp.Ldap.Tests/Volo.Abp.Ldap.Tests.csproj index e727ab47e9..6f16b2499e 100644 --- a/framework/test/Volo.Abp.Ldap.Tests/Volo.Abp.Ldap.Tests.csproj +++ b/framework/test/Volo.Abp.Ldap.Tests/Volo.Abp.Ldap.Tests.csproj @@ -1,9 +1,9 @@  + + netcoreapp3.0 - latest - false diff --git a/framework/test/Volo.Abp.Localization.Tests/Volo.Abp.Localization.Tests.csproj b/framework/test/Volo.Abp.Localization.Tests/Volo.Abp.Localization.Tests.csproj index a53d74e01c..68cc2bdb83 100644 --- a/framework/test/Volo.Abp.Localization.Tests/Volo.Abp.Localization.Tests.csproj +++ b/framework/test/Volo.Abp.Localization.Tests/Volo.Abp.Localization.Tests.csproj @@ -1,13 +1,9 @@  + + netcoreapp3.0 - Volo.Abp.Localization.Tests - Volo.Abp.Localization.Tests - true - false - false - false diff --git a/framework/test/Volo.Abp.MailKit.Tests/Volo.Abp.MailKit.Tests.csproj b/framework/test/Volo.Abp.MailKit.Tests/Volo.Abp.MailKit.Tests.csproj index 90ef58aa0a..11a2ac7673 100644 --- a/framework/test/Volo.Abp.MailKit.Tests/Volo.Abp.MailKit.Tests.csproj +++ b/framework/test/Volo.Abp.MailKit.Tests/Volo.Abp.MailKit.Tests.csproj @@ -1,12 +1,9 @@  + + netcoreapp3.0 - latest - true - false - false - false diff --git a/framework/test/Volo.Abp.MemoryDb.Tests/Volo.Abp.MemoryDb.Tests.csproj b/framework/test/Volo.Abp.MemoryDb.Tests/Volo.Abp.MemoryDb.Tests.csproj index 67aae002c8..e7d0eec2fc 100644 --- a/framework/test/Volo.Abp.MemoryDb.Tests/Volo.Abp.MemoryDb.Tests.csproj +++ b/framework/test/Volo.Abp.MemoryDb.Tests/Volo.Abp.MemoryDb.Tests.csproj @@ -1,13 +1,9 @@  + + - netcoreapp3.0 - Volo.Abp.MemoryDb.Tests - Volo.Abp.MemoryDb.Tests - true - false - false - false + netcoreapp3.0 diff --git a/framework/test/Volo.Abp.MongoDB.Tests/Volo.Abp.MongoDB.Tests.csproj b/framework/test/Volo.Abp.MongoDB.Tests/Volo.Abp.MongoDB.Tests.csproj index b9ee83223b..bbad58f4fa 100644 --- a/framework/test/Volo.Abp.MongoDB.Tests/Volo.Abp.MongoDB.Tests.csproj +++ b/framework/test/Volo.Abp.MongoDB.Tests/Volo.Abp.MongoDB.Tests.csproj @@ -1,13 +1,9 @@  + + netcoreapp3.0 - Volo.Abp.MongoDB.Tests - Volo.Abp.MongoDB.Tests - true - false - false - false diff --git a/framework/test/Volo.Abp.MultiTenancy.Tests/Volo.Abp.MultiTenancy.Tests.csproj b/framework/test/Volo.Abp.MultiTenancy.Tests/Volo.Abp.MultiTenancy.Tests.csproj index 9e8736b9b2..17ce3073c5 100644 --- a/framework/test/Volo.Abp.MultiTenancy.Tests/Volo.Abp.MultiTenancy.Tests.csproj +++ b/framework/test/Volo.Abp.MultiTenancy.Tests/Volo.Abp.MultiTenancy.Tests.csproj @@ -1,13 +1,9 @@  + + netcoreapp3.0 - Volo.Abp.MultiTenancy.Tests - Volo.Abp.MultiTenancy.Tests - true - false - false - false diff --git a/framework/test/Volo.Abp.Security.Tests/Volo.Abp.Security.Tests.csproj b/framework/test/Volo.Abp.Security.Tests/Volo.Abp.Security.Tests.csproj index 7df48be96b..1534cb28f4 100644 --- a/framework/test/Volo.Abp.Security.Tests/Volo.Abp.Security.Tests.csproj +++ b/framework/test/Volo.Abp.Security.Tests/Volo.Abp.Security.Tests.csproj @@ -1,13 +1,9 @@  + + netcoreapp3.0 - Volo.Abp.Security.Tests - Volo.Abp.Security.Tests - true - false - false - false diff --git a/framework/test/Volo.Abp.Serialization.Tests/Volo.Abp.Serialization.Tests.csproj b/framework/test/Volo.Abp.Serialization.Tests/Volo.Abp.Serialization.Tests.csproj index 78b3c210b1..65bb49d57a 100644 --- a/framework/test/Volo.Abp.Serialization.Tests/Volo.Abp.Serialization.Tests.csproj +++ b/framework/test/Volo.Abp.Serialization.Tests/Volo.Abp.Serialization.Tests.csproj @@ -1,14 +1,9 @@  + + netcoreapp3.0 - latest - Volo.Abp.Serialization.Tests - Volo.Abp.Serialization.Tests - true - false - false - false diff --git a/framework/test/Volo.Abp.Settings.Tests/Volo.Abp.Settings.Tests.csproj b/framework/test/Volo.Abp.Settings.Tests/Volo.Abp.Settings.Tests.csproj index 9b2f5806e3..ef91443b2a 100644 --- a/framework/test/Volo.Abp.Settings.Tests/Volo.Abp.Settings.Tests.csproj +++ b/framework/test/Volo.Abp.Settings.Tests/Volo.Abp.Settings.Tests.csproj @@ -1,14 +1,9 @@  + + netcoreapp3.0 - latest - Volo.Abp.Settings.Tests - Volo.Abp.Settings.Tests - true - false - false - false diff --git a/framework/test/Volo.Abp.Specifications.Tests/Volo.Abp.Specifications.Tests.csproj b/framework/test/Volo.Abp.Specifications.Tests/Volo.Abp.Specifications.Tests.csproj index 9c61e7d4ca..0594067fa5 100644 --- a/framework/test/Volo.Abp.Specifications.Tests/Volo.Abp.Specifications.Tests.csproj +++ b/framework/test/Volo.Abp.Specifications.Tests/Volo.Abp.Specifications.Tests.csproj @@ -1,14 +1,9 @@  + + netcoreapp3.0 - latest - Volo.Abp.Specifications.Tests - Volo.Abp.Specifications.Tests - true - false - false - false diff --git a/framework/test/Volo.Abp.TestApp.Tests/Volo.Abp.TestApp.Tests.csproj b/framework/test/Volo.Abp.TestApp.Tests/Volo.Abp.TestApp.Tests.csproj index 84b4288100..90dbb56a8e 100644 --- a/framework/test/Volo.Abp.TestApp.Tests/Volo.Abp.TestApp.Tests.csproj +++ b/framework/test/Volo.Abp.TestApp.Tests/Volo.Abp.TestApp.Tests.csproj @@ -1,13 +1,9 @@  + + netcoreapp3.0 - Volo.Abp.TestApp.Tests - Volo.Abp.TestApp.Tests - true - false - false - false diff --git a/framework/test/Volo.Abp.TestApp/Volo.Abp.TestApp.csproj b/framework/test/Volo.Abp.TestApp/Volo.Abp.TestApp.csproj index 9d8292419b..d72d42e48a 100644 --- a/framework/test/Volo.Abp.TestApp/Volo.Abp.TestApp.csproj +++ b/framework/test/Volo.Abp.TestApp/Volo.Abp.TestApp.csproj @@ -1,13 +1,9 @@  + + netcoreapp3.0 - Volo.Abp.TestApp - Volo.Abp.TestApp - true - false - false - false diff --git a/framework/test/Volo.Abp.UI.Navigation.Tests/Volo.Abp.UI.Navigation.Tests.csproj b/framework/test/Volo.Abp.UI.Navigation.Tests/Volo.Abp.UI.Navigation.Tests.csproj index bd16b1c1bb..7937d99580 100644 --- a/framework/test/Volo.Abp.UI.Navigation.Tests/Volo.Abp.UI.Navigation.Tests.csproj +++ b/framework/test/Volo.Abp.UI.Navigation.Tests/Volo.Abp.UI.Navigation.Tests.csproj @@ -1,13 +1,9 @@  + + netcoreapp3.0 - Volo.Abp.UI.Navigation.Tests - Volo.Abp.UI.Navigation.Tests - true - false - false - false diff --git a/framework/test/Volo.Abp.Uow.Tests/Volo.Abp.Uow.Tests.csproj b/framework/test/Volo.Abp.Uow.Tests/Volo.Abp.Uow.Tests.csproj index 692324d9f7..6ec5ddac26 100644 --- a/framework/test/Volo.Abp.Uow.Tests/Volo.Abp.Uow.Tests.csproj +++ b/framework/test/Volo.Abp.Uow.Tests/Volo.Abp.Uow.Tests.csproj @@ -1,14 +1,9 @@  + + netcoreapp3.0 - latest - Volo.Abp.Uow.Tests - Volo.Abp.Uow.Tests - true - false - false - false diff --git a/framework/test/Volo.Abp.Validation.Tests/Volo.Abp.Validation.Tests.csproj b/framework/test/Volo.Abp.Validation.Tests/Volo.Abp.Validation.Tests.csproj index 25d6f165ce..b1f30e3ea5 100644 --- a/framework/test/Volo.Abp.Validation.Tests/Volo.Abp.Validation.Tests.csproj +++ b/framework/test/Volo.Abp.Validation.Tests/Volo.Abp.Validation.Tests.csproj @@ -1,13 +1,9 @@  + + netcoreapp3.0 - Volo.Abp.Validation.Tests - Volo.Abp.Validation.Tests - true - false - false - false diff --git a/framework/test/Volo.Abp.VirtualFileSystem.Tests/Volo.Abp.VirtualFileSystem.Tests.csproj b/framework/test/Volo.Abp.VirtualFileSystem.Tests/Volo.Abp.VirtualFileSystem.Tests.csproj index 7c4313c694..440525bc9e 100644 --- a/framework/test/Volo.Abp.VirtualFileSystem.Tests/Volo.Abp.VirtualFileSystem.Tests.csproj +++ b/framework/test/Volo.Abp.VirtualFileSystem.Tests/Volo.Abp.VirtualFileSystem.Tests.csproj @@ -1,13 +1,9 @@  + + netcoreapp3.0 - Volo.Abp.VirtualFileSystem.Tests - Volo.Abp.VirtualFileSystem.Tests - true - false - false - false