Hi,
My PCF commands were working fine till yesterday, but as of today I am not able to run any msbuild command to create solution package for my PCF control.
I am running msbuild /t:build /restore, I also tried msbuild /p:configuration=Release but received the below error.
Error - The OutputPath property is not set for project 'mmr.cdsproj'. Please check to make sure that you hav
e specified a valid combination of Configuration and Platform for this project. Configuration='Debug' Platform='AnyCP
U'. You may be seeing this message because you are trying to build a project without a solution file, and have specifi
ed a non-default Configuration or Platform that doesn't exist for this project.
I have seen some solutions and found that there is a tag named as PropertyGroup with condition as Debug that should be changed to Release.
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
However, this line is not present in my cdsproj file, which was created by the PCF commands to create the solution.
Any help would be appreciated.
Thanks!