Microsoft.Cpp.Default.props not found on VS2017-Win2016
I'm trying to build C++ project using CMake + Visual Studio on Azure DevOps, but during the execution I get the follow error:
Failed to run MSBuild command:
MSBuild.exe
to get the value of VCTargetsPath:
Microsoft (R) Build Engine version 4.7.3062.0
[Microsoft .NET Framework, version 4.0.30319.42000]
Copyright (C) Microsoft Corporation. All rights reserved.
Build started 11/12/2018 10:32:59 PM.
Project "D:a1stest_packagebuildf67673d3a1c7d4891a0e0cc4fbbe6ee176ee7e38CMakeFiles3.12.3VCTargetsPath.vcxproj" on node 1 (default targets).
D:a1stest_packagebuildf67673d3a1c7d4891a0e0cc4fbbe6ee176ee7e38CMakeFiles3.12.3VCTargetsPath.vcxproj(15,2):
error MSB4019: The imported project "D:Microsoft.Cpp.Default.props" was not found. Confirm that the path in the declaration is correct, and that the file exists on disk.
Building Project "D:a1stest_packagebuildf67673d3a1c7d4891a0e0cc4fbbe6ee176ee7e38CMakeFiles3.12.3VCTargetsPath.vcxproj" (default targets) -- FAILED.
Build FAILED.
Sounds like a script like devenv.bat is required, but I have no idea where a I could found it.
jobs:
- job: VS2017
pool:
vmImage: 'VS2017-Win2016'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.6'
- script: |
pip install bincrafters-package-tools conan-package-tools conan
python build.py
strategy:
matrix:
Visual Studio 2017 14.0:
CONAN_VISUAL_VERSIONS: "14"
As you can see, I'm using VS2017-Win2016 image but I don't have any extra task to set my environment.
The complete log could be found here
How could I fix my environment?
azure azure-devops
add a comment |
I'm trying to build C++ project using CMake + Visual Studio on Azure DevOps, but during the execution I get the follow error:
Failed to run MSBuild command:
MSBuild.exe
to get the value of VCTargetsPath:
Microsoft (R) Build Engine version 4.7.3062.0
[Microsoft .NET Framework, version 4.0.30319.42000]
Copyright (C) Microsoft Corporation. All rights reserved.
Build started 11/12/2018 10:32:59 PM.
Project "D:a1stest_packagebuildf67673d3a1c7d4891a0e0cc4fbbe6ee176ee7e38CMakeFiles3.12.3VCTargetsPath.vcxproj" on node 1 (default targets).
D:a1stest_packagebuildf67673d3a1c7d4891a0e0cc4fbbe6ee176ee7e38CMakeFiles3.12.3VCTargetsPath.vcxproj(15,2):
error MSB4019: The imported project "D:Microsoft.Cpp.Default.props" was not found. Confirm that the path in the declaration is correct, and that the file exists on disk.
Building Project "D:a1stest_packagebuildf67673d3a1c7d4891a0e0cc4fbbe6ee176ee7e38CMakeFiles3.12.3VCTargetsPath.vcxproj" (default targets) -- FAILED.
Build FAILED.
Sounds like a script like devenv.bat is required, but I have no idea where a I could found it.
jobs:
- job: VS2017
pool:
vmImage: 'VS2017-Win2016'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.6'
- script: |
pip install bincrafters-package-tools conan-package-tools conan
python build.py
strategy:
matrix:
Visual Studio 2017 14.0:
CONAN_VISUAL_VERSIONS: "14"
As you can see, I'm using VS2017-Win2016 image but I don't have any extra task to set my environment.
The complete log could be found here
How could I fix my environment?
azure azure-devops
add a comment |
I'm trying to build C++ project using CMake + Visual Studio on Azure DevOps, but during the execution I get the follow error:
Failed to run MSBuild command:
MSBuild.exe
to get the value of VCTargetsPath:
Microsoft (R) Build Engine version 4.7.3062.0
[Microsoft .NET Framework, version 4.0.30319.42000]
Copyright (C) Microsoft Corporation. All rights reserved.
Build started 11/12/2018 10:32:59 PM.
Project "D:a1stest_packagebuildf67673d3a1c7d4891a0e0cc4fbbe6ee176ee7e38CMakeFiles3.12.3VCTargetsPath.vcxproj" on node 1 (default targets).
D:a1stest_packagebuildf67673d3a1c7d4891a0e0cc4fbbe6ee176ee7e38CMakeFiles3.12.3VCTargetsPath.vcxproj(15,2):
error MSB4019: The imported project "D:Microsoft.Cpp.Default.props" was not found. Confirm that the path in the declaration is correct, and that the file exists on disk.
Building Project "D:a1stest_packagebuildf67673d3a1c7d4891a0e0cc4fbbe6ee176ee7e38CMakeFiles3.12.3VCTargetsPath.vcxproj" (default targets) -- FAILED.
Build FAILED.
Sounds like a script like devenv.bat is required, but I have no idea where a I could found it.
jobs:
- job: VS2017
pool:
vmImage: 'VS2017-Win2016'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.6'
- script: |
pip install bincrafters-package-tools conan-package-tools conan
python build.py
strategy:
matrix:
Visual Studio 2017 14.0:
CONAN_VISUAL_VERSIONS: "14"
As you can see, I'm using VS2017-Win2016 image but I don't have any extra task to set my environment.
The complete log could be found here
How could I fix my environment?
azure azure-devops
I'm trying to build C++ project using CMake + Visual Studio on Azure DevOps, but during the execution I get the follow error:
Failed to run MSBuild command:
MSBuild.exe
to get the value of VCTargetsPath:
Microsoft (R) Build Engine version 4.7.3062.0
[Microsoft .NET Framework, version 4.0.30319.42000]
Copyright (C) Microsoft Corporation. All rights reserved.
Build started 11/12/2018 10:32:59 PM.
Project "D:a1stest_packagebuildf67673d3a1c7d4891a0e0cc4fbbe6ee176ee7e38CMakeFiles3.12.3VCTargetsPath.vcxproj" on node 1 (default targets).
D:a1stest_packagebuildf67673d3a1c7d4891a0e0cc4fbbe6ee176ee7e38CMakeFiles3.12.3VCTargetsPath.vcxproj(15,2):
error MSB4019: The imported project "D:Microsoft.Cpp.Default.props" was not found. Confirm that the path in the declaration is correct, and that the file exists on disk.
Building Project "D:a1stest_packagebuildf67673d3a1c7d4891a0e0cc4fbbe6ee176ee7e38CMakeFiles3.12.3VCTargetsPath.vcxproj" (default targets) -- FAILED.
Build FAILED.
Sounds like a script like devenv.bat is required, but I have no idea where a I could found it.
jobs:
- job: VS2017
pool:
vmImage: 'VS2017-Win2016'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.6'
- script: |
pip install bincrafters-package-tools conan-package-tools conan
python build.py
strategy:
matrix:
Visual Studio 2017 14.0:
CONAN_VISUAL_VERSIONS: "14"
As you can see, I'm using VS2017-Win2016 image but I don't have any extra task to set my environment.
The complete log could be found here
How could I fix my environment?
azure azure-devops
azure azure-devops
asked Nov 13 '18 at 21:59
uilianriesuilianries
77110
77110
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53290143%2fmicrosoft-cpp-default-props-not-found-on-vs2017-win2016%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53290143%2fmicrosoft-cpp-default-props-not-found-on-vs2017-win2016%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown