Skip to content

Commit 2b2294f

Browse files
committed
fix(patch): add XMLPatch project and update solution structure
1 parent e3b0726 commit 2b2294f

File tree

5 files changed

+546
-2
lines changed

5 files changed

+546
-2
lines changed

.gitignore

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -399,8 +399,10 @@ FodyWeavers.xsd
399399
# JetBrains Rider
400400
*.sln.iml
401401

402-
# End of https://www.toptal.com/developers/gitignore/api/csharp
402+
# Specific to the Project
403403
_*/
404+
diff.xsd
404405

405406
#vscode
406-
.vscode/*
407+
.vscode/*
408+

XMLDiffAndPatch.sln

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ VisualStudioVersion = 17.0.31903.59
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XMLDiff", "XMLDiff\XMLDiff.csproj", "{D1AA4601-FADD-4C52-9E55-3C339BCD3566}"
77
EndProject
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XMLPatch", "XMLPatch\XMLPatch.csproj", "{C72157AD-A3B6-4E7E-A7B6-3638FE90F4A1}"
9+
EndProject
810
Global
911
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1012
Debug|Any CPU = Debug|Any CPU
@@ -30,5 +32,9 @@ Global
3032
{60598D5D-DBA6-4F2B-AFAA-299DF944CD02}.Debug|Any CPU.Build.0 = Debug|Any CPU
3133
{60598D5D-DBA6-4F2B-AFAA-299DF944CD02}.Release|Any CPU.ActiveCfg = Release|Any CPU
3234
{60598D5D-DBA6-4F2B-AFAA-299DF944CD02}.Release|Any CPU.Build.0 = Release|Any CPU
35+
{C72157AD-A3B6-4E7E-A7B6-3638FE90F4A1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
36+
{C72157AD-A3B6-4E7E-A7B6-3638FE90F4A1}.Debug|Any CPU.Build.0 = Debug|Any CPU
37+
{C72157AD-A3B6-4E7E-A7B6-3638FE90F4A1}.Release|Any CPU.ActiveCfg = Release|Any CPU
38+
{C72157AD-A3B6-4E7E-A7B6-3638FE90F4A1}.Release|Any CPU.Build.0 = Release|Any CPU
3339
EndGlobalSection
3440
EndGlobal

0 commit comments

Comments
 (0)