Just started getting this error which is preventing me from running my app through Radzen Ide. Builds and runs in VS still...
dotnet: C:\Program Files\dotnet\sdk\6.0.202\Microsoft.Common.CurrentVersion.targets(2926,5): error : MSB4803: The task "ResolveComReference" is not supported on the .NET Core version of MSBuild. Please use the .NET Framework version of MSBuild. See https://aka.ms/msbuild/MSB4803 for further details. [C:\Users\Fellblade\Desktop\COMPASS\client\Compass.Client.csproj]
I have no com references. I have no idea why Radzen is throwing this.
You have probably changed something to your app - maybe added a new reference - which is causing this error. The problem isn't caused by or related to Radzen.
you are right. a dependency i added included Office interops which Radzen keeps deleting at load. is there a way to prevent radzen from removing references from the vs project? excluding custom method pages does not do this.
The code generation ignore list.
@korchev, The ignore list will stop the references from being removed from the ignored file, but the reference to the project still gets removed. Same happens with NuGet packages I install. Every time I build with Radzen, any references or NuGet packages I have added since the last build are removed. Is there a specific file that stores these details that I can ignore without screwing with the rest of my app and pages?
I have added my .csproj file to the ignore list which includes the NuGet package references, but Radzen still cant find it when I build. For instance, I need the Powershell SDK in my app, and although the package reference remains in my project, and the assembly reference remains in my page, I still get the radzen error:

Ok, I manually added the reference to the cproj which seems to have resolved the error.
<PackageReference Include="System.Management.Automation" Version="7.2.2" />
System.Management.Automation is part of the powershell SDK but for some reason it is not recognized in the assembly reference. Thanks for the help!