FutuToad
FutuToad

Reputation: 2850

.DS-store problems when trying to publish with web deploy

I'm trying to use web-deploy but get this when running web deploy

Error 4 Copying file Content\font\ui-fonts\Font - Logo, headlines.DS_Store to obj\Release\Package\PackageTmp\Content\font\ui-fonts\Font - Logo, headlines.DS_Store failed. Could not find file 'Content\font\ui-fonts\Font - Logo, headlines.DS_Store'. 0 0 ui.WebUI

my ms build works fine

Upvotes: 5

Views: 2164

Answers (1)

Juan Rey Hernández
Juan Rey Hernández

Reputation: 2868

I had the same error.

Copying file style\.DS_Store to obj\Debug\Package\PackageTmp\style\.DS_Store failed.

Could not find file 'style\.DS_Store'.

Find and delete the .DS_STORE files that your project contains.

.DS_Store

Upvotes: 1

Related Questions