Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
using TALXIS.CLI.Core.Contracts.Dataverse;
using TALXIS.CLI.Core.DependencyInjection;
using TALXIS.CLI.Logging;
using TALXIS.Platform.Metadata.Packaging;

namespace TALXIS.CLI.Features.Environment.Solution;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using DotMake.CommandLine;
using Microsoft.Extensions.Logging;
using TALXIS.CLI.Core;
using TALXIS.CLI.Core.Contracts.Dataverse;
using TALXIS.CLI.Core.DependencyInjection;
using TALXIS.CLI.Logging;
using TALXIS.Platform.Metadata.Packaging;

namespace TALXIS.CLI.Features.Environment.Solution;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using DotMake.CommandLine;
using Microsoft.Extensions.Logging;
using TALXIS.CLI.Core;
using TALXIS.CLI.Core.Contracts.Dataverse;
using TALXIS.CLI.Core.DependencyInjection;
using TALXIS.CLI.Logging;
using TALXIS.Platform.Metadata.Packaging;

namespace TALXIS.CLI.Features.Environment.Solution;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

<ItemGroup>
<PackageReference Include="DotMake.CommandLine" Version="2.6.7" />
<PackageReference Include="TALXIS.Platform.Metadata.Packaging" Version="0.4.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using Microsoft.Extensions.DependencyInjection;
using TALXIS.CLI.Core.Contracts.Dataverse;
using TALXIS.CLI.Platform.Dataverse.Application.Services;
using TALXIS.Platform.Metadata.Packaging;

namespace TALXIS.CLI.Platform.Dataverse.Application.DependencyInjection;

Expand Down Expand Up @@ -34,7 +35,7 @@ public static IServiceCollection AddTxcDataverseApplication(this IServiceCollect
services.AddSingleton<IPublisherService, DataversePublisherService>();
services.AddSingleton<IMetadataIdResolver, DataverseMetadataIdResolver>();
services.AddSingleton<ISolutionLayerMutationService, DataverseSolutionLayerMutationService>();
services.AddSingleton<ISolutionPackagerService, Sdk.SolutionPackagerServiceImpl>();
services.AddSingleton<ISolutionPackagerService, SolutionPackagerService>();
services.AddSingleton<ISolutionExportService, DataverseSolutionExportService>();
return services;
}
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using TALXIS.CLI.Core.Contracts.Dataverse;
using TALXIS.CLI.Platform.Dataverse.Application.Sdk;
using TALXIS.CLI.Platform.Dataverse.Runtime;
using TALXIS.Platform.Metadata.Packaging;

namespace TALXIS.CLI.Platform.Dataverse.Application.Services;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.PowerPlatform.Dataverse.Client" Version="1.2.10" />
<!-- SolutionPackagerLib for solution pack/unpack — the DLL is a managed .NET assembly (cross-platform). -->
<PackageReference Include="Microsoft.PowerApps.CLI.Core.linux-x64" Version="2.6.4" GeneratePathProperty="true" ExcludeAssets="all" />
</ItemGroup>

<ItemGroup>
<Reference Include="SolutionPackagerLib">
<HintPath>$(PkgMicrosoft_PowerApps_CLI_Core_linux-x64)\tools\SolutionPackagerLib.dll</HintPath>
<Private>true</Private>
</Reference>
<PackageReference Include="TALXIS.Platform.Metadata.Packaging" Version="0.4.0" />
</ItemGroup>

<ItemGroup>
Expand Down