|
|
- <?xml version="1.0" encoding="utf-8"?>
- <ServiceManifest Name="ApiGw_BasePkg"
- Version="1.0.0"
- xmlns="http://schemas.microsoft.com/2011/01/fabric"
- xmlns:xsd="http://www.w3.org/2001/XMLSchema"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <ServiceTypes>
- <!-- This is the name of your ServiceType.
- This name must match the string used in RegisterServiceType call in Program.cs. -->
- <StatelessServiceType ServiceTypeName="ApiGw_BaseType" />
- </ServiceTypes>
-
- <!-- Code package is your service executable. -->
- <CodePackage Name="Code" Version="1.0.0">
- <EntryPoint>
- <ExeHost>
- <Program>ApiGw_Base.exe</Program>
- <WorkingFolder>CodePackage</WorkingFolder>
- </ExeHost>
- </EntryPoint>
- <EnvironmentVariables>
- <EnvironmentVariable Name="ASPNETCORE_ENVIRONMENT" Value=""/>
- </EnvironmentVariables>
- </CodePackage>
-
- <!-- Config package is the contents of the Config directoy under PackageRoot that contains an
- independently-updateable and versioned set of custom configuration settings for your service. -->
- <ConfigPackage Name="Config" Version="1.0.0" />
-
- <Resources>
- <Endpoints>
- <!-- This endpoint is used by the communication listener to obtain the port on which to
- listen. Please note that if your service is partitioned, this port is shared with
- replicas of different partitions that are placed in your code. -->
- <Endpoint Protocol="https" Name="ServiceEndpoint" Type="Input" Port="8912" />
- </Endpoints>
- </Resources>
- </ServiceManifest>
|