Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8354099
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T09:27:16+00:00 2026-06-09T09:27:16+00:00

I am working on a .net application (VS2010) with x no. of solutions and

  • 0

I am working on a .net application (VS2010) with x no. of solutions and variable no. of projects in those solutions.
I need to check if the project properties (specific to a certain number of projects) are homogenous, and also check/validate the reference paths during the build.
Is there an API that does this? If not, how do i go about building one?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T09:27:17+00:00Added an answer on June 9, 2026 at 9:27 am

    You can use MSBuild framework to do the parsing and perform evaluation of the project files. The main classes you need to use are ProjectCollection and Project.

    But first you will need to deal with your .sln files. Since API cannot load .sln files directly, you will need first to convert your .sln files to projects files, that API can load. The method is described here. You will get a .sln.metaproj files after conversion, that are equivalent representation of .sln, but have MSBuild format. After that you can parse .sln.metaproj files and referenced projects and evaluate properties you need. This sample prints out the OutputPath property evaluation for Debug|AnyCPU configuration of all projects in the solution:

        Dictionary<string, string> globalProperties = new Dictionary<string, string>();
    
        globalProperties.Add("Configuraion", "Debug");
        globalProperties.Add("Platform", "AnyCPU");
    
        ProjectCollection pc = new ProjectCollection(globalProperties);
    
        Project sln = pc.LoadProject(@"my_directory\My_solution_name.sln.metaproj", "4.0");
    
        foreach (ProjectItem pi in sln.Items)
        {
            if (pi.ItemType == "ProjectReference")
            {
                Project p = pc.LoadProject(pi.EvaluatedInclude);
                ProjectProperty pp = p.GetProperty("OutputPath");
                if (pp != null)
                {
                    Console.WriteLine("Project=" + pi.EvaluatedInclude + " OutputPath=" + pp.EvaluatedValue);
                }
            }
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am working on ASP.net Webform application where i need to block certain dates
I have a working ASP.NET MVC 3 application. The project is built with VS
I'm using VS2010 and ASP.NET MVC 4 for my project. I need a controller
i'm working on .Net project using Jquerymobile and asp.net on VS2010 ,when i test
I'm working in a .net application where we need to generate XML files on
I am working on asp.net application and I have generated entity model (edmx) from
I am working on a .NET application where there appears to be a memory
I am working on asp.net application and I have an update panel like this:
I am working on a .NET application to reduce image file sizes using ImageMagick
I've been working on a .NET application and experiencing a memory error (I'm a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.