Skip to content

Commit

Permalink
简化项目名
Browse files Browse the repository at this point in the history
  • Loading branch information
leon-o committed Sep 14, 2023
1 parent 5e1f25a commit 9dce89c
Show file tree
Hide file tree
Showing 37 changed files with 688 additions and 573 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -360,4 +360,6 @@ MigrationBackup/
.ionide/

# Fody - auto-generated XML schema
FodyWeavers.xsd
FodyWeavers.xsd

/.idea/
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using System;
using System.Text;
using Hive.DataSynchronizer.Shared.Attributes;
using Hive.DataSynchronizer.Shared.ObjectSyncPacket;
using Hive.DataSync.Shared.Attributes;
using Hive.DataSync.Shared.ObjectSyncPacket;
using Hive.Framework.Shared;
using Hive.Framework.Shared.Helpers;

namespace Hive.DataSynchronizer.SourceGenerator.Tests
namespace Hive.DataSync.SourceGenerator.Tests
{
public class GuidSyncPacket : AbstractObjectSyncPacket<Guid>
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<LangVersion>preview</LangVersion>
<RootNamespace>DataSync.SourceGenerator.Tests</RootNamespace>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\..\DataSynchronizer\Hive.DataSynchronizer.Abstraction\Hive.DataSynchronizer.Abstraction.csproj" />
<ProjectReference Include="..\..\DataSynchronizer\Hive.DataSynchronizer.SourceGenerator\Hive.DataSynchronizer.SourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
<ProjectReference Include="..\..\DataSynchronizer\Hive.DataSynchronizer\Hive.DataSynchronizer.csproj" />
<ProjectReference Include="..\..\DataSynchronizer\Hive.DataSync.Abstraction\Hive.DataSync.Abstraction.csproj" />
<ProjectReference Include="..\..\DataSynchronizer\Hive.DataSync.SourceGen\Hive.DataSync.SourceGen.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
<ProjectReference Include="..\..\DataSynchronizer\Hive.DataSync\Hive.DataSync.csproj" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Hive.DataSynchronizer.Shared.Attributes;
using Hive.DataSync.Shared.Attributes;

namespace Hive.Framework.Networking.Tests.GatewayServer;

Expand Down
Loading

0 comments on commit 9dce89c

Please sign in to comment.