Click here to Skip to main content
15,907,236 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Getting a specific version of rich edit not hitting my WordBreak Function Pin
ForNow9-Mar-22 13:49
ForNow9-Mar-22 13:49 
QuestionStruct with union with different sized members - How can I declare the smallest struct? Pin
arnold_w6-Mar-22 1:17
arnold_w6-Mar-22 1:17 
AnswerRe: Struct with union with different sized members - How can I declare the smallest struct? Pin
Mircea Neacsu6-Mar-22 2:39
Mircea Neacsu6-Mar-22 2:39 
QuestionLine Break Rich Edit Pin
ForNow5-Mar-22 17:42
ForNow5-Mar-22 17:42 
AnswerRe: Line Break Rich Edit Pin
Richard Andrew x646-Mar-22 4:33
professionalRichard Andrew x646-Mar-22 4:33 
GeneralRe: Line Break Rich Edit Pin
ForNow6-Mar-22 5:19
ForNow6-Mar-22 5:19 
QuestionC++ even numbers query Pin
Member 1555051328-Feb-22 16:30
Member 1555051328-Feb-22 16:30 
AnswerRe: C++ even numbers query Pin
Victor Nijegorodov28-Feb-22 20:31
Victor Nijegorodov28-Feb-22 20:31 
GeneralRe: C++ even numbers query Pin
Member 1555051328-Feb-22 21:33
Member 1555051328-Feb-22 21:33 
GeneralRe: C++ even numbers query Pin
Victor Nijegorodov28-Feb-22 23:02
Victor Nijegorodov28-Feb-22 23:02 
GeneralRe: C++ even numbers query Pin
Member 155505131-Mar-22 17:31
Member 155505131-Mar-22 17:31 
GeneralRe: C++ even numbers query Pin
Victor Nijegorodov1-Mar-22 22:32
Victor Nijegorodov1-Mar-22 22:32 
GeneralRe: C++ even numbers query Pin
Richard MacCutchan1-Mar-22 22:40
mveRichard MacCutchan1-Mar-22 22:40 
QuestionRe: C++ even numbers query Pin
David Crow1-Mar-22 3:50
David Crow1-Mar-22 3:50 
AnswerRe: C++ even numbers query Pin
Richard Andrew x642-Mar-22 9:42
professionalRichard Andrew x642-Mar-22 9:42 
QuestionC Pin
Christine Belisario25-Feb-22 20:48
Christine Belisario25-Feb-22 20:48 
AnswerRe: C Pin
Richard MacCutchan25-Feb-22 22:52
mveRichard MacCutchan25-Feb-22 22:52 
AnswerRe: C Pin
RedDk26-Feb-22 8:47
RedDk26-Feb-22 8:47 
GeneralRe: C Pin
Greg Utas26-Feb-22 10:32
professionalGreg Utas26-Feb-22 10:32 
Questionhow to dynamically delete sub-control created in run-time Pin
wuxianzhong18-Feb-22 15:54
wuxianzhong18-Feb-22 15:54 
AnswerRe: how to dynamically delete sub-control created in run-time Pin
Gerry Schmitz18-Feb-22 20:30
mveGerry Schmitz18-Feb-22 20:30 
AnswerRe: how to dynamically delete sub-control created in run-time Pin
Victor Nijegorodov18-Feb-22 21:18
Victor Nijegorodov18-Feb-22 21:18 
AnswerRe: how to dynamically delete sub-control created in run-time Pin
Randor 19-Feb-22 6:27
professional Randor 19-Feb-22 6:27 
QuestionAzure DevOps Chocolatey question : install vs2022 Pin
Maximilien17-Feb-22 7:52
Maximilien17-Feb-22 7:52 
(I'm not sure there's a better place to ask)

I'm trying to use VS2022 in our build pipeline.

I have a pipeline like this :

Quote:
pool:
vmImage: 'windows-latest'

variables:
solution: 'MySolution.sln'

steps:
  • task: CmdLine@2
    displayName: 'Choco install additional packages'
    inputs:
    script: |
    choco install windows-sdk-8.1 visualstudio2017community microsoft-build-tools-2013 visualstudio2022professional
  • task: VSBuild@1
    displayName: 'Build Debug143|x64'
    inputs:
    vsVersion: '17.0'
    solution: '$(solution)'
    maximumCpuCount: true
    msbuildArchitecture: 'x64'
    platform: 'x64'
    configuration: 'Debug143'


I get errors that it cannot find the installation.

Quote:
2022-02-17T18:46:30.0197396Z ##[error]MyProject.vcxproj(77,3): Error MSB4019: The imported project "C:\Program Files\Microsoft Visual Studio\2022\Professional\MSBuild\Microsoft\VC\v170\Microsoft.Cpp.Default.props" was not found. Confirm that the expression in the Import declaration "C:\Program Files\Microsoft Visual Studio\2022\Professional\MSBuild\Microsoft\VC\v170\Microsoft.Cpp.Default.props" is correct, and that the file exists on disk.


When I put a "dir /s" in my pipeline, it looks like VS2022 is not installed in that path.

I'm not sure what I have to do to make it work.

Any Idea ?
Thanks.
CI/CD = Continuous Impediment/Continuous Despair

AnswerRe: Azure DevOps Chocolatey question : install vs2022 Pin
Mircea Neacsu17-Feb-22 8:02
Mircea Neacsu17-Feb-22 8:02 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.