Skip to content

Commit 07928d9

Browse files
committed
升级发布6.7.0.3
1 parent 734e075 commit 07928d9

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

nuget-publish.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
:start
22
::定义版本
3-
set SHARDINGCORE=6.7.0.2
3+
set SHARDINGCORE=6.7.0.3
44

55
::删除所有bin与obj下的文件
66
@echo off

samples/Sample.BulkConsole/Sample.BulkConsole.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<TargetFramework>net6.0</TargetFramework>
66
</PropertyGroup>
77
<ItemGroup>
88
<PackageReference Include="EFCore.BulkExtensions" Version="6.5.6" />
9-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.8" />
9+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.10" />
1010
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="6.0.0" />
1111
</ItemGroup>
1212
<ItemGroup>

test/ShardingCore.Test2x/Domain/Maps/SysUserModMap.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class SysUserModMap:IEntityTypeConfiguration<SysUserMod>
1515
public void Configure(EntityTypeBuilder<SysUserMod> builder)
1616
{
1717
builder.HasKey(o => o.Id);
18-
builder.Property(o => o.Id).IsRequired().HasMaxLength(128);
18+
builder.Property(o => o.Id).ValueGeneratedNever().IsRequired().HasMaxLength(128);
1919
builder.Property(o => o.Name).HasMaxLength(128);
2020
builder.ToTable(nameof(SysUserMod));
2121
}

0 commit comments

Comments
 (0)