I have a Problem with a Windows Store App.
I moved the folder and now I cant compile it, I get the error:
Fehler 2 File C:\[old path]\Strings\en-US\Resources.resw not found. C:\[new path]\MakePRI
I dont know how to fix it because the app is in the same relative path in the project as before.
any hints for a solution?
This item was probably added to the project with absolute path. You can fix that in one of two ways:
In
SolutionExplorerremoveResources.reswfrom the project. Then click onShow All Filesicon to make the file appear in its folder although it’s not included in the project (I understand you did copy it over when moving the project). Now right click on the file and selectInclude In Project. After that you can again turn offShow All Files.In
Solution Explorerright click on the project and selectUnload Project. Now right click on the project again and selectEdit ProjectName.csproj. In the file findResources.reswand replace the existing tag (and any subtags) with<PRIResource Include="Strings\en-US\Resources.resw" />. Save the changes and close the file. Right click on the project again and selectReload Project.