Simon Doy
simondoy.bsky.social
Simon Doy
@simondoy.bsky.social
Microsoft MVP | Owner of iThink365
❤️building stuff on MS Cloud. Yorkshire M365 North User group leader. ❤️🛹🏂🎬🎼🎮
You are probably right will have to take a look at our pipelines.
Glad you got sorted though.
March 20, 2025 at 3:03 PM
Hope that helps :)
March 20, 2025 at 6:20 AM
We use this task in a build pipeline

dotnet publish i365.Connect.Api/i365.Connect.Api.csproj --configuration $(buildConfiguration) --output $(Build.ArtifactStagingDirectory)/api --property:WebPublishMethod=Package --property:PackageAsSingleFile=true
March 20, 2025 at 6:20 AM
We use this task to deploy

- task: AzureFunctionApp@1
displayName: 'iThink Connect Api Deploy'
enabled: true
inputs:
azureSubscription: '${{ parameters.azureSubscriptionName }}'
appName: '$(functions.name)'
appType: functionApp
package: '$(Pipeline.Workspace)/api/drop/api'
March 20, 2025 at 6:20 AM