0

Appveyor を使用して Web アプリを Azure にデプロイしていますが、すべてのコンポーネントが grunt でコンパイルされ、ビルドは成功し、デプロイも行われます。問題は、bower_components フォルダーがデプロイされず、grunt によって生成されたファイルとフォルダーです。

appveyor.yml に何かコードがありませんか?

shallow_clone: true
# version format
version: 1.1.{build}
# Fix line endings in Windows. (runs before repo cloning)
init:
  - git config --global core.autocrlf true

cache:
  - packages -> **\packages.config
  - Sigma.Website\bower_components -> Sigma.Website\bower.json
  - Sigma.Website\node_modules -> Sigma.Website\package.json

install:
  - npm install -g grunt-cli  1> nul

before_build:
  - ps: .\CreateBuildTxt.ps1  
  - nuget restore
  - cmd: |
          cd Sigma.Website
          npm install
          grunt
          cd ..

build:
  publish_wap: true

#Deployment configuration
deploy:
- provider: WebDeploy
  server: https://sigma.scm.azurewebsites.net:443/msdeploy.axd?site=sigma
  website: sigma
  username: $sigma
  password:
    secure: xxxxxx
  ntlm: false
  remove_files: false 
  app_offline: false
  artifact: Sigma.Website
  on:
    branch: master

notifications:
  - provider: Slack
    incoming_webhook: xxxx
    channel: '#sigma-dev'
    on_build_success: true
    on_build_failure: true
4

1 に答える 1

0

BeforeBuild次のターゲットを Web アプリケーション.csproj(または.vbproj)に追加します。

<Target Name="BeforeBuild">
  <ItemGroup>
    <Content Include="bower_components\**\*.*" />
  </ItemGroup>
</Target>
于 2016-07-10T03:22:24.983 に答える