Skip to content

Commit 73f9ab1

Browse files
author
Sachin Arunkumar
committed
Merge branch 'devcertintegration' of https://github.com/asachin96/Office-Addin-TaskPane into devcertintegration
2 parents 0dc2c9c + 55729da commit 73f9ab1

File tree

7 files changed

+25
-48
lines changed

7 files changed

+25
-48
lines changed

manifest.outlook.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
<Hosts>
4747
<Host xsi:type="MailHost">
4848
<DesktopFormFactor>
49-
<FunctionFile resid="Contoso.Ribbon.Url" />
49+
<FunctionFile resid="Contoso.Commands.Url" />
5050
<ExtensionPoint xsi:type="MessageReadCommandSurface">
5151
<OfficeTab id="TabDefault">
5252
<Group id="msgReadGroup">
@@ -79,7 +79,7 @@
7979
<bt:Image id="Contoso.tpicon_80x80" DefaultValue="https://localhost:3000/assets/icon-80.png"/>
8080
</bt:Images>
8181
<bt:Urls>
82-
<bt:Url id="Contoso.Ribbon.Url" DefaultValue="https://localhost:3000/ribbon.html" />
82+
<bt:Url id="Contoso.Commands.Url" DefaultValue="https://localhost:3000/commands.html" />
8383
<bt:Url id="Contoso.Taskpane.Url" DefaultValue="https://localhost:3000/taskpane.html" />
8484
</bt:Urls>
8585
<bt:ShortStrings>

manifest.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<Description resid="Contoso.GetStarted.Description"/>
3232
<LearnMoreUrl resid="Contoso.GetStarted.LearnMoreUrl"/>
3333
</GetStarted>
34-
<FunctionFile resid="Contoso.Ribbon.Url" />
34+
<FunctionFile resid="Contoso.Commands.Url" />
3535
<ExtensionPoint xsi:type="PrimaryCommandSurface">
3636
<OfficeTab id="TabHome">
3737
<Group id="Contoso.Group1">
@@ -69,7 +69,7 @@
6969
<Description resid="Contoso.GetStarted.Description"/>
7070
<LearnMoreUrl resid="Contoso.GetStarted.LearnMoreUrl"/>
7171
</GetStarted>
72-
<FunctionFile resid="Contoso.Ribbon.Url" />
72+
<FunctionFile resid="Contoso.Commands.Url" />
7373
<ExtensionPoint xsi:type="PrimaryCommandSurface">
7474
<OfficeTab id="TabHome">
7575
<Group id="Contoso.Group1">
@@ -107,7 +107,7 @@
107107
<Description resid="Contoso.GetStarted.Description"/>
108108
<LearnMoreUrl resid="Contoso.GetStarted.LearnMoreUrl"/>
109109
</GetStarted>
110-
<FunctionFile resid="Contoso.Ribbon.Url" />
110+
<FunctionFile resid="Contoso.Commands.Url" />
111111
<ExtensionPoint xsi:type="PrimaryCommandSurface">
112112
<OfficeTab id="TabHome">
113113
<Group id="Contoso.Group1">
@@ -145,7 +145,7 @@
145145
<Description resid="Contoso.GetStarted.Description"/>
146146
<LearnMoreUrl resid="Contoso.GetStarted.LearnMoreUrl"/>
147147
</GetStarted>
148-
<FunctionFile resid="Contoso.Ribbon.Url" />
148+
<FunctionFile resid="Contoso.Commands.Url" />
149149
<ExtensionPoint xsi:type="PrimaryCommandSurface">
150150
<OfficeTab id="TabHome">
151151
<Group id="Contoso.Group1">
@@ -185,7 +185,7 @@
185185
</bt:Images>
186186
<bt:Urls>
187187
<bt:Url id="Contoso.GetStarted.LearnMoreUrl" DefaultValue="https://go.microsoft.com/fwlink/?LinkId=276812" />
188-
<bt:Url id="Contoso.Ribbon.Url" DefaultValue="https://localhost:3000/ribbon.html" />
188+
<bt:Url id="Contoso.Commands.Url" DefaultValue="https://localhost:3000/commands.html" />
189189
<bt:Url id="Contoso.Taskpane.Url" DefaultValue="https://localhost:3000/taskpane.html" />
190190
</bt:Urls>
191191
<bt:ShortStrings>

package-lock.json

Lines changed: 13 additions & 36 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.
File renamed without changes.

src/taskpane/taskpane.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<!-- Office JavaScript API -->
1414
<script type="text/javascript" src="https://appsforoffice.microsoft.com/lib/1.1/hosted/office.js"></script>
1515

16-
<!-- For the Office UI Fabric, go to http://aka.ms/office-ui-fabric to learn more. -->
16+
<!-- For more information on Office UI Fabric, visit https://developer.microsoft.com/fabric. -->
1717
<link rel="stylesheet" href="https://static2.sharepointonline.com/files/fabric/office-ui-fabric-core/9.6.1/css/fabric.min.css"/>
1818

1919
<!-- Template styles -->

webpack.config.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ module.exports = async (env, options) => {
1313
entry: {
1414
polyfill: 'babel-polyfill',
1515
taskpane: "./src/taskpane/taskpane.ts",
16-
ribbon: "./src/ribbon/ribbon.ts"
16+
commands: "./src/commands/commands.ts"
1717
},
1818
resolve: {
1919
extensions: [".ts", ".tsx", ".html", ".js"]
@@ -55,9 +55,9 @@ module.exports = async (env, options) => {
5555
}
5656
]),
5757
new HtmlWebpackPlugin({
58-
filename: "ribbon.html",
59-
template: "./src/ribbon/ribbon.html",
60-
chunks: ["polyfill", "ribbon"]
58+
filename: "commands.html",
59+
template: "./src/commands/commands.html",
60+
chunks: ["polyfill", "commands"]
6161
}),
6262
],
6363
devServer: {

0 commit comments

Comments
 (0)