Setting up the .NET WebAPI Service - nrogoff/EnterpriseAppSettings GitHub Wiki

Steps for setting up the .NET WebAPI

###Step 1 Update the 'entappsettingdb' connection string in the Web.config. The default is for a Azure SQL server. You will need to replace the server name, username and password.

    <connectionStrings>
    <add name="entappsettingsdb" connectionString="Server=tcp:{server name}.database.windows.net,1433;Initial Catalog=AppSettingsDb;Persist Security Info=False;User ID={username};Password={password};MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=False;Connection Timeout=30;" providerName="System.Data.SqlClient" />
    </connectionStrings>

###Step 2 Alter the 'EntAppSettingsIsInternal' to true if the service to deploy is for internal services only. This service will publish all 'IsInternal' App Settings too. Set to 'false' for any publicly accessible service. The default is <add key="EntAppSettingsIsInternal" value="false" />