Update nuget packages
This commit is contained in:
Родитель
584175d242
Коммит
6b1bd73925
|
@ -18,8 +18,8 @@
|
|||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Abp.AutoMapper" Version="7.1.0" />
|
||||
<PackageReference Include="Abp.ZeroCore.EntityFrameworkCore" Version="7.1.0" />
|
||||
<PackageReference Include="Abp.AutoMapper" Version="7.3.0" />
|
||||
<PackageReference Include="Abp.ZeroCore.EntityFrameworkCore" Version="7.3.0" />
|
||||
<PackageReference Include="Castle.Windsor.MsDependencyInjection" Version="3.4.0" />
|
||||
</ItemGroup>
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ namespace AbpCompanyName.AbpProjectName
|
|||
/// Gets current version of the application.
|
||||
/// It's also shown in the web page.
|
||||
/// </summary>
|
||||
public const string Version = "7.1.0.0";
|
||||
public const string Version = "7.3.0.0";
|
||||
|
||||
/// <summary>
|
||||
/// Gets release (last build) date of the application.
|
||||
|
|
1954
aspnet-core/src/AbpCompanyName.AbpProjectName.EntityFrameworkCore/Migrations/20220622074714_Upgrade_To_ABP_7.3.Designer.cs
сгенерированный
Normal file
1954
aspnet-core/src/AbpCompanyName.AbpProjectName.EntityFrameworkCore/Migrations/20220622074714_Upgrade_To_ABP_7.3.Designer.cs
сгенерированный
Normal file
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -0,0 +1,35 @@
|
|||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace AbpCompanyName.AbpProjectName.Migrations
|
||||
{
|
||||
public partial class Upgrade_To_ABP_73 : Migration
|
||||
{
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.AddColumn<string>(
|
||||
name: "TargetNotifiers",
|
||||
table: "AbpUserNotifications",
|
||||
type: "nvarchar(max)",
|
||||
nullable: true);
|
||||
|
||||
migrationBuilder.AddColumn<string>(
|
||||
name: "TargetNotifiers",
|
||||
table: "AbpNotifications",
|
||||
type: "nvarchar(max)",
|
||||
nullable: true);
|
||||
}
|
||||
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropColumn(
|
||||
name: "TargetNotifiers",
|
||||
table: "AbpUserNotifications");
|
||||
|
||||
migrationBuilder.DropColumn(
|
||||
name: "TargetNotifiers",
|
||||
table: "AbpNotifications");
|
||||
}
|
||||
}
|
||||
}
|
|
@ -6,6 +6,8 @@ using Microsoft.EntityFrameworkCore.Infrastructure;
|
|||
using Microsoft.EntityFrameworkCore.Metadata;
|
||||
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace AbpCompanyName.AbpProjectName.Migrations
|
||||
{
|
||||
[DbContext(typeof(AbpProjectNameDbContext))]
|
||||
|
@ -15,16 +17,18 @@ namespace AbpCompanyName.AbpProjectName.Migrations
|
|||
{
|
||||
#pragma warning disable 612, 618
|
||||
modelBuilder
|
||||
.UseIdentityColumns()
|
||||
.HasAnnotation("Relational:MaxIdentifierLength", 128)
|
||||
.HasAnnotation("ProductVersion", "5.0.3");
|
||||
.HasAnnotation("ProductVersion", "6.0.4")
|
||||
.HasAnnotation("Relational:MaxIdentifierLength", 128);
|
||||
|
||||
SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder, 1L, 1);
|
||||
|
||||
modelBuilder.Entity("Abp.Application.Editions.Edition", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int")
|
||||
.UseIdentityColumn();
|
||||
.HasColumnType("int");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"), 1L, 1);
|
||||
|
||||
b.Property<DateTime>("CreationTime")
|
||||
.HasColumnType("datetime2");
|
||||
|
@ -66,8 +70,9 @@ namespace AbpCompanyName.AbpProjectName.Migrations
|
|||
{
|
||||
b.Property<long>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("bigint")
|
||||
.UseIdentityColumn();
|
||||
.HasColumnType("bigint");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<long>("Id"), 1L, 1);
|
||||
|
||||
b.Property<DateTime>("CreationTime")
|
||||
.HasColumnType("datetime2");
|
||||
|
@ -103,8 +108,9 @@ namespace AbpCompanyName.AbpProjectName.Migrations
|
|||
{
|
||||
b.Property<long>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("bigint")
|
||||
.UseIdentityColumn();
|
||||
.HasColumnType("bigint");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<long>("Id"), 1L, 1);
|
||||
|
||||
b.Property<string>("BrowserInfo")
|
||||
.HasMaxLength(512)
|
||||
|
@ -178,8 +184,9 @@ namespace AbpCompanyName.AbpProjectName.Migrations
|
|||
{
|
||||
b.Property<long>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("bigint")
|
||||
.UseIdentityColumn();
|
||||
.HasColumnType("bigint");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<long>("Id"), 1L, 1);
|
||||
|
||||
b.Property<DateTime>("CreationTime")
|
||||
.HasColumnType("datetime2");
|
||||
|
@ -215,8 +222,9 @@ namespace AbpCompanyName.AbpProjectName.Migrations
|
|||
{
|
||||
b.Property<long>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("bigint")
|
||||
.UseIdentityColumn();
|
||||
.HasColumnType("bigint");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<long>("Id"), 1L, 1);
|
||||
|
||||
b.Property<string>("ClaimType")
|
||||
.HasMaxLength(256)
|
||||
|
@ -250,8 +258,9 @@ namespace AbpCompanyName.AbpProjectName.Migrations
|
|||
{
|
||||
b.Property<long>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("bigint")
|
||||
.UseIdentityColumn();
|
||||
.HasColumnType("bigint");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<long>("Id"), 1L, 1);
|
||||
|
||||
b.Property<DateTime>("CreationTime")
|
||||
.HasColumnType("datetime2");
|
||||
|
@ -310,8 +319,9 @@ namespace AbpCompanyName.AbpProjectName.Migrations
|
|||
{
|
||||
b.Property<long>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("bigint")
|
||||
.UseIdentityColumn();
|
||||
.HasColumnType("bigint");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<long>("Id"), 1L, 1);
|
||||
|
||||
b.Property<string>("ClaimType")
|
||||
.HasMaxLength(256)
|
||||
|
@ -345,8 +355,9 @@ namespace AbpCompanyName.AbpProjectName.Migrations
|
|||
{
|
||||
b.Property<long>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("bigint")
|
||||
.UseIdentityColumn();
|
||||
.HasColumnType("bigint");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<long>("Id"), 1L, 1);
|
||||
|
||||
b.Property<string>("LoginProvider")
|
||||
.IsRequired()
|
||||
|
@ -383,8 +394,9 @@ namespace AbpCompanyName.AbpProjectName.Migrations
|
|||
{
|
||||
b.Property<long>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("bigint")
|
||||
.UseIdentityColumn();
|
||||
.HasColumnType("bigint");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<long>("Id"), 1L, 1);
|
||||
|
||||
b.Property<string>("BrowserInfo")
|
||||
.HasMaxLength(512)
|
||||
|
@ -431,8 +443,9 @@ namespace AbpCompanyName.AbpProjectName.Migrations
|
|||
{
|
||||
b.Property<long>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("bigint")
|
||||
.UseIdentityColumn();
|
||||
.HasColumnType("bigint");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<long>("Id"), 1L, 1);
|
||||
|
||||
b.Property<DateTime>("CreationTime")
|
||||
.HasColumnType("datetime2");
|
||||
|
@ -465,8 +478,9 @@ namespace AbpCompanyName.AbpProjectName.Migrations
|
|||
{
|
||||
b.Property<long>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("bigint")
|
||||
.UseIdentityColumn();
|
||||
.HasColumnType("bigint");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<long>("Id"), 1L, 1);
|
||||
|
||||
b.Property<DateTime>("CreationTime")
|
||||
.HasColumnType("datetime2");
|
||||
|
@ -498,8 +512,9 @@ namespace AbpCompanyName.AbpProjectName.Migrations
|
|||
{
|
||||
b.Property<long>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("bigint")
|
||||
.UseIdentityColumn();
|
||||
.HasColumnType("bigint");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<long>("Id"), 1L, 1);
|
||||
|
||||
b.Property<DateTime?>("ExpireDate")
|
||||
.HasColumnType("datetime2");
|
||||
|
@ -535,8 +550,9 @@ namespace AbpCompanyName.AbpProjectName.Migrations
|
|||
{
|
||||
b.Property<long>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("bigint")
|
||||
.UseIdentityColumn();
|
||||
.HasColumnType("bigint");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<long>("Id"), 1L, 1);
|
||||
|
||||
b.Property<DateTime>("CreationTime")
|
||||
.HasColumnType("datetime2");
|
||||
|
@ -580,8 +596,9 @@ namespace AbpCompanyName.AbpProjectName.Migrations
|
|||
{
|
||||
b.Property<long>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("bigint")
|
||||
.UseIdentityColumn();
|
||||
.HasColumnType("bigint");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<long>("Id"), 1L, 1);
|
||||
|
||||
b.Property<DateTime>("CreationTime")
|
||||
.HasColumnType("datetime2");
|
||||
|
@ -623,8 +640,9 @@ namespace AbpCompanyName.AbpProjectName.Migrations
|
|||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int")
|
||||
.UseIdentityColumn();
|
||||
.HasColumnType("int");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"), 1L, 1);
|
||||
|
||||
b.Property<int>("DynamicPropertyId")
|
||||
.HasColumnType("int");
|
||||
|
@ -651,8 +669,9 @@ namespace AbpCompanyName.AbpProjectName.Migrations
|
|||
{
|
||||
b.Property<long>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("bigint")
|
||||
.UseIdentityColumn();
|
||||
.HasColumnType("bigint");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<long>("Id"), 1L, 1);
|
||||
|
||||
b.Property<int>("DynamicEntityPropertyId")
|
||||
.HasColumnType("int");
|
||||
|
@ -678,8 +697,9 @@ namespace AbpCompanyName.AbpProjectName.Migrations
|
|||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int")
|
||||
.UseIdentityColumn();
|
||||
.HasColumnType("int");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"), 1L, 1);
|
||||
|
||||
b.Property<string>("DisplayName")
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
@ -710,8 +730,9 @@ namespace AbpCompanyName.AbpProjectName.Migrations
|
|||
{
|
||||
b.Property<long>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("bigint")
|
||||
.UseIdentityColumn();
|
||||
.HasColumnType("bigint");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<long>("Id"), 1L, 1);
|
||||
|
||||
b.Property<int>("DynamicPropertyId")
|
||||
.HasColumnType("int");
|
||||
|
@ -734,8 +755,9 @@ namespace AbpCompanyName.AbpProjectName.Migrations
|
|||
{
|
||||
b.Property<long>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("bigint")
|
||||
.UseIdentityColumn();
|
||||
.HasColumnType("bigint");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<long>("Id"), 1L, 1);
|
||||
|
||||
b.Property<DateTime>("ChangeTime")
|
||||
.HasColumnType("datetime2");
|
||||
|
@ -770,8 +792,9 @@ namespace AbpCompanyName.AbpProjectName.Migrations
|
|||
{
|
||||
b.Property<long>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("bigint")
|
||||
.UseIdentityColumn();
|
||||
.HasColumnType("bigint");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<long>("Id"), 1L, 1);
|
||||
|
||||
b.Property<string>("BrowserInfo")
|
||||
.HasMaxLength(512)
|
||||
|
@ -822,8 +845,9 @@ namespace AbpCompanyName.AbpProjectName.Migrations
|
|||
{
|
||||
b.Property<long>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("bigint")
|
||||
.UseIdentityColumn();
|
||||
.HasColumnType("bigint");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<long>("Id"), 1L, 1);
|
||||
|
||||
b.Property<long>("EntityChangeId")
|
||||
.HasColumnType("bigint");
|
||||
|
@ -864,8 +888,9 @@ namespace AbpCompanyName.AbpProjectName.Migrations
|
|||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int")
|
||||
.UseIdentityColumn();
|
||||
.HasColumnType("int");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"), 1L, 1);
|
||||
|
||||
b.Property<DateTime>("CreationTime")
|
||||
.HasColumnType("datetime2");
|
||||
|
@ -919,8 +944,9 @@ namespace AbpCompanyName.AbpProjectName.Migrations
|
|||
{
|
||||
b.Property<long>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("bigint")
|
||||
.UseIdentityColumn();
|
||||
.HasColumnType("bigint");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<long>("Id"), 1L, 1);
|
||||
|
||||
b.Property<DateTime>("CreationTime")
|
||||
.HasColumnType("datetime2");
|
||||
|
@ -1008,6 +1034,9 @@ namespace AbpCompanyName.AbpProjectName.Migrations
|
|||
b.Property<byte>("Severity")
|
||||
.HasColumnType("tinyint");
|
||||
|
||||
b.Property<string>("TargetNotifiers")
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<string>("TenantIds")
|
||||
.HasMaxLength(131072)
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
@ -1126,6 +1155,9 @@ namespace AbpCompanyName.AbpProjectName.Migrations
|
|||
b.Property<int>("State")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<string>("TargetNotifiers")
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<int?>("TenantId")
|
||||
.HasColumnType("int");
|
||||
|
||||
|
@ -1146,8 +1178,9 @@ namespace AbpCompanyName.AbpProjectName.Migrations
|
|||
{
|
||||
b.Property<long>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("bigint")
|
||||
.UseIdentityColumn();
|
||||
.HasColumnType("bigint");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<long>("Id"), 1L, 1);
|
||||
|
||||
b.Property<string>("Code")
|
||||
.IsRequired()
|
||||
|
@ -1199,8 +1232,9 @@ namespace AbpCompanyName.AbpProjectName.Migrations
|
|||
{
|
||||
b.Property<long>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("bigint")
|
||||
.UseIdentityColumn();
|
||||
.HasColumnType("bigint");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<long>("Id"), 1L, 1);
|
||||
|
||||
b.Property<DateTime>("CreationTime")
|
||||
.HasColumnType("datetime2");
|
||||
|
@ -1334,8 +1368,9 @@ namespace AbpCompanyName.AbpProjectName.Migrations
|
|||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int")
|
||||
.UseIdentityColumn();
|
||||
.HasColumnType("int");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"), 1L, 1);
|
||||
|
||||
b.Property<string>("ConcurrencyStamp")
|
||||
.IsConcurrencyToken()
|
||||
|
@ -1408,8 +1443,9 @@ namespace AbpCompanyName.AbpProjectName.Migrations
|
|||
{
|
||||
b.Property<long>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("bigint")
|
||||
.UseIdentityColumn();
|
||||
.HasColumnType("bigint");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<long>("Id"), 1L, 1);
|
||||
|
||||
b.Property<int>("AccessFailedCount")
|
||||
.HasColumnType("int");
|
||||
|
@ -1535,8 +1571,9 @@ namespace AbpCompanyName.AbpProjectName.Migrations
|
|||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("int")
|
||||
.UseIdentityColumn();
|
||||
.HasColumnType("int");
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"), 1L, 1);
|
||||
|
||||
b.Property<string>("ConnectionString")
|
||||
.HasMaxLength(1024)
|
||||
|
@ -1608,17 +1645,6 @@ namespace AbpCompanyName.AbpProjectName.Migrations
|
|||
b.HasDiscriminator().HasValue("EditionFeatureSetting");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("Abp.MultiTenancy.TenantFeatureSetting", b =>
|
||||
{
|
||||
b.HasBaseType("Abp.Application.Features.FeatureSetting");
|
||||
|
||||
b.HasIndex("TenantId", "Name");
|
||||
|
||||
b.ToTable("AbpFeatures");
|
||||
|
||||
b.HasDiscriminator().HasValue("TenantFeatureSetting");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("Abp.Authorization.Roles.RolePermissionSetting", b =>
|
||||
{
|
||||
b.HasBaseType("Abp.Authorization.PermissionSetting");
|
||||
|
@ -1647,6 +1673,17 @@ namespace AbpCompanyName.AbpProjectName.Migrations
|
|||
b.HasDiscriminator().HasValue("UserPermissionSetting");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("Abp.MultiTenancy.TenantFeatureSetting", b =>
|
||||
{
|
||||
b.HasBaseType("Abp.Application.Features.FeatureSetting");
|
||||
|
||||
b.HasIndex("TenantId", "Name");
|
||||
|
||||
b.ToTable("AbpFeatures");
|
||||
|
||||
b.HasDiscriminator().HasValue("TenantFeatureSetting");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("Abp.Authorization.Roles.RoleClaim", b =>
|
||||
{
|
||||
b.HasOne("AbpCompanyName.AbpProjectName.Authorization.Roles.Role", null)
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Abp.Castle.Log4Net" Version="7.1.0" />
|
||||
<PackageReference Include="Abp.Castle.Log4Net" Version="7.3.0" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
|
|
@ -28,9 +28,9 @@
|
|||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.4" />
|
||||
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.3.1" />
|
||||
<PackageReference Include="Abp.AspNetCore" Version="7.1.0" />
|
||||
<PackageReference Include="Abp.ZeroCore" Version="7.1.0" />
|
||||
<PackageReference Include="Abp.AspNetCore.SignalR" Version="7.1.0" />
|
||||
<PackageReference Include="Abp.AspNetCore" Version="7.3.0" />
|
||||
<PackageReference Include="Abp.ZeroCore" Version="7.3.0" />
|
||||
<PackageReference Include="Abp.AspNetCore.SignalR" Version="7.3.0" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Abp.Castle.Log4Net" Version="7.1.0" />
|
||||
<PackageReference Include="Abp.Castle.Log4Net" Version="7.3.0" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.4">
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||
|
|
|
@ -42,9 +42,9 @@
|
|||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||
</PackageReference>
|
||||
<PackageReference Include="PaulMiami.AspNetCore.Mvc.Recaptcha" Version="1.2.2" />
|
||||
<PackageReference Include="Abp.HangFire" Version="7.1.0" />
|
||||
<PackageReference Include="Abp.RedisCache" Version="7.1.0" />
|
||||
<PackageReference Include="Abp.Castle.Log4Net" Version="7.1.0" />
|
||||
<PackageReference Include="Abp.HangFire" Version="7.3.0" />
|
||||
<PackageReference Include="Abp.RedisCache" Version="7.3.0" />
|
||||
<PackageReference Include="Abp.Castle.Log4Net" Version="7.3.0" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
|
|
@ -182,7 +182,7 @@
|
|||
"destination": "wwwroot/libs/jquery-validate"
|
||||
},
|
||||
{
|
||||
"library": "push.js@1.0.9",
|
||||
"library": "push.js@1.0.12",
|
||||
"destination": "wwwroot/libs/push.js"
|
||||
}
|
||||
//other libs end
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
<PrivateAssets>all</PrivateAssets>
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
||||
</PackageReference>
|
||||
<PackageReference Include="Abp.TestBase" Version="7.1.0" />
|
||||
<PackageReference Include="Abp.TestBase" Version="7.3.0" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="6.0.4" />
|
||||
<PackageReference Include="Castle.Core" Version="4.4.1" />
|
||||
</ItemGroup>
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
||||
</PackageReference>
|
||||
<PackageReference Include="AngleSharp" Version="0.16.1" />
|
||||
<PackageReference Include="Abp.AspNetCore.TestBase" Version="7.1.0" />
|
||||
<PackageReference Include="Abp.AspNetCore.TestBase" Version="7.3.0" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
Загрузка…
Ссылка в новой задаче