I'm trying to test out the new "Dependent Assemblies" feature here and am running into an issue. I'm sure it's because I'm not doing something correctly. I created a new plugin project using the `pac plugin init` command line per the directions. I've installed the "Power Platform Tools" extension in Visual Studio and connected to my organization. However, when I try to create a new "Plug-in Package" in the "Power Platform Tools Explorer" for my organization, I get the following error:
TITLE: Failed to import Plug-in Package
------------------------------
PluginPackage can not contain Microsoft.CrmSdk.CoreAssemblies. Assembly found Microsoft.Xrm.Sdk, Version=9.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 in the package (mscorlib)
------------------------------
BUTTONS:
OK
------------------------------
This message makes sense because I'm sure internally that Dynamics will use whatever version the platform is supposed to and so your package should not include these as dependencies, however, I don't see any way to exclude them. Obviously I need this NuGet package installed in the project so that I can develop the plugins, but upon "Deploying" the package, I imagine there must be some process that is supposed to run to remove this from the generated .nupkg file so that when I go to upload it it no longer has it as a dependency or something. Anyway, any help here would be much appreciated.