MSB4044

Vishwa

New member
Joined
Dec 22, 2022
Messages
2
Programming Experience
10+
Hi Team,

Am getting below error when i try to build the Azure function app in VS 2022 Enterprise version. please advise.

C:\Program Files\dotnet\sdk\7.0.101\Microsoft.Common.CurrentVersion.targets(5513,5): error MSB4044: The "FindUnderPath"
task was not given a value for the required parameter "Path".
Am completely stuck and not sure how to come out of it.

Thanks,
Vishwa
 
The really way to solve the problem is to run your build on the command line using MSBuild and passing in the verbose and diagnostics flags to see what was actually being passed in, and by which build operation. That will then inform you of the true root cause, which will then help you fix the problem. This will require you going you the MSBuild learning curve.

If you do but want to go down that more accurate path, the best alternative if to start over with a new project. Build and run with just the default template without adding any code. That should work. Then incrementally add code and NuGet packages and build again. Do this in small steps and committing to source control along every step. The last incremental change you make that breaks the build will obviously be the culprit. Look at the diffs in the .csproj files between the working and broken builds to try to see where the missing path should come from.
 
Hi Team,
Thanks for the reply. Am still stuck up with the issue, running on .Net Core 2.0 framework.

Getting the below screen shot for the Azure function app when i try to build it in VS 2022 enterprise version.

1671734281416.png


Please advise.

Thanks and Regards,
Vishwa
 
.NET Core 2.0 ended support back on July 10, 2018.
 
Back
Top Bottom