Questions tagged [vcxproj]

84 questions
0
votes
0 answers

Qt, Visual Studio 2017 and .vcxproj.user Files

I am using Visual Studio 15.9.14 and Qt 5.13.0 on multiple machines. When I check out my source from version control: If I open the VS IDE to build my solutions, everything compiles and links correctly. If I build the solutions from the command…
GTAE86
  • 1,780
  • 3
  • 29
  • 39
0
votes
0 answers

Visual C++ additional directories missing when received from version control

I have a Visual C++ project that I have developed on one computer and have committed it to a repository and pulled it onto another computer. When I open the solution and attempt to build it on the other computer, the solution won't build and upon…
Dan
  • 1
0
votes
1 answer

Builds with Visual Studio 2017 project but _MSC_VER shows 1900

I have a problem with a project and maybe someone could give me some hints. I have a project within a solution, which was created or updated the last time with Visual Studio 2015. Now, I want to build this project with Visual Studio 2017. So, I…
devopsfun
  • 1,368
  • 2
  • 15
  • 37
0
votes
1 answer

Difference between Tools Version in .vcxproj and .vcxproj.filters

I have a C++ project in VS 2017. Tools version in .vcxproj file is 15.0 whereas in .vcxproj.filters is 4.0. Project.vcxproj:-
Bhavna Sharma
  • 29
  • 1
  • 4
0
votes
1 answer

How to have conditional project reference in a vcxproj file

I have a VisualC++ project as a vcxproj and I need to have one of the ProjectDependency elements conditionally included. I've tried a few different ways and nothing seems to be working. In my fubar.vcxproj I have the following:
cary
  • 21
  • 3
0
votes
1 answer

Creating A New Visual Studio Template Project Using The Command Line

I'm working on a project which requires us to remotely build on some Raspberry Pis. We're using Visual Studio 2017, which has introduced some limitations. I've managed to create two Visual Studio templates, one that can be built on Windows and one…
micka190
  • 742
  • 2
  • 8
  • 20
0
votes
2 answers

MSBuild Shorten Configuration Managment In vcxproj-Files

Windows Version: Microsoft Windows [Version 10.0.14393] MSBuild Version : Microsoft (R)-Buildmodul, Version 15.1.1012.6693 The project is written in C. In the *.vcxproj files of this project there is a lot of code in like this
user69453
  • 1,279
  • 1
  • 17
  • 43
0
votes
1 answer

I need to get the output file of a vcxproj programatically using c#

I know that I can look into properties,TargetPath, TargetDir, TargetFileName, by right clicking on a project and checking out it's properties but I need to do this programatically. Any help would be very much appreciated.
jshaf
  • 309
  • 1
  • 18
0
votes
1 answer

Passing properties to MSBUILD Task

I am trying to call msbuild task for all the project files with properties. I call the msbuild task four times with hardcoded configurations and platform combination. Something like
Kamal Deka
  • 148
  • 1
  • 14
0
votes
0 answers

Generic vcxproj.filters for all my visual studio 2013 projects

Is it possible to create only one vcxproj.filters file for all the Visual studio C/C++ projects? I have created many vcxproj files manually where I have extracted few common properties to few other project files which I import in the manually…
Kamal Deka
  • 148
  • 1
  • 14
0
votes
0 answers

.xproj does not throw ItemAdded event

I want my extension to do something everytime an item gets added to the project. This works fine for normale Projects or, with some magic (see here), for the Project Type "Website". But i cant get it to work with .xproj. Here my current code to…
Sosian
  • 622
  • 11
  • 28
0
votes
0 answers

Editing Precompiled Header setting for one configuration affects another

We are using Visual Studio 2013 at work and I have recently come across a problem I haven't seen before. We have a project with some COM definitions in an _i.c file. The problem is when we added two configurations to the projects and solution,…
Peter Nimmo
  • 1,045
  • 2
  • 12
  • 25
0
votes
1 answer

CMAKE build different platform in one solution

Hello. From cmake i'm generate visual studio(2013) solution with x64 generator, and include_external_msproject which have only win32 platform. When i'm open solution, by default, my win32 solution excluded from build(Field Build don't…
pingWIN
  • 1
  • 3
0
votes
1 answer

I need help to convert vcxproj to cmake

There is Visual Studio 2015 project. I need to compile it for Debian. I am trying to convert it to makefile using vcxproj2cmake. Firstly I want to compile it on Windows. perl vcxproj2cmake.pl project1.vcxproj "\Debug|Win32" generated…
Ufx
  • 2,595
  • 12
  • 44
  • 83
0
votes
1 answer

Unnecessary rebuild in Visual Studio 2013: .RSP build input is missing

I have mixed C#/C++ solution in VS2013. One of the C++ projects is getting rebuilt every time I run build even when nothing is changed. In the diagnostic output it says: 1> Project not up to date because the following 1 build inputs were missing: 1>…