Revert "Removed unnecessary files"

This reverts commit 536bddcd96b54673401cedbe802520dce12b3472.
This commit is contained in:
Sumit Ghosh 2021-08-31 22:05:50 +05:30
parent 536bddcd96
commit 1494d82148
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,9 @@
# Containerized eShop - Basket Service
Sample reference containerized application, cross-platform and microservices architecture.
Powered by Microsoft
Check procedures on how to get it started at the Wiki:
https://github.com/dotnet/eShopOnContainers/wiki

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<!--
Configure your application settings in appsettings.json. Learn more at http://go.microsoft.com/fwlink/?LinkId=786380
-->
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
</handlers>
<aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" hostingModel="InProcess">
<environmentVariables>
<environmentVariable name="COMPLUS_ForceENC" value="1" />
<environmentVariable name="ASPNETCORE_ENVIRONMENT" value="Development" />
</environmentVariables>
</aspNetCore>
</system.webServer>
</configuration>