I am getting error that the .productConfiguration.targets
file is not found in a location because it is not imported and so the build is failing, while the file does exist in the location it is checking
These errors I am getting, all of them are because of the same file that it is saying it cannot find
While you can see the file does exist in the location.
Any idea?
Update
It worked when I commented below three lines in .productConfiguration.targets
file
<!--<Import Project="$(MSBuildThisFileDirectory)..\..\product-config\.msbuild\TransformApplicationConfig.targets" />
<Import Project="$(MSBuildThisFileDirectory)..\..\product-config\.msbuild\TaskConfigPreprocessor.targets" />-->
<!--<Import Project="$(MSBuildThisFileDirectory)..\..\product-config\$(productToBuild)\configForInclude.props" />-->
So seems msbuild could not import them. It worked by commenting them but not sure it is the right way or not.
Ideally it should load.
Please suggest me the correct way to fix it