I have this in my package to copy some views over ...
# package-development
s
I have this in my package to copy some views over on install, and hopefully only on install..
Copy code
<Message Text="Copying TailwindKit View Files: $(ViewFilesPath) - #@(ViewContentFiles->Count()) files" Importance="high" />
        <Copy SourceFiles="@(ViewContentFiles)" DestinationFiles="@(ViewContentFiles->'$(MSBuildProjectDirectory)\Views\%(RecursiveDir)%(Filename)%(Extension)')" SkipUnchangedFiles="true"
          Condition="%(Filename)!='' AND (!Exists('$(MSBuildProjectDirectory)\Views\%(RecursiveDir)%(Filename)%(Extension)'))" />
My expectation would be that after the user installs it, they can edit the view and not have it overwritten on rebuild, this seems to work fine locally but I can't get it to work in cloud without breaking sync with checksum errors