Replies: 1 comment 2 replies
-
The Import sections in project files for 2.x can be processed with msbuild; For 3.x through IeXod but this is expected to be compatible with msbuild too. Thus, ~ using Sln l = new("<.sln>", SlnItems.Env);
l.Result.Env
.LoadProjects(l.Result.ProjectItemsConfigs.Where(p => p.project.EpType == ProjectType.Vc))
.SelectMany(xp => xp.GetImports())
.Where(x => x.project.EndsWith(".props") && x.project.StartsWith("$"))
... |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I would like to read all import project from vcxproj file
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> <Import Project="$XXXXXXXX.props" /> </ImportGroup>
Is it possible with your library? if yes, how?
Beta Was this translation helpful? Give feedback.
All reactions