aspnetcore/src/MusicStore/web.config

17 lines
457 B
XML

<?xml version="1.0"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.5" />
<httpRuntime targetFramework="4.5" />
</system.web>
<appSettings>
<!-- Change below value to 'false' to run on full desktop -->
<add key="K" value="true" />
<add key="DefaultAdminUsername" value="Administrator" />
<add key="DefaultAdminPassword" value="YouShouldChangeThisPassword" />
</appSettings>
</configuration>