Hi,
I am new to Pipelines and CI/CD so apologies for not knowing this.
I have a multi project Visual Studio c#.Net Core solution in a bitbucket repository.
I want to just publish the API project to an Azure Web Application.
I have used the standard template and it's building and publishing but I suspect it's publishing the complete solution and not just the API project.
I want to be able to configure the system so a i can push different projects to different azure application,
Is this possible? Can anyone help me please?
Thanks
Thank you for reaching out to the community.
Based on your description, my understanding is that you're deploying your build folder on Pipelines (or from the default directory BITBUCKET_CLONE_DIR).
If this is true and as you've mentioned you have multiple projects in your single repository, the best I can suggest is for you to create a folder every time you'll deploy to your preferred Azure application.
For instance, if you want to deploy your API project, you can do something like these:
- mkdir -p $BITBUCKET_CLONE_DIR/api_release - #do your test/build command into that new folder - #use that new folder to deploy to your Azure project
You can use the same pattern in multi-steps or custom steps when you want to deploy your other projects.
Hope it helps and let me know if you have further questions.
Regards,
Mark C
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.