Office.js のプレビュー機能から、作成した既存の Excel アドインに Excel のカスタム関数を取り込もうとしています。Excel アドインは Angular を使用しています。現在、両方のプロジェクトはフォルダー内で分離されており、個別に実行するとうまく機能します。カスタム関数プロジェクトのファイルを既存のアドイン プロジェクトにコピーして、2 つを結合しようとしました。GitHub ソリューションで推奨されているものとまったく同じアーキテクチャに従いました: OfficeDev/Excel-Custom-Functions
私が苦労している唯一の部分は、マニフェスト ファイルです。ドキュメントによると、カスタム関数を定義するノード< ExtensionPoint />は、マニフェスト ファイルのノード< AllFormFactors /> ( AllFormFactors ドキュメント)内に配置する必要があります。タスクペイン (私が持っているもの) を介して読み込まれる通常のアドインの場合、ノード< ExtensionPoint />はノード< DesktopFormFactor />内に読み込まれます( DesktopFormFactor ドキュメント)。
私が持っているマニフェスト ファイルで、関数の定義を含むノード< AllFormFactors />をコピーし、ノード < DesktopFormFactor / >の前に配置しました。manifest-file-validator を使用して、マニフェスト ファイルが有効であることを確認しました。また、マニフェスト ファイルの最新バージョンを共有フォルダーの場所にコピーし、キャッシュをクリアして、最新バージョンが読み込まれたことを確認しました。
ただし、これを行っても、カスタム関数を読み込めないというエラーが表示され、どこに問題があるのか わかりません。オンラインで答えを見つけることができなかったので、助けていただければ幸いです。ありがとう!
参考までに、マニフェスト ファイルに含まれるコードを次に示します。
<?xml version="1.0" encoding="UTF-8"?>
<OfficeApp
xmlns="http://schemas.microsoft.com/office/appforoffice/1.1"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:bt="http://schemas.microsoft.com/office/officeappbasictypes/1.0"
xmlns:ov="http://schemas.microsoft.com/office/taskpaneappversionoverrides"
xsi:type="TaskPaneApp">
<Id>08807c12-4cd2-4e47-927e-bce93ebeb036</Id>
<Version>1.0.0.0</Version>
<ProviderName>David Rubino</ProviderName>
<DefaultLocale>en-US</DefaultLocale>
<DisplayName DefaultValue="Angular Add-in" />
<Description DefaultValue="Testing an add-in with Angular" />
<IconUrl DefaultValue="https://localhost:3000/assets/images/data-builder-80.png" />
<HighResolutionIconUrl DefaultValue="https://localhost:3000/assets/images/data-builder-80.png"/>
<SupportUrl DefaultValue="http://contoso.com/support" />
<AppDomains>
<AppDomain>https://login.microsoftonline.com</AppDomain>
</AppDomains>
<Hosts>
<Host Name="Workbook" />
</Hosts>
<DefaultSettings>
<SourceLocation DefaultValue="https://localhost:3000/index.html" />
</DefaultSettings>
<Permissions>ReadWriteDocument</Permissions>
<VersionOverrides xmlns="http://schemas.microsoft.com/office/taskpaneappversionoverrides" xsi:type="VersionOverridesV1_0">
<Hosts>
<Host xsi:type="Workbook">
<AllFormFactors>
<ExtensionPoint xsi:type="CustomFunctions">
<Script>
<SourceLocation resid="JS-URL" />
</Script>
<Page>
<SourceLocation resid="HTML-URL"/>
</Page>
<Metadata>
<SourceLocation resid="JSON-URL" />
</Metadata>
<Namespace resid="namespace" />
</ExtensionPoint>
</AllFormFactors>
<DesktopFormFactor>
<GetStarted>
<Title resid="Contoso.GetStarted.Title"/>
<Description resid="Contoso.GetStarted.Description"/>
<LearnMoreUrl resid="Contoso.GetStarted.LearnMoreUrl"/>
</GetStarted>
<FunctionFile resid="Contoso.DesktopFunctionFile.Url" />
<ExtensionPoint xsi:type="PrimaryCommandSurface">
<CustomTab id="TabNavigator">
<Group id="Contoso.Group1">
<Label resid="Contoso.Group1Label" />
<Icon>
<bt:Image size="16" resid="Navigator.data_builder_16x16" />
<bt:Image size="32" resid="Navigator.data_builder_32x32" />
<bt:Image size="80" resid="Navigator.data_builder_80x80" />
</Icon>
<Control xsi:type="Button" id="Navigator.Login">
<Label resid="Navigator.Login.Label" />
<Supertip>
<Title resid="Navigator.Login.Label" />
<Description resid="Navigator.Login.Tooltip" />
</Supertip>
<Icon>
<bt:Image size="16" resid="Navigator.login_16x16" />
<bt:Image size="32" resid="Navigator.login_32x32" />
<bt:Image size="80" resid="Navigator.login_80x80" />
</Icon>
<Action xsi:type="ShowTaskpane">
<TaskpaneId>ButtonId1</TaskpaneId>
<SourceLocation resid="Contoso.Taskpane.Url" />
</Action>
</Control>
<Control xsi:type="Button" id="Navigator.Refresh">
<Label resid="Navigator.Refresh.Label" />
<Supertip>
<Title resid="Navigator.Refresh.Label" />
<Description resid="Navigator.Refresh.Tooltip" />
</Supertip>
<Icon>
<bt:Image size="16" resid="Navigator.refresh_16x16" />
<bt:Image size="32" resid="Navigator.refresh_32x32" />
<bt:Image size="80" resid="Navigator.refresh_80x80" />
</Icon>
<Action xsi:type="ShowTaskpane">
<TaskpaneId>ButtonId1</TaskpaneId>
<SourceLocation resid="Contoso.Taskpane.Url" />
</Action>
</Control>
<Control xsi:type="Button" id="Contoso.TaskpaneButton">
<Label resid="Contoso.TaskpaneButton.Label" />
<Supertip>
<Title resid="Contoso.TaskpaneButton.Label" />
<Description resid="Contoso.TaskpaneButton.Tooltip" />
</Supertip>
<Icon>
<bt:Image size="16" resid="Navigator.data_builder_16x16" />
<bt:Image size="32" resid="Navigator.data_builder_32x32" />
<bt:Image size="80" resid="Navigator.data_builder_80x80" />
</Icon>
<Action xsi:type="ShowTaskpane">
<TaskpaneId>ButtonId1</TaskpaneId>
<SourceLocation resid="Contoso.Taskpane.Url" />
</Action>
</Control>
</Group>
<Label resid="Contoso.Group1Label" />
</CustomTab>
</ExtensionPoint>
</DesktopFormFactor>
</Host>
</Hosts>
<Resources>
<bt:Images>
<bt:Image id="Navigator.data_builder_16x16" DefaultValue="https://localhost:3000/assets/images/data-builder-16.png" />
<bt:Image id="Navigator.data_builder_32x32" DefaultValue="https://localhost:3000/assets/images/data-builder-32.png" />
<bt:Image id="Navigator.data_builder_80x80" DefaultValue="https://localhost:3000/assets/images/data-builder-80.png" />
<bt:Image id="Navigator.login_16x16" DefaultValue="https://localhost:3000/assets/images/login-16.png" />
<bt:Image id="Navigator.login_32x32" DefaultValue="https://localhost:3000/assets/images/login-32.png" />
<bt:Image id="Navigator.login_80x80" DefaultValue="https://localhost:3000/assets/images/login-80.png" />
<bt:Image id="Navigator.refresh_16x16" DefaultValue="https://localhost:3000/assets/images/refresh-16.png" />
<bt:Image id="Navigator.refresh_32x32" DefaultValue="https://localhost:3000/assets/images/refresh-32.png" />
<bt:Image id="Navigator.refresh_80x80" DefaultValue="https://localhost:3000/assets/images/refresh-80.png" />
</bt:Images>
<bt:Urls>
<bt:Url id="Contoso.Taskpane.Url" DefaultValue="https://localhost:3000/index.html" />
<bt:Url id="Contoso.GetStarted.LearnMoreUrl" DefaultValue="https://go.microsoft.com/fwlink/?LinkId=276812" />
<bt:Url id="Contoso.DesktopFunctionFile.Url" DefaultValue="https://localhost:3000/function-file/function-file.html" />
<bt:Url id="JSON-URL" DefaultValue="https://localhost:3000/config/customfunctions.json" />
<bt:Url id="JS-URL" DefaultValue="https://localhost:3000/src/customfunctions.js" />
<bt:Url id="HTML-URL" DefaultValue="https://localhost:3000/src/customfunctions.html" />
</bt:Urls>
<bt:ShortStrings>
<bt:String id="Contoso.TaskpaneButton.Label" DefaultValue="Data Builder" />
<bt:String id="Contoso.Group1Label" DefaultValue="D&P Navigator" />
<bt:String id="Contoso.GetStarted.Title" DefaultValue="Get started with your sample add-in!" />
<bt:String id="Navigator.Login.Label" DefaultValue="Login" />
<bt:String id="Navigator.Refresh.Label" DefaultValue="Refresh" />
<bt:String id="namespace" DefaultValue="CONTOSO" />
</bt:ShortStrings>
<bt:LongStrings>
<bt:String id="Contoso.TaskpaneButton.Tooltip" DefaultValue="Click to Show a Taskpane" />
<bt:String id="Contoso.GetStarted.Description" DefaultValue="Your sample add-in loaded succesfully. Go to the HOME tab and click the 'Show Taskpane' button to get started." />
<bt:String id="Navigator.Login.Tooltip" DefaultValue="Login to your Duff & Phelps account to get started." />
<bt:String id="Navigator.Refresh.Tooltip" DefaultValue="Update all the connected Data Builder cells within the existing workbook." />
</bt:LongStrings>
</Resources>
</VersionOverrides>
</OfficeApp>