projectkudu / KuduSync

A file copying tool with semantic appropriate for deploying web site files

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support for wildcard entries in csproj

deevus opened this issue · comments

I have a directory Assets/ that is generated at build time using webpack. It is defined in my csproj using the following:

  <ItemGroup>
    <Content Include="Assets\**\*" />
  </ItemGroup>

Can this be included in the kuduSync command?

I would think that his should just work. The default deployment script first runs msbuild to produce an artifact folder, and then copies everything in there using KuduSync. Kudu or KuduSync don't need to know anything about the wild cards.

I'll retest and get back to you.

You're correct, it does work. Thanks.