Skip to content

Commit

Permalink
chore: rename Arius.Core.New to Arius.Core
Browse files Browse the repository at this point in the history
  • Loading branch information
woutervanranst committed Oct 9, 2024
1 parent 92808a7 commit f42e9ae
Show file tree
Hide file tree
Showing 16 changed files with 6 additions and 9 deletions.
5 changes: 3 additions & 2 deletions src/Arius.Core.Tests/Arius.Core.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
Expand All @@ -16,6 +16,7 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="FluentAssertions" Version="6.12.1" />
<PackageReference Include="JunitXml.TestLogger" Version="4.0.254" />
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.0" />
Expand All @@ -35,7 +36,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Arius.Core.New\Arius.Core.New.csproj" />
<ProjectReference Include="..\Arius.Core\Arius.Core.csproj" />
</ItemGroup>

<ItemGroup>
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -147,15 +147,14 @@ public async Task Handle(ArchiveCommand request, CancellationToken cancellationT
{
// edge case: the PointerFile already exists but the binary is not uploaded (yet) -- eg when re-uploading an entire archive -> check them later
latentPointers.Add(pwh.PointerFile!); // A31
// TODO LOG
// TODO MEDIATR
}

switch (r)
{
case UploadStatus.NotStarted:
// 2.1 Does not yet exist remote and not yet being uploaded --> upload
logger.LogInformation("Binary for {relativeName} does not exist remotely. Starting upload.", pwh.RelativeName);
await mediator.Publish(new BinaryFileToUploadNotification(request, pwh), cancellationToken);

await binariesToUpload.Writer.WriteAsync(pwh, cancellationToken); // A32

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 0 additions & 3 deletions src/Arius.UI/Arius.UI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,5 @@
<PackageReference Include="WouterVanRanst.Arius.Core" Version="*" />
<PackageReference Include="WouterVanRanst.Utils" Version="*" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Arius.Core.New\Arius.Core.New.csproj" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion src/Arius.Web.Application/Arius.Web.Application.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\Arius.Core.New\Arius.Core.New.csproj" />
<ProjectReference Include="..\Arius.Core\Arius.Core.csproj" />
<ProjectReference Include="..\Arius.Web.Infrastructure\Arius.Web.Infrastructure.csproj" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/Arius.sln
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Arius.Web.Domain", "Arius.W
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Arius.ArchUnit", "Arius.ArchUnit\Arius.ArchUnit.csproj", "{326398FC-D58E-4217-A12E-2E4DD3EB365D}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Arius.Core.New", "Arius.Core.New\Arius.Core.New.csproj", "{5021E374-72AC-41B3-BE7E-102EC52E5478}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Arius.Core", "Arius.Core\Arius.Core.csproj", "{5021E374-72AC-41B3-BE7E-102EC52E5478}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Arius.Core.Tests", "Arius.Core.Tests\Arius.Core.Tests.csproj", "{66A0ABA5-47A5-48D0-A193-60FC58726E39}"
EndProject
Expand Down

0 comments on commit f42e9ae

Please sign in to comment.