Skip to content

Manipulate Visual Studio project files from Python.

License

Notifications You must be signed in to change notification settings

fpalazzolo/pyvcproj

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pyvcproj Build Status

Manipulate Visual Studio project and solution files from Python. Currently only tested with Visual Studio 2010.

Installing

setup.py install

Usage

Getting project files from a solution:

import vcproj.solution

solution = vcproj.solution.parse('path/to/my/solution.sln')
for project_file in solution.project_files():
	print project_file

Getting source and include files from a project_file:

import vcproj.project

project = vcproj.project.parse('path/to/my/project.vcxproj')
for source_file in project.source_files():
    print source_file
for include_file in project.include_files():
    print include_file

About

Manipulate Visual Studio project files from Python.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 75.4%
  • C++ 20.0%
  • C 4.6%