The vcproj tag has no wiki summary.
1
vote
0answers
20 views
VS2012 project file into makefile
hello all i'm developing cross-platform system.
I know that we have make it so. and some others like sln2mak.
however they do not support Visual Studio 2012.
does anyone know if something like this ...
0
votes
2answers
51 views
Can I get the GUID generated by CMake for a specific vcproj at cmake time?
Preamble: I am trying to integrate my C# csproj with the rest of our C++ and C++/CLI code-base cmake build. I have received advise against trying to do this, because CMake doesn't co-operate well with ...
0
votes
1answer
157 views
Need to use environment variable in file path within vcproj file
We're using visual studio 2005. I know, but it's what we have.
So, we have a project folder, plus some "other" code in another folder. The other code is from other groups and is read-only. Since ...
0
votes
0answers
58 views
Resolving .vcxproj dependencies with c# project clas doesn't return included folders
I'm trying to write a tool which will resolve dependencies between c++ and c# projects.
When I try to get folders included in vcxproj, it returns everything but included folders.
I searched, where I ...
0
votes
1answer
36 views
my vcproj does not comiple when added in another sln (already containing some other project)
I have pangoft2.vcproj. Once I have set the include directories etc., it compiles successfully.
Now, in a new .sln (where I have a pango.vcproj), I add this pangoft2.vcproj. Now, when I compile the ...
0
votes
1answer
47 views
Batch file to delete *.vcproj.* e.g. code.vcproj.user1 but no *.vcproj
how to write a batch file to delete VisualStudioUserFile (*.vcproj.*) only but not the VisualStudioProject (*.vcproj)?
0
votes
0answers
146 views
Change the vcproj file manually (visual c++ 2008)
I have to change my vcproj file manually in order to remove some custom build steps. It is looking like below:
<Tool
Name="VCCLCompilerTool"
...
0
votes
1answer
170 views
using visual studio command to copy files into outdir
In my project under "Resource Files" I have some properties files that I'd like to be copied to the output directory. The idea is that I could just give my output directory to someone else and they'd ...
1
vote
1answer
249 views
inheritance of project (.vcproj) properties in Visual Studio 2010
My IDE is Visual Studio 2010.
I have a Solution (.sln) containing more than 100 Projects (.vcproj).
The language is C++.
The solution has two Configurations: "Release" and "Debug".
The solution ...
2
votes
0answers
455 views
LoadLibrary API Fails with 998 (ERROR_NOACCESS) on WIN7 X64
The API LoadLibrary() fails with my MFC application when run over win7 64 bit PC. It returns error 998 for a specific DLL. This DLL built over 32 bit machine. But no issues to load other DLLs.
I ...
5
votes
1answer
384 views
How do I force Visual Studio 2008 to save vcproj files with correct locale?
In my team, some are developing using Swedish locale (albeit with English language) and others are using US-English. I prefer Swedish formatting of date/time/number/currency.
There's a bug in the ...
0
votes
1answer
547 views
how to call devenv to build some .vcproj with specific building macro in a solution (containing many .vcproj)?
all!
There are many vc projects in my solution. i can call devenv.exe xxx.sln to build/rebuild all these projects together. Also i can right-click some specific project and rebuild it.
My question: ...
2
votes
2answers
122 views
XSLT: keeping whitespaces when copying attributes
I'm trying to sort Microsoft Visual Studio's vcproj so that a diff would show something meaningful after e.g. deleting a file from a project. Besides the sorting, I want to keep everything intact, ...
0
votes
1answer
499 views
VCBuild: Unable to load Property sheet
VCBuild is failing to load a property sheet. How can I specify $(SolutionDir)?
>vcbuild /logfile:log.txt /rebuild "./Project1/Project1.vcproj"
The following error has occurred during XML parsing:
...
2
votes
1answer
785 views
Automatically include all .cpp/.h files of a folder in a vcproj Project in Visual Studio
Is there a way to set a vcproj Project folder in order to automatically include all .cpp or .h files depending on the path of the project ?
On other words, when adding files to the folder of my ...
0
votes
1answer
5k views
getting the value of $(ProjectDir), $(SolutionDir) in a vcproj file
Is it possible to get the value of $(ProjectDir) or $(SolutionDir) programatically oustside Visual Studio? My scenario is I need to read a vcproj file as a text file and get its properties like the ...
0
votes
1answer
481 views
Project Reference format in a vcproj file(vs2008)
Here I am again asking for help.
Can anyone please show me a sample of a vcproj file with a project reference(not assembly reference) or could at least show me the format how is it written in the ...
0
votes
4answers
252 views
Allowing developer-specific settings in VS2008 Native C++ projects
Is it possible to combine the following properties, and if so, how?
Store in our version control system some Visual Studio 2008 native C++ (VCPROJ) project files for the developers in our team that ...
2
votes
2answers
656 views
Xerces and Xalan-C for windows
Would like to port Xerces and Xalan to latest Microsofy Visual Studio (2010).
For Xerces, all I have to do is download from site Xcerces version 3.1.1.
But it is not preintegrated with Xalan-C. only ...
0
votes
4answers
370 views
How can multiple developers use the same vcproj files?
I'm working on a project with two other developers that's built on FireBreath. So far, I've been able to get things working perfectly on my machine, but we need to coordinate our development via ...
1
vote
3answers
387 views
Why Visual Studio removes the drive letter from the AssemblyReference RelativePath when editing a project?
using visual studio we always load and build references to a unit (R:). The problem is that when someone edits any project properties the drive letter is removed from the assembly path and then the ...
0
votes
0answers
280 views
In the VS2008 vcproj file how important are the ProjectGUID and the UniqueIdentifier?
I have copy and pasted entire C++/CLI projects and been able to run them without any trouble as long as the relative paths to assemblies, headers, and libs remain the same. In each one of these ...
2
votes
1answer
232 views
How can I read the OutputDirectory property from a vcproj (2008) file in a wrapper script?
I am trying to write an MSBuild wrapper script that builds a vcproj (well, a solution containing vcproj files) and then copies the output of a particular vcproj file into a special "package" directory ...
0
votes
1answer
345 views
Cleaning up vcproj files
We have a fairly big code base with several platform and build configurations, and our vcproj files keep growing exponentially. We are using visual studio 2005. The problem is that every time we add a ...
1
vote
2answers
679 views
Reading the .vcproj file with C#
We create the vcproj file with the makefileproj keyword so we can use our own build in VS. My question is, using C#, how do you read the "C++" from the following vcproj file:
<?xml version="1.0" ...
1
vote
1answer
58 views
What are the other possible names of project files in C# other than .cproj?
.cproj is not the only name of the project file. My solution says there are 5 projects but only three .cproj files are seen. What is the file extinsion of other project files/? THe icon that ...
1
vote
3answers
165 views
What is the delimiter name of a C# project file?
What is the file name "delimiter? name of a C# project file?
I am not sure if "delimiter" is the right term. A solutions file ends as ".sln". How does a project file end in Visual Studio 2010?
0
votes
1answer
435 views
Consecutive build of VS2005 and VS2008 C++ projects causes LNK1104 error
I have VS2005 and VS2008 installed on the same machine. I also have a common codebase that I build using both '05 and '08. For this purpose, I have 2 VC projects.. A '08 project called XYZ_2008.vcproj ...
6
votes
4answers
9k views
How to generate .sln/.vcproj using qmake
I have main.cpp in c:\test folder and do the following:
qmake -project
qmake -tp vc test.pro
The answer is:
WARNING: Unable to generate output for: C:/test//Makefile.Debug [TEMPLATE vcapp]
...
3
votes
1answer
909 views
VS2008 - Can't remove project configuration
I have a Windows Mobile/Pocket PC project in Visual Studio 2008 SP1. I have tried to remove an old build configuration "ReleaseCN3" from the solution using the Configuration Manager. I run the ...
10
votes
2answers
743 views
VS2008: how to run two separate projects from the same solution
I have a single un-managed C++ console-app solution (.sln) with two projects (.vcproj) both are built as .exe. I want to run them both at the same time (one is a client and one is a server). How do I ...
2
votes
6answers
1k views
How to have different Project Dependencies for each Project Configuration?
I would like to have different Project Dependencies depending on which Project Configuration I'm currently building.
For example, I don't want to build and link SomeTestLib.vcproj in Release ...
1
vote
3answers
7k views
How do I get msbuild.exe? Can it build a .vcproj when VS2008 is not installed?
I know msbuild will be installed, if I install Visual Studio 2005 or 2008.
I know msbuild is also installed if I install the .NET Framework SDK.
As of .NET 3.0, I think there is no longer a ...
4
votes
4answers
2k views
Where can I find a reference for the .vcproj file structure?
I looked on MSDN, couldn't find it.
I found an XML Schema for the .vcproj file, which is nice.
But what I really want is an explanation for each of the elements in the vcproj file, a reference.
The ...
15
votes
2answers
3k views
Can the working directory be set in the project (.vcproj) file?
I have a script that generates a .sln file and a few .vcproj files for visual studio 2005. I need to set the WorkingDirectory option but its specified in the .user file. A file we cannot currently ...


