Added monoDb service
Added graceperiodmanager service Added marketing service
This commit is contained in:
parent
7530e8ffb0
commit
9e4e6799bb
@ -5,6 +5,9 @@
|
|||||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<Parameters>
|
<Parameters>
|
||||||
|
<Parameter Name="MarketingApi_InstanceCount" DefaultValue="-1" />
|
||||||
|
<Parameter Name="GracePeriodManager_InstanceCount" DefaultValue="-1" />
|
||||||
|
<Parameter Name="MongoDb_InstanceCount" DefaultValue="-1" />
|
||||||
<Parameter Name="WebStatus_InstanceCount" DefaultValue="-1" />
|
<Parameter Name="WebStatus_InstanceCount" DefaultValue="-1" />
|
||||||
<Parameter Name="WebSPA_InstanceCount" DefaultValue="-1" />
|
<Parameter Name="WebSPA_InstanceCount" DefaultValue="-1" />
|
||||||
<Parameter Name="WebMVC_InstanceCount" DefaultValue="-1" />
|
<Parameter Name="WebMVC_InstanceCount" DefaultValue="-1" />
|
||||||
@ -15,19 +18,22 @@
|
|||||||
<Parameter Name="IdentityApi_InstanceCount" DefaultValue="-1" />
|
<Parameter Name="IdentityApi_InstanceCount" DefaultValue="-1" />
|
||||||
<Parameter Name="CatalogAPI_InstanceCount" DefaultValue="-1" />
|
<Parameter Name="CatalogAPI_InstanceCount" DefaultValue="-1" />
|
||||||
<Parameter Name="BasketApi_InstanceCount" DefaultValue="-1" />
|
<Parameter Name="BasketApi_InstanceCount" DefaultValue="-1" />
|
||||||
<Parameter Name="SqlServer_InstanceCount" DefaultValue="-1" />
|
|
||||||
<Parameter Name="Rabbit_InstanceCount" DefaultValue="-1" />
|
|
||||||
<Parameter Name="Redis_InstanceCount" DefaultValue="-1" />
|
|
||||||
<Parameter Name="IdentityApi_InstanceCount" DefaultValue="-1" />
|
|
||||||
<Parameter Name="CatalogApi_InstanceCount" DefaultValue="-1" />
|
|
||||||
<Parameter Name="OrderingApi_InstanceCount" DefaultValue="-1" />
|
|
||||||
<Parameter Name="WebStatus_InstanceCount" DefaultValue="-1" />
|
|
||||||
<Parameter Name="WebSPA_InstanceCount" DefaultValue="-1" />
|
|
||||||
<Parameter Name="WebMVC_InstanceCount" DefaultValue="-1" />
|
|
||||||
</Parameters>
|
</Parameters>
|
||||||
<!-- Import the ServiceManifest from the ServicePackage. The ServiceManifestName and ServiceManifestVersion
|
<!-- Import the ServiceManifest from the ServicePackage. The ServiceManifestName and ServiceManifestVersion
|
||||||
should match the Name and Version attributes of the ServiceManifest element defined in the
|
should match the Name and Version attributes of the ServiceManifest element defined in the
|
||||||
ServiceManifest.xml file. -->
|
ServiceManifest.xml file. -->
|
||||||
|
<ServiceManifestImport>
|
||||||
|
<ServiceManifestRef ServiceManifestName="MarketingApiPkg" ServiceManifestVersion="1.0.0" />
|
||||||
|
<ConfigOverrides />
|
||||||
|
</ServiceManifestImport>
|
||||||
|
<ServiceManifestImport>
|
||||||
|
<ServiceManifestRef ServiceManifestName="GracePeriodManagerPkg" ServiceManifestVersion="1.0.0" />
|
||||||
|
<ConfigOverrides />
|
||||||
|
</ServiceManifestImport>
|
||||||
|
<ServiceManifestImport>
|
||||||
|
<ServiceManifestRef ServiceManifestName="MongoDbPkg" ServiceManifestVersion="1.0.0" />
|
||||||
|
<ConfigOverrides />
|
||||||
|
</ServiceManifestImport>
|
||||||
<ServiceManifestImport>
|
<ServiceManifestImport>
|
||||||
<ServiceManifestRef ServiceManifestName="WebStatusPkg" ServiceManifestVersion="1.0.0" />
|
<ServiceManifestRef ServiceManifestName="WebStatusPkg" ServiceManifestVersion="1.0.0" />
|
||||||
<ConfigOverrides />
|
<ConfigOverrides />
|
||||||
@ -154,12 +160,36 @@
|
|||||||
</ContainerHostPolicies>
|
</ContainerHostPolicies>
|
||||||
</Policies>
|
</Policies>
|
||||||
</ServiceManifestImport>
|
</ServiceManifestImport>
|
||||||
|
<ServiceManifestImport>
|
||||||
|
<ServiceManifestRef ServiceManifestName="MongoDbPkg" ServiceManifestVersion="1.0.0" />
|
||||||
|
<ConfigOverrides />
|
||||||
|
<Policies>
|
||||||
|
<ContainerHostPolicies CodePackageRef="Code">
|
||||||
|
<PortBinding ContainerPort="27017" EndpointRef="MongoDbTypeEndpoint"/>
|
||||||
|
</ContainerHostPolicies>
|
||||||
|
</Policies>
|
||||||
|
</ServiceManifestImport>
|
||||||
<DefaultServices>
|
<DefaultServices>
|
||||||
<!-- The section below creates instances of service types, when an instance of this
|
<!-- The section below creates instances of service types, when an instance of this
|
||||||
application type is created. You can also create one or more instances of service type using the
|
application type is created. You can also create one or more instances of service type using the
|
||||||
ServiceFabric PowerShell module.
|
ServiceFabric PowerShell module.
|
||||||
|
|
||||||
The attribute ServiceTypeName below must match the name defined in the imported ServiceManifest.xml file. -->
|
The attribute ServiceTypeName below must match the name defined in the imported ServiceManifest.xml file. -->
|
||||||
|
<Service Name="MarketingApi" ServicePackageActivationMode="ExclusiveProcess">
|
||||||
|
<StatelessService ServiceTypeName="MarketingApiType" InstanceCount="[MarketingApi_InstanceCount]">
|
||||||
|
<SingletonPartition />
|
||||||
|
</StatelessService>
|
||||||
|
</Service>
|
||||||
|
<Service Name="GracePeriodManager" ServicePackageActivationMode="ExclusiveProcess">
|
||||||
|
<StatelessService ServiceTypeName="GracePeriodManagerType" InstanceCount="[GracePeriodManager_InstanceCount]">
|
||||||
|
<SingletonPartition />
|
||||||
|
</StatelessService>
|
||||||
|
</Service>
|
||||||
|
<Service Name="MongoDb" ServicePackageActivationMode="ExclusiveProcess">
|
||||||
|
<StatelessService ServiceTypeName="MongoDbType" InstanceCount="[MongoDb_InstanceCount]">
|
||||||
|
<SingletonPartition />
|
||||||
|
</StatelessService>
|
||||||
|
</Service>
|
||||||
<Service Name="WebStatus">
|
<Service Name="WebStatus">
|
||||||
<StatelessService ServiceTypeName="WebStatusType" InstanceCount="[WebStatus_InstanceCount]">
|
<StatelessService ServiceTypeName="WebStatusType" InstanceCount="[WebStatus_InstanceCount]">
|
||||||
<SingletonPartition />
|
<SingletonPartition />
|
||||||
@ -209,51 +239,6 @@
|
|||||||
<StatelessService ServiceTypeName="BasketApiType" InstanceCount="[BasketApi_InstanceCount]">
|
<StatelessService ServiceTypeName="BasketApiType" InstanceCount="[BasketApi_InstanceCount]">
|
||||||
<SingletonPartition />
|
<SingletonPartition />
|
||||||
</StatelessService>
|
</StatelessService>
|
||||||
</Service>
|
</Service>
|
||||||
<Service Name="SqlServer">
|
|
||||||
<StatelessService ServiceTypeName="SqlServerType" InstanceCount="[SqlServer_InstanceCount]">
|
|
||||||
<SingletonPartition />
|
|
||||||
</StatelessService>
|
|
||||||
</Service>
|
|
||||||
<Service Name="Rabbit">
|
|
||||||
<StatelessService ServiceTypeName="RabbitType" InstanceCount="[Rabbit_InstanceCount]">
|
|
||||||
<SingletonPartition />
|
|
||||||
</StatelessService>
|
|
||||||
</Service>
|
|
||||||
<Service Name="Redis">
|
|
||||||
<StatelessService ServiceTypeName="RedisType" InstanceCount="[Redis_InstanceCount]">
|
|
||||||
<SingletonPartition />
|
|
||||||
</StatelessService>
|
|
||||||
</Service>
|
|
||||||
<Service Name="IdentityApi">
|
|
||||||
<StatelessService ServiceTypeName="IdentityApiType" InstanceCount="[IdentityApi_InstanceCount]">
|
|
||||||
<SingletonPartition />
|
|
||||||
</StatelessService>
|
|
||||||
</Service>
|
|
||||||
<Service Name="CatalogApi">
|
|
||||||
<StatelessService ServiceTypeName="CatalogApiType" InstanceCount="[CatalogApi_InstanceCount]">
|
|
||||||
<SingletonPartition />
|
|
||||||
</StatelessService>
|
|
||||||
</Service>
|
|
||||||
<Service Name="OrderingApi">
|
|
||||||
<StatelessService ServiceTypeName="OrderingApiType" InstanceCount="[OrderingApi_InstanceCount]">
|
|
||||||
<SingletonPartition />
|
|
||||||
</StatelessService>
|
|
||||||
</Service>
|
|
||||||
<Service Name="WebStatus">
|
|
||||||
<StatelessService ServiceTypeName="WebStatusType" InstanceCount="[WebStatus_InstanceCount]">
|
|
||||||
<SingletonPartition />
|
|
||||||
</StatelessService>
|
|
||||||
</Service>
|
|
||||||
<Service Name="WebSPA">
|
|
||||||
<StatelessService ServiceTypeName="WebSPAType" InstanceCount="[WebSPA_InstanceCount]">
|
|
||||||
<SingletonPartition />
|
|
||||||
</StatelessService>
|
|
||||||
</Service>
|
|
||||||
<Service Name="WebMVC">
|
|
||||||
<StatelessService ServiceTypeName="WebMVCType" InstanceCount="[WebMVC_InstanceCount]">
|
|
||||||
<SingletonPartition />
|
|
||||||
</StatelessService>
|
|
||||||
</Service>
|
|
||||||
</DefaultServices>
|
</DefaultServices>
|
||||||
</ApplicationManifest>
|
</ApplicationManifest>
|
@ -0,0 +1,9 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<Settings xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2011/01/fabric">
|
||||||
|
<!-- Add your custom configuration sections and parameters here -->
|
||||||
|
<!--
|
||||||
|
<Section Name="MyConfigSection">
|
||||||
|
<Parameter Name="MyParameter" Value="Value1" />
|
||||||
|
</Section>
|
||||||
|
-->
|
||||||
|
</Settings>
|
@ -0,0 +1,40 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<ServiceManifest Name="GracePeriodManagerPkg"
|
||||||
|
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.
|
||||||
|
The UseImplicitHost attribute indicates this is a guest service. -->
|
||||||
|
<StatelessServiceType ServiceTypeName="GracePeriodManagerType" UseImplicitHost="true" />
|
||||||
|
</ServiceTypes>
|
||||||
|
|
||||||
|
<!-- Code package is your service executable. -->
|
||||||
|
<CodePackage Name="Code" Version="1.0.0">
|
||||||
|
<EntryPoint>
|
||||||
|
<!-- Follow this link for more information about deploying Windows containers to Service Fabric: https://aka.ms/sfguestcontainers -->
|
||||||
|
<ContainerHost>
|
||||||
|
<ImageName>eshop/graceperiodmanager</ImageName>
|
||||||
|
</ContainerHost>
|
||||||
|
</EntryPoint>
|
||||||
|
<!-- Pass environment variables to your container: -->
|
||||||
|
<EnvironmentVariables>
|
||||||
|
<EnvironmentVariable Name="ConnectionString" Value="sql.data;Database=Microsoft.eShopOnContainers.Services.OrderingDb;User Id=sa;Password=Pass@word"/>
|
||||||
|
<EnvironmentVariable Name="EventBusConnection" Value="rabbitmq"/>
|
||||||
|
</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 Name="GracePeriodManagerTypeEndpoint" />
|
||||||
|
</Endpoints>
|
||||||
|
</Resources>
|
||||||
|
</ServiceManifest>
|
@ -0,0 +1,9 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<Settings xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2011/01/fabric">
|
||||||
|
<!-- Add your custom configuration sections and parameters here -->
|
||||||
|
<!--
|
||||||
|
<Section Name="MyConfigSection">
|
||||||
|
<Parameter Name="MyParameter" Value="Value1" />
|
||||||
|
</Section>
|
||||||
|
-->
|
||||||
|
</Settings>
|
@ -0,0 +1,48 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<ServiceManifest Name="MarketingApiPkg"
|
||||||
|
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.
|
||||||
|
The UseImplicitHost attribute indicates this is a guest service. -->
|
||||||
|
<StatelessServiceType ServiceTypeName="MarketingApiType" UseImplicitHost="true" />
|
||||||
|
</ServiceTypes>
|
||||||
|
|
||||||
|
<!-- Code package is your service executable. -->
|
||||||
|
<CodePackage Name="Code" Version="1.0.0">
|
||||||
|
<EntryPoint>
|
||||||
|
<!-- Follow this link for more information about deploying Windows containers to Service Fabric: https://aka.ms/sfguestcontainers -->
|
||||||
|
<ContainerHost>
|
||||||
|
<ImageName>eshop/marketing.api:latest</ImageName>
|
||||||
|
</ContainerHost>
|
||||||
|
</EntryPoint>
|
||||||
|
<!-- Pass environment variables to your container: -->
|
||||||
|
<EnvironmentVariables>
|
||||||
|
<EnvironmentVariable Name="ASPNETCORE_ENVIRONMENT" Value="Development"/>
|
||||||
|
<EnvironmentVariable Name="ASPNETCORE_URLS" Value="http://0.0.0.0:80"/>
|
||||||
|
<EnvironmentVariable Name="ConnectionString" Value="Server=sql.data;Database=Microsoft.eShopOnContainers.Services.MarketingDb;User Id=sa;Password=Pass@word"/>
|
||||||
|
<EnvironmentVariable Name="OrderingUrl" Value=""/>
|
||||||
|
<EnvironmentVariable Name="IdentityUrl" Value=""/>
|
||||||
|
<EnvironmentVariable Name="BasketUrl" Value=""/>
|
||||||
|
</EnvironmentVariables>
|
||||||
|
- ASPNETCORE_ENVIRONMENT=Development
|
||||||
|
- ASPNETCORE_URLS=http://0.0.0.0:80
|
||||||
|
- ConnectionString=Server=sql.data;Database=Microsoft.eShopOnContainers.Services.MarketingDb;User Id=sa;Password=Pass@word
|
||||||
|
- identityUrl=http://identity.api #Local: You need to open your local dev-machine firewall at range 5100-5105. at range 5100-5105.
|
||||||
|
</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 Name="MarketingApiTypeEndpoint" Port="5110" UriScheme="http" />
|
||||||
|
</Endpoints>
|
||||||
|
</Resources>
|
||||||
|
</ServiceManifest>
|
@ -0,0 +1,9 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<Settings xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2011/01/fabric">
|
||||||
|
<!-- Add your custom configuration sections and parameters here -->
|
||||||
|
<!--
|
||||||
|
<Section Name="MyConfigSection">
|
||||||
|
<Parameter Name="MyParameter" Value="Value1" />
|
||||||
|
</Section>
|
||||||
|
-->
|
||||||
|
</Settings>
|
@ -0,0 +1,41 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<ServiceManifest Name="MongoDbPkg"
|
||||||
|
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.
|
||||||
|
The UseImplicitHost attribute indicates this is a guest service. -->
|
||||||
|
<StatelessServiceType ServiceTypeName="MongoDbType" UseImplicitHost="true" />
|
||||||
|
</ServiceTypes>
|
||||||
|
|
||||||
|
<!-- Code package is your service executable. -->
|
||||||
|
<CodePackage Name="Code" Version="1.0.0">
|
||||||
|
<EntryPoint>
|
||||||
|
<!-- Follow this link for more information about deploying Windows containers to Service Fabric: https://aka.ms/sfguestcontainers -->
|
||||||
|
<ContainerHost>
|
||||||
|
<ImageName>mongo</ImageName>
|
||||||
|
</ContainerHost>
|
||||||
|
</EntryPoint>
|
||||||
|
<!-- Pass environment variables to your container: -->
|
||||||
|
<!--
|
||||||
|
<EnvironmentVariables>
|
||||||
|
<EnvironmentVariable Name="VariableName" Value="VariableValue"/>
|
||||||
|
</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 Name="MongoDbTypeEndpoint" Port="27017" UriScheme="http" />
|
||||||
|
</Endpoints>
|
||||||
|
</Resources>
|
||||||
|
</ServiceManifest>
|
@ -1,6 +1,9 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Application Name="fabric:/eShopOnServiceFabric" 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">
|
<Application Name="fabric:/eShopOnServiceFabric" 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">
|
||||||
<Parameters>
|
<Parameters>
|
||||||
|
<Parameter Name="MarketingApi_InstanceCount" Value="-1" />
|
||||||
|
<Parameter Name="GracePeriodManager_InstanceCount" Value="-1" />
|
||||||
|
<Parameter Name="MongoDb_InstanceCount" Value="-1" />
|
||||||
<Parameter Name="WebStatus_InstanceCount" Value="-1" />
|
<Parameter Name="WebStatus_InstanceCount" Value="-1" />
|
||||||
<Parameter Name="WebSPA_InstanceCount" Value="-1" />
|
<Parameter Name="WebSPA_InstanceCount" Value="-1" />
|
||||||
<Parameter Name="WebMVC_InstanceCount" Value="-1" />
|
<Parameter Name="WebMVC_InstanceCount" Value="-1" />
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" InitialTargets=";ValidateMSBuildFiles">
|
||||||
<Import Project="..\..\packages\Microsoft.VisualStudio.Azure.Fabric.MSBuild.1.5.0\build\Microsoft.VisualStudio.Azure.Fabric.Application.props" Condition="Exists('..\..\packages\Microsoft.VisualStudio.Azure.Fabric.MSBuild.1.5.0\build\Microsoft.VisualStudio.Azure.Fabric.Application.props')" />
|
<Import Project="..\..\packages\Microsoft.VisualStudio.Azure.Fabric.MSBuild.1.6.0\build\Microsoft.VisualStudio.Azure.Fabric.Application.props" Condition="Exists('..\..\packages\Microsoft.VisualStudio.Azure.Fabric.MSBuild.1.6.0\build\Microsoft.VisualStudio.Azure.Fabric.Application.props')" />
|
||||||
<PropertyGroup Label="Globals">
|
<PropertyGroup Label="Globals">
|
||||||
<ProjectGuid>a47c4784-690e-4452-b4a2-fdc26b4d6b09</ProjectGuid>
|
<ProjectGuid>a47c4784-690e-4452-b4a2-fdc26b4d6b09</ProjectGuid>
|
||||||
<ProjectVersion>1.5</ProjectVersion>
|
<ProjectVersion>1.6</ProjectVersion>
|
||||||
<MinToolsVersion>1.5</MinToolsVersion>
|
<MinToolsVersion>1.5</MinToolsVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
<ItemGroup Label="ProjectConfigurations">
|
||||||
@ -31,8 +31,14 @@
|
|||||||
<Content Include="ApplicationPackageRoot\BasketApiPkg\ServiceManifest.xml" />
|
<Content Include="ApplicationPackageRoot\BasketApiPkg\ServiceManifest.xml" />
|
||||||
<Content Include="ApplicationPackageRoot\CatalogAPIPkg\Config\Settings.xml" />
|
<Content Include="ApplicationPackageRoot\CatalogAPIPkg\Config\Settings.xml" />
|
||||||
<Content Include="ApplicationPackageRoot\CatalogAPIPkg\ServiceManifest.xml" />
|
<Content Include="ApplicationPackageRoot\CatalogAPIPkg\ServiceManifest.xml" />
|
||||||
|
<Content Include="ApplicationPackageRoot\GracePeriodManagerPkg\Config\Settings.xml" />
|
||||||
|
<Content Include="ApplicationPackageRoot\GracePeriodManagerPkg\ServiceManifest.xml" />
|
||||||
<Content Include="ApplicationPackageRoot\IdentityApiPkg\Config\Settings.xml" />
|
<Content Include="ApplicationPackageRoot\IdentityApiPkg\Config\Settings.xml" />
|
||||||
<Content Include="ApplicationPackageRoot\IdentityApiPkg\ServiceManifest.xml" />
|
<Content Include="ApplicationPackageRoot\IdentityApiPkg\ServiceManifest.xml" />
|
||||||
|
<Content Include="ApplicationPackageRoot\MarketingApiPkg\Config\Settings.xml" />
|
||||||
|
<Content Include="ApplicationPackageRoot\MarketingApiPkg\ServiceManifest.xml" />
|
||||||
|
<Content Include="ApplicationPackageRoot\MongoDbPkg\Config\Settings.xml" />
|
||||||
|
<Content Include="ApplicationPackageRoot\MongoDbPkg\ServiceManifest.xml" />
|
||||||
<Content Include="ApplicationPackageRoot\OrderingApiPkg\Config\Settings.xml" />
|
<Content Include="ApplicationPackageRoot\OrderingApiPkg\Config\Settings.xml" />
|
||||||
<Content Include="ApplicationPackageRoot\OrderingApiPkg\ServiceManifest.xml" />
|
<Content Include="ApplicationPackageRoot\OrderingApiPkg\ServiceManifest.xml" />
|
||||||
<Content Include="ApplicationPackageRoot\RabbitPkg\Config\Settings.xml" />
|
<Content Include="ApplicationPackageRoot\RabbitPkg\Config\Settings.xml" />
|
||||||
@ -54,5 +60,9 @@
|
|||||||
<ApplicationProjectTargetsPath>$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\Service Fabric Tools\Microsoft.VisualStudio.Azure.Fabric.ApplicationProject.targets</ApplicationProjectTargetsPath>
|
<ApplicationProjectTargetsPath>$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\Service Fabric Tools\Microsoft.VisualStudio.Azure.Fabric.ApplicationProject.targets</ApplicationProjectTargetsPath>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(ApplicationProjectTargetsPath)" Condition="Exists('$(ApplicationProjectTargetsPath)')" />
|
<Import Project="$(ApplicationProjectTargetsPath)" Condition="Exists('$(ApplicationProjectTargetsPath)')" />
|
||||||
<Import Project="..\..\packages\Microsoft.VisualStudio.Azure.Fabric.MSBuild.1.5.0\build\Microsoft.VisualStudio.Azure.Fabric.Application.targets" Condition="Exists('..\..\packages\Microsoft.VisualStudio.Azure.Fabric.MSBuild.1.5.0\build\Microsoft.VisualStudio.Azure.Fabric.Application.targets')" />
|
<Import Project="..\..\packages\Microsoft.VisualStudio.Azure.Fabric.MSBuild.1.6.0\build\Microsoft.VisualStudio.Azure.Fabric.Application.targets" Condition="Exists('..\..\packages\Microsoft.VisualStudio.Azure.Fabric.MSBuild.1.6.0\build\Microsoft.VisualStudio.Azure.Fabric.Application.targets')" />
|
||||||
|
<Target Name="ValidateMSBuildFiles">
|
||||||
|
<Error Condition="!Exists('..\..\packages\Microsoft.VisualStudio.Azure.Fabric.MSBuild.1.6.0\build\Microsoft.VisualStudio.Azure.Fabric.Application.props')" Text="Unable to find the '..\..\packages\Microsoft.VisualStudio.Azure.Fabric.MSBuild.1.6.0\build\Microsoft.VisualStudio.Azure.Fabric.Application.props' file. Please restore the 'Microsoft.VisualStudio.Azure.Fabric.MSBuild' Nuget package" />
|
||||||
|
<Error Condition="!Exists('..\..\packages\Microsoft.VisualStudio.Azure.Fabric.MSBuild.1.6.0\build\Microsoft.VisualStudio.Azure.Fabric.Application.targets')" Text="Unable to find the '..\..\packages\Microsoft.VisualStudio.Azure.Fabric.MSBuild.1.6.0\build\Microsoft.VisualStudio.Azure.Fabric.Application.targets' file. Please restore the 'Microsoft.VisualStudio.Azure.Fabric.MSBuild' Nuget package" />
|
||||||
|
</Target>
|
||||||
</Project>
|
</Project>
|
@ -1,4 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<packages>
|
<packages>
|
||||||
<package id="Microsoft.VisualStudio.Azure.Fabric.MSBuild" version="1.5.0" />
|
<package id="Microsoft.VisualStudio.Azure.Fabric.MSBuild" version="1.6.0" />
|
||||||
</packages>
|
</packages>
|
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
# Visual Studio 15
|
# Visual Studio 15
|
||||||
VisualStudioVersion = 15.0.26430.6
|
VisualStudioVersion = 15.0.26430.13
|
||||||
MinimumVisualStudioVersion = 10.0.40219.1
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{932D8224-11F6-4D07-B109-DA28AD288A63}"
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{932D8224-11F6-4D07-B109-DA28AD288A63}"
|
||||||
EndProject
|
EndProject
|
||||||
@ -58,21 +58,21 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EventBus", "src\BuildingBlo
|
|||||||
EndProject
|
EndProject
|
||||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EventBusRabbitMQ", "src\BuildingBlocks\EventBus\EventBusRabbitMQ\EventBusRabbitMQ.csproj", "{8088F3FC-6787-45FA-A924-816EC81CBFAC}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EventBusRabbitMQ", "src\BuildingBlocks\EventBus\EventBusRabbitMQ\EventBusRabbitMQ.csproj", "{8088F3FC-6787-45FA-A924-816EC81CBFAC}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IntegrationEventLogEF", "src\BuildingBlocks\EventBus\IntegrationEventLogEF\IntegrationEventLogEF.csproj", "{9EE28E45-1533-472B-8267-56C48855BA0E}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IntegrationEventLogEF", "src\BuildingBlocks\EventBus\IntegrationEventLogEF\IntegrationEventLogEF.csproj", "{9EE28E45-1533-472B-8267-56C48855BA0E}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "HealthChecks", "HealthChecks", "{A81ECBC2-6B00-4DCD-8388-469174033379}"
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "HealthChecks", "HealthChecks", "{A81ECBC2-6B00-4DCD-8388-469174033379}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Extensions.HealthChecks", "src\BuildingBlocks\HealthChecks\src\Microsoft.Extensions.HealthChecks\Microsoft.Extensions.HealthChecks.csproj", "{942ED6E8-0050-495F-A0EA-01E97F63760C}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Extensions.HealthChecks", "src\BuildingBlocks\HealthChecks\src\Microsoft.Extensions.HealthChecks\Microsoft.Extensions.HealthChecks.csproj", "{942ED6E8-0050-495F-A0EA-01E97F63760C}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebStatus", "src\Web\WebStatus\WebStatus.csproj", "{C0A7918D-B4F2-4E7F-8DE2-1E5279EF079F}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WebStatus", "src\Web\WebStatus\WebStatus.csproj", "{C0A7918D-B4F2-4E7F-8DE2-1E5279EF079F}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Resilience", "Resilience", "{FBF43D93-F2E7-4FF8-B4AB-186895949B88}"
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Resilience", "Resilience", "{FBF43D93-F2E7-4FF8-B4AB-186895949B88}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Resilience.Http", "src\BuildingBlocks\Resilience\Resilience.Http\Resilience.Http.csproj", "{D1C47FF1-91F1-4CAF-9ABB-AD642B821502}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Resilience.Http", "src\BuildingBlocks\Resilience\Resilience.Http\Resilience.Http.csproj", "{D1C47FF1-91F1-4CAF-9ABB-AD642B821502}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Payment", "Payment", "{022E145D-1593-47EE-9608-8E323D3C63F5}"
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Payment", "Payment", "{022E145D-1593-47EE-9608-8E323D3C63F5}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Payment.API", "src\Services\Payment\Payment.API\Payment.API.csproj", "{1A01AF82-6FCB-464C-B39C-F127AEBD315D}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Payment.API", "src\Services\Payment\Payment.API\Payment.API.csproj", "{1A01AF82-6FCB-464C-B39C-F127AEBD315D}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.HealthChecks", "src\BuildingBlocks\HealthChecks\src\Microsoft.AspNetCore.HealthChecks\Microsoft.AspNetCore.HealthChecks.csproj", "{22A0F9C1-2D4A-4107-95B7-8459E6688BC5}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.HealthChecks", "src\BuildingBlocks\HealthChecks\src\Microsoft.AspNetCore.HealthChecks\Microsoft.AspNetCore.HealthChecks.csproj", "{22A0F9C1-2D4A-4107-95B7-8459E6688BC5}"
|
||||||
EndProject
|
EndProject
|
||||||
@ -82,15 +82,15 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EventBus.Tests", "src\Build
|
|||||||
EndProject
|
EndProject
|
||||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "GracePeriod", "GracePeriod", "{F38B4FF0-0B49-405A-B1B4-F7A5E3BC4C4E}"
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "GracePeriod", "GracePeriod", "{F38B4FF0-0B49-405A-B1B4-F7A5E3BC4C4E}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GracePeriodManager", "src\Services\GracePeriod\GracePeriodManager\GracePeriodManager.csproj", "{F6E0F0DD-1400-43C3-B5E0-7CC325728C47}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GracePeriodManager", "src\Services\GracePeriod\GracePeriodManager\GracePeriodManager.csproj", "{F6E0F0DD-1400-43C3-B5E0-7CC325728C47}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Location", "Location", "{41139F64-4046-4F16-96B7-D941D96FA9C6}"
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Location", "Location", "{41139F64-4046-4F16-96B7-D941D96FA9C6}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Locations.API", "src\Services\Location\Locations.API\Locations.API.csproj", "{E7581357-FC34-474C-B8F5-307EE3CE05EF}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Locations.API", "src\Services\Location\Locations.API\Locations.API.csproj", "{E7581357-FC34-474C-B8F5-307EE3CE05EF}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "DataProtection", "DataProtection", "{88B22DBB-AA8F-4290-A454-2C109352C345}"
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "DataProtection", "DataProtection", "{88B22DBB-AA8F-4290-A454-2C109352C345}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DataProtection", "src\BuildingBlocks\DataProtection\DataProtection\DataProtection.csproj", "{23A33F9B-7672-426D-ACF9-FF8436ADC81A}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DataProtection", "src\BuildingBlocks\DataProtection\DataProtection\DataProtection.csproj", "{23A33F9B-7672-426D-ACF9-FF8436ADC81A}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Marketing", "Marketing", "{A5260DE0-1FDD-467E-9CC1-A028AB081CEE}"
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Marketing", "Marketing", "{A5260DE0-1FDD-467E-9CC1-A028AB081CEE}"
|
||||||
EndProject
|
EndProject
|
||||||
|
Loading…
x
Reference in New Issue
Block a user