Reputation: 89
One of the css files disappears from the publish obj/Release/Package/PackageTmp/ folder during publishing and then VS tells me it can't find the file. It's as if one portion of the project says to delete the file and the other tries to find the file. Any ideas? I hope I gave enough info. It's short, but pretty much sums up the issue to my knowledge.
csproj file. The only file I'm having an issue with is the survey.css file. It appears just twice in the csproj file.
<Content Include="greybox\logo.gif" />
<Content Include="greybox\next.gif" />
<Content Include="greybox\night_valley.jpg" />
<Content Include="greybox\night_valley_thumb.gif" />
<Content Include="greybox\night_valley_thumb.jpg" />
<Content Include="greybox\prev.gif" />
<Content Include="greybox\salt.jpg" />
<Content Include="greybox\salt_thumb.gif" />
<Content Include="greybox\w_close.gif" />
<Content Include="layout.css" />
<Content Include="obj\Debug\Survey.csproj.FileListAbsolute.txt" />
<Content Include="obj\Debug\Survey.dll" />
<Content Include="obj\Debug\Survey.pdb" />
<Content Include="obj\Release\Package\PackageTmp\bin\Survey.dll" />
<Content Include="obj\Release\Package\PackageTmp\default.aspx" />
<Content Include="obj\Release\Package\PackageTmp\layout.css" />
<Content Include="obj\Release\Package\PackageTmp\survey.css" />
<Content Include="obj\Release\Package\PackageTmp\ThankYou.aspx" />
<Content Include="obj\Release\Survey.csproj.FileListAbsolute.txt" />
<Content Include="obj\Release\Survey.dll" />
<Content Include="obj\Release\Survey.pdb" />
<Content Include="obj\Release\_WPPLastBuildInfo.txt" />
<Content Include="survey.css" />
<Content Include="SurveyAdded.aspx" />
<Content Include="ThankYou.aspx" />
<Content Include="Web.config" />
Upvotes: 0
Views: 3948
Reputation: 2237
I would open your CSProj file up in a text editor and see if you can find where that file is referenced. A simple text search will help. Either you will discover where it is hiding inside your project, or you can just delete it using the text editor.
Upvotes: 4