Skip to content
This repository was archived by the owner on Nov 8, 2020. It is now read-only.

Commit 7660379

Browse files
author
uless
committed
修复项目名称和文件夹名称不匹配
1 parent d8b81f2 commit 7660379

17 files changed

Lines changed: 6 additions & 8 deletions

Ray.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ray.Storage.Mongo", "src\Ra
1313
EndProject
1414
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ray.DistributedTx", "src\Ray.DistributedTx\Ray.DistributedTx.csproj", "{68DBEB35-2187-495E-A2FD-37F6F35494D7}"
1515
EndProject
16-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ray.Storage.SQLCore", "src\Ray.Storage.SQLCommon\Ray.Storage.SQLCore.csproj", "{FC5817E5-1486-41A6-8170-CE4DA970159A}"
16+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ray.Storage.SQLCore", "src\Ray.Storage.SQLCore\Ray.Storage.SQLCore.csproj", "{FC5817E5-1486-41A6-8170-CE4DA970159A}"
1717
EndProject
1818
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{93DE27BC-DBA4-4FA9-AA54-495290961438}"
1919
EndProject

examples/Ray.IGrains/Ray.IGrains.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
1212
</PackageReference>
1313
<PackageReference Include="protobuf-net" Version="2.4.0" />
14-
<PackageReference Include="SpanJson" Version="2.0.7" />
14+
<PackageReference Include="SpanJson" Version="2.0.8" />
1515
</ItemGroup>
1616

1717
<ItemGroup>

src/Ray.Core/Ray.Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
</PackageReference>
2222
<PackageReference Include="Microsoft.Orleans.Core" Version="2.3.0" />
2323
<PackageReference Include="Microsoft.Orleans.Runtime.Abstractions" Version="2.3.0" />
24-
<PackageReference Include="SpanJson" Version="2.0.7" />
24+
<PackageReference Include="SpanJson" Version="2.0.8" />
2525
<PackageReference Include="System.Buffers" Version="4.5.0" />
2626
<PackageReference Include="System.Threading.Channels" Version="4.5.0" />
2727
<PackageReference Include="System.Threading.Tasks.Dataflow" Version="4.9.0" />

src/Ray.Core/Snapshot/SnapshotBase.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
using System.Collections.Generic;
2-
3-
namespace Ray.Core.Snapshot
1+
namespace Ray.Core.Snapshot
42
{
53
public class SnapshotBase<PrimaryKey> : ISnapshotBase<PrimaryKey>, ICloneable<SnapshotBase<PrimaryKey>>
64
{

src/Ray.PostgreSQL/Ray.Storage.PostgreSQL.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<ItemGroup>
2121
<ProjectReference Include="..\Ray.Core\Ray.Core.csproj" />
2222
<ProjectReference Include="..\Ray.DistributedTx\Ray.DistributedTx.csproj" />
23-
<ProjectReference Include="..\Ray.Storage.SQLCommon\Ray.Storage.SQLCore.csproj" />
23+
<ProjectReference Include="..\Ray.Storage.SQLCore\Ray.Storage.SQLCore.csproj" />
2424
</ItemGroup>
2525

2626
</Project>

src/Ray.Storage.MySQL/Ray.Storage.MySQL.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
<ItemGroup>
2020
<ProjectReference Include="..\Ray.Core\Ray.Core.csproj" />
2121
<ProjectReference Include="..\Ray.DistributedTx\Ray.DistributedTx.csproj" />
22-
<ProjectReference Include="..\Ray.Storage.SQLCommon\Ray.Storage.SQLCore.csproj" />
22+
<ProjectReference Include="..\Ray.Storage.SQLCore\Ray.Storage.SQLCore.csproj" />
2323
</ItemGroup>
2424
</Project>

src/Ray.Storage.SQLCommon/Configuration/IntegerKeyOptions.cs renamed to src/Ray.Storage.SQLCore/Configuration/IntegerKeyOptions.cs

File renamed without changes.

src/Ray.Storage.SQLCommon/Configuration/ObserverStorageOptions.cs renamed to src/Ray.Storage.SQLCore/Configuration/ObserverStorageOptions.cs

File renamed without changes.

src/Ray.Storage.SQLCommon/Configuration/SQLConfigureBuilder.cs renamed to src/Ray.Storage.SQLCore/Configuration/SQLConfigureBuilder.cs

File renamed without changes.

src/Ray.Storage.SQLCommon/Configuration/StorageOptions.cs renamed to src/Ray.Storage.SQLCore/Configuration/StorageOptions.cs

File renamed without changes.

0 commit comments

Comments
 (0)