-1

How to read project file .csproj to compile only those class files (.cs) which includes in project. And ignore file which excluded from project.

The Chairman
  • 7,087
  • 2
  • 36
  • 44
Dipti
  • 21
  • 4

1 Answers1

1

Why would you want to do this? You can run MSBuild from <exec/> task and feed it with the sln/csproj files. And MSBuild will do the rest.

Yan Sklyarenko
  • 31,557
  • 24
  • 104
  • 139