Oualid Boutemine

Results 8 comments of Oualid Boutemine

I am on version 0.2.17-alpha and I can't see any implementation of the IOrganizationService on OrganizationServiceContext. I will try FakeXrmEasy. Thanks

I have some custom queries on the IQueryable Returned by this method and I would love to replace it with a custom IQueryable implementation containing predefined entries. Something like this...

Having the same issue. The project uses a secrets.json and a custom startup class that loads the secrets.json file.

Having the same issue here (Publishing as trimmed, no AOT).

I am currently using the System.Runtime.InteropServices.RegistrationServices class to automate the installation from the installer/debug project without any issues. ``` private readonly RegistrationServices _registrationServices = new(); // Registration if (!_registrationServices.RegisterAssembly(GetType().Assembly, AssemblyRegistrationFlags.SetCodeBase))...

Here is a full working example ``` [RunInstaller(true)] public partial class RegAsmInstaller : Installer { private readonly RegistrationServices _registrationServices; public RegAsmInstaller() { InitializeComponent(); _registrationServices = new RegistrationServices(); } [SecurityPermission(SecurityAction.Demand)] public...