You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.6 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <ServiceManifest Name="ApiGw_BasePkg"
  3. Version="1.0.0"
  4. xmlns="http://schemas.microsoft.com/2011/01/fabric"
  5. xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  6. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  7. <ServiceTypes>
  8. <!-- This is the name of your ServiceType.
  9. This name must match the string used in RegisterServiceType call in Program.cs. -->
  10. <StatelessServiceType ServiceTypeName="ApiGw_BaseType" />
  11. </ServiceTypes>
  12. <!-- Code package is your service executable. -->
  13. <CodePackage Name="Code" Version="1.0.0">
  14. <EntryPoint>
  15. <ExeHost>
  16. <Program>ApiGw_Base.exe</Program>
  17. <WorkingFolder>CodePackage</WorkingFolder>
  18. </ExeHost>
  19. </EntryPoint>
  20. <EnvironmentVariables>
  21. <EnvironmentVariable Name="ASPNETCORE_ENVIRONMENT" Value=""/>
  22. </EnvironmentVariables>
  23. </CodePackage>
  24. <!-- Config package is the contents of the Config directoy under PackageRoot that contains an
  25. independently-updateable and versioned set of custom configuration settings for your service. -->
  26. <ConfigPackage Name="Config" Version="1.0.0" />
  27. <Resources>
  28. <Endpoints>
  29. <!-- This endpoint is used by the communication listener to obtain the port on which to
  30. listen. Please note that if your service is partitioned, this port is shared with
  31. replicas of different partitions that are placed in your code. -->
  32. <Endpoint Protocol="https" Name="ServiceEndpoint" Type="Input" Port="8912" />
  33. </Endpoints>
  34. </Resources>
  35. </ServiceManifest>