VS 2013 - MS build issues

I recently upgraded from VS2010 to VS2013 in our project.

When I try to start our web deployment, I get the following error:

"C: \ G \ ectc.proj" (expand target) (1) → "C: \ G \ Source \ Web \ Web.csproj (ResolveReferences; _CopyWebApplicatio n target) (14:18) → C: \ g \ Source \ Web \ Web.csproj: error MSB4057: target application "_CopyWeb" does not exist in the project.

It is strange if I check the code before updating and run the same build command, which:

msbuild ctc.proj / t: Deployment

It works fine, but doesn't work if I run this command based on VS 2013 code.

thanks

+1
source share
1

ctc.proj 2010 2013 , , 2013 , CopyWebApplication.

2013 :

msbuild ctc.proj /pp >2013.txt

2010 :

msbuild ctc.proj /pp >2013.txt

, , CopyWebApplications.

+1

Source: https://habr.com/ru/post/1526974/


All Articles