Filetracker: error FTK1011
When I try to compile 开发者_开发问答project under framework 4, I get error:
Filetracker: error FTK1011
Under 3.5 everything works fine, on the other machine, compiling this project under 4 is also works. And this problem I have only with one project, other projects I can compile under 4 without errors.
Any ideas?
Is your question the same as this issue? If so, it looks like the fix will come in an update. Do you have non-ascii characters in your build paths, perhaps? That issue references this one.
This most likely has to do with simultaneous project builds. For each project, go to properties, Cofiguration Properties\General and set Intermediate directory to a unique name by substituting $(ProjectDir) for $(SolutionDir). This worked for me.
I have this error appeared when I converted the project of Visual Studio 2008/2009
version to Visual Studio 2010
under Windows Seven
.
Solution that helped me: change
.NET framework version to 4.0
in the converted project, by default version was 3.5.
In my case, this error occurred during cmd line builds and was fixed when I modified "arm64" platform entries to "ARM64" in the vcxproj (note the upper case) that gave this error.
In My Case Same Problem when I am changing Debug mode to Release.
I resolve this error by
CMakeSettings.json file.
"name": "x64-Release",
"configurationType": "Release",
CppProperties.json File.
"name": "x64-Release",
Thanks,
ANR .S
精彩评论