We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05f14ef commit 3bc1ec3Copy full SHA for 3bc1ec3
1 file changed
samples/features/security/contoso-hr-sql-db/setup/azuredeploy.bicep
@@ -139,7 +139,12 @@ resource WebApp_Resource 'Microsoft.Web/sites@2020-12-01' = {
139
}
140
141
142
-
+ //Define AppSetting to fetch the correct project from the GitHub Repository
143
+ resource AppSetting 'config' = {
144
+ name: 'appsettings'
145
+ properties: {
146
+ PROJECT: 'samples/features/security/contoso-hr-sql-db/source/ContosoHR/ContosoHR.csproj'
147
+ }
148
// Deploy the application
149
resource sourceControl 'sourcecontrols' = {
150
name: 'web'
0 commit comments