Home > Software design >  Error signing output with public key from file 'KEY' -- File not found
Error signing output with public key from file 'KEY' -- File not found

Time:12-08

I'm trying to create assembly signing in mac (version: 6.0) but I'm unable to build it successfully !

Please let me know how to fix this error.

error display image

CodePudding user response:

You cannot use package "Microsoft.CrmSdk.CoreAssemblies" in a .NET 6.0 project. It is intended for .NET Framework 4.x projects only.

For .NET 6.0 projects package "Microsoft.PowerPlatform.Dataverse.Client" is available.

CodePudding user response:

as far as I know assemblies (for Plugins or Custom Workflow Activities) requires .NET Framework (4.6.2 usually) and the required signing can be done only on Windows machines.

  • Related