You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/service-fabric/service-fabric-deploy-existing-app.md
+14-4Lines changed: 14 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,6 +34,13 @@ Visual Studio provides a Service Fabric service template to help you deploy a gu
34
34
35
35
For an example walkthrough, see [Create your first guest executable application using Visual Studio](quickstart-guest-app.md).
36
36
37
+
### Packaging multiple executables with Visual Studio
38
+
39
+
You can use Visual Studio to produce an application package that contains multiple guest executables. After adding the first guest executable, right click on the application project and select the **Add->New Service Fabric service** to add the second guest executable project to the solution.
40
+
41
+
> [!NOTE]
42
+
> If you choose to link the source in the Visual Studio project, building the Visual Studio solution, will make sure that your application package is up to date with changes in the source.
43
+
37
44
## Use Yeoman to package and deploy an existing executable on Linux
38
45
39
46
The procedure for creating and deploying a guest executable on Linux is the same as deploying a csharp or java application.
@@ -44,6 +51,13 @@ The procedure for creating and deploying a guest executable on Linux is the same
44
51
45
52
Yeoman creates an application package with the appropriate application and manifest files along with install and uninstall scripts.
46
53
54
+
### Packaging multiple executables using Yeoman on Linux
55
+
56
+
To add another service to an application already created using `yo`, perform the following steps:
57
+
58
+
1. Change directory to the root of the existing application. For example, `cd ~/YeomanSamples/MyApplication`, if `MyApplication` is the application created by Yeoman.
59
+
2. Run `yo azuresfguest:AddService` and provide the necessary details.
60
+
47
61
<aid="manually"></a>
48
62
49
63
## Manually package and deploy an existing executable
@@ -55,10 +69,6 @@ The process of manually packaging a guest executable is based on the following g
55
69
3. Edit the service manifest file.
56
70
4. Edit the application manifest file.
57
71
58
-
<!--
59
-
>[AZURE.NOTE] We do provide a packaging tool that allows you to create the ApplicationPackage automatically. The tool is currently in preview. You can download it from [here](https://aka.ms/servicefabricpacktool).
60
-
-->
61
-
62
72
### Create the package directory structure
63
73
64
74
You can start by creating the directory structure, as described in [Package an Azure Service Fabric App](https://docs.microsoft.com/azure/service-fabric/service-fabric-package-apps).
0 commit comments