Any sample reference to create deployment for Angular and .net core project

priyab's Avatar

priyab

31 Jan, 2022 10:34 AM

I have to create a build pipeline for Angular and .net core project. Any help is greatly appreciatable.

  1. Support Staff 1 Posted by Feodor Fitsner on 31 Jan, 2022 05:07 PM

    Feodor Fitsner's Avatar

    You should be able to use the same commands to build your solution as locally. Example appveyor.yml could look like:

    install:
    - ps: Install-Product Node 14
    
    build_script:
    - yarn # or npm install
    - yarn build
    - dotnet publish ...
    
    test: off
    
  2. Feodor Fitsner closed this discussion on 02 Apr, 2022 09:02 PM.

Comments are currently closed for this discussion. You can start a new one.

Keyboard shortcuts

Generic

? Show this help
ESC Blurs the current field

Comment Form

r Focus the comment reply box
^ + ↩ Submit the comment

You can use Command ⌘ instead of Control ^ on Mac