Skip to content

Commit c4cf821

Browse files
committed
Included a copy of InitModules project in the solution for testing, added comments
1 parent a19251b commit c4cf821

File tree

3 files changed

+31
-10
lines changed

3 files changed

+31
-10
lines changed

IGLibCore.sln

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "0_SolutionItems", "0_Soluti
1010
ajgorhoe_iglibmodules.url = ajgorhoe_iglibmodules.url
1111
LICENSE.md = LICENSE.md
1212
README.md = README.md
13-
EndProjectSection
14-
EndProject
15-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Other", "Other", "{21254F1A-A508-46CA-B3F9-D8CF2218C042}"
16-
ProjectSection(SolutionItems) = preProject
1713
README_Development.md = README_Development.md
1814
EndProjectSection
1915
EndProject
@@ -35,6 +31,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IGLib.CoreExtended", "src\I
3531
EndProject
3632
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "0DirectoryViewer", "scripts\0DirectoryViewer.csproj", "{E69DB5EA-6FB2-BD52-EB7F-3DC615EB07CA}"
3733
EndProject
34+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "0DirectoryViewer_from_InitModulesCore", "scripts\0DirectoryViewer_from_InitModulesCore.csproj", "{8F2130FD-DFCE-86A1-EF34-4DCE3B9C1BB8}"
35+
EndProject
3836
Global
3937
GlobalSection(SolutionConfigurationPlatforms) = preSolution
4038
Debug|Any CPU = Debug|Any CPU
@@ -69,14 +67,18 @@ Global
6967
{E69DB5EA-6FB2-BD52-EB7F-3DC615EB07CA}.Debug|Any CPU.Build.0 = Debug|Any CPU
7068
{E69DB5EA-6FB2-BD52-EB7F-3DC615EB07CA}.Release|Any CPU.ActiveCfg = Release|Any CPU
7169
{E69DB5EA-6FB2-BD52-EB7F-3DC615EB07CA}.Release|Any CPU.Build.0 = Release|Any CPU
70+
{8F2130FD-DFCE-86A1-EF34-4DCE3B9C1BB8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
71+
{8F2130FD-DFCE-86A1-EF34-4DCE3B9C1BB8}.Debug|Any CPU.Build.0 = Debug|Any CPU
72+
{8F2130FD-DFCE-86A1-EF34-4DCE3B9C1BB8}.Release|Any CPU.ActiveCfg = Release|Any CPU
73+
{8F2130FD-DFCE-86A1-EF34-4DCE3B9C1BB8}.Release|Any CPU.Build.0 = Release|Any CPU
7274
EndGlobalSection
7375
GlobalSection(SolutionProperties) = preSolution
7476
HideSolutionNode = FALSE
7577
EndGlobalSection
7678
GlobalSection(NestedProjects) = preSolution
77-
{21254F1A-A508-46CA-B3F9-D8CF2218C042} = {633BD4B2-3198-47BE-A26F-0E48453D428E}
7879
{9BB423CB-766E-8D1B-EDF5-1909A94ED9E6} = {D2443D8D-9545-4700-8621-445849491F39}
7980
{E69DB5EA-6FB2-BD52-EB7F-3DC615EB07CA} = {633BD4B2-3198-47BE-A26F-0E48453D428E}
81+
{8F2130FD-DFCE-86A1-EF34-4DCE3B9C1BB8} = {633BD4B2-3198-47BE-A26F-0E48453D428E}
8082
EndGlobalSection
8183
GlobalSection(ExtensibilityGlobals) = postSolution
8284
SolutionGuid = {B21775EA-26C3-407E-9DDB-5A7750E3F0F2}

scripts/0DirectoryViewer.csproj

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
2+
<!-- This projet enables viewing various kinds of contents of a repository in which
3+
Visual Studio solutions are contained. By icluding the project in a VS solution, one
4+
can browse contents that is displayed by the project, serch within files included, and
5+
open files in rich Visual Studio editors.
6+
The project does not contain actual code. It wa attempted to avoid building the project
7+
when buildig the solution, but we haven't found the way to do this due to limitations of
8+
MS Build projects. Therefore, about a second is spent on "building" the project, which
9+
generate some useless mainifests etc. but no DLLs. Eventual warnings are suppressed by
10+
NoWarn tags, such that the project does not affect the CI/CD. -->
311
<PropertyGroup>
412
<TargetFramework>netstandard2.0</TargetFramework>
513
<OutputType>Library</OutputType>

scripts/0DirectoryViewer_from_InitModulesCore.csproj

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
<!-- Utility project; Initializes dependencies for the EventAggregator and EventAggregatorTests projects:
3-
* Clones / updates source repositories of dependencies side by side
4-
See: https://github.com/ajgorhoe/IGLib.modules.IGLibEventAggregator/blob/main/src/0InitModules/InitializationProjects.md -->
2+
<!-- This project file was initially copied from InitModulesCore.csproj. We wand to check how
3+
efficient this project is compered to the 0DirectoryViewer.csproj that was being developed
4+
specifically for this purpose, with a possibility for this file to replace the latter, or at
5+
least some well working settings may be transferred.
6+
7+
This projet enables viewing various kinds of contents of a repository in which
8+
Visual Studio solutions are contained. By icluding the project in a VS solution, one
9+
can browse contents that is displayed by the project, serch within files included, and
10+
open files in rich Visual Studio editors.
11+
The project does not contain actual code. It wa attempted to avoid building the project
12+
when buildig the solution, but we haven't found the way to do this due to limitations of
13+
MS Build projects. Therefore, about a second is spent on "building" the project, which
14+
generate some useless mainifests etc. but no DLLs. Eventual warnings are suppressed by
15+
NoWarn tags, such that the project does not affect the CI/CD.
16+
-->
517
<PropertyGroup>
618
<TargetFramework>netstandard2.0</TargetFramework>
719
<OutputType>Library</OutputType>
@@ -60,5 +72,4 @@
6072
</ItemGroup>
6173

6274

63-
6475
</Project>

0 commit comments

Comments
 (0)