Skip to content

Commit e462805

Browse files
fix: Nosiy error report removing message bundle
1 parent b219210 commit e462805

2 files changed

Lines changed: 27 additions & 1 deletion

File tree

canary/Models/Test.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,8 @@ public Dictionary<string, Dictionary<string, dynamic>> MessageCompare()
9696
string heading = "Message Validation Results";
9797
description.Add(heading, new Dictionary<string, dynamic>());
9898
Dictionary<string, dynamic> category = description[heading];
99-
foreach (PropertyInfo property in bundle.GetType().GetProperties())
99+
var TestMsgBundleProperties = bundle.GetType().GetProperties().Where(x=>x.Name != "MessageBundle");
100+
foreach (PropertyInfo property in TestMsgBundleProperties)
100101
{
101102
// Add the new property to the category
102103
category[property.Name] = new Dictionary<string, dynamic>();

canary/canary.sln

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.5.002.0
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "canary", "canary.csproj", "{A8696CCD-70EF-4EA1-8F57-A6EAF4D9F287}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{A8696CCD-70EF-4EA1-8F57-A6EAF4D9F287}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{A8696CCD-70EF-4EA1-8F57-A6EAF4D9F287}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{A8696CCD-70EF-4EA1-8F57-A6EAF4D9F287}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{A8696CCD-70EF-4EA1-8F57-A6EAF4D9F287}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {E4854076-3257-4EDC-A177-65E3A436A430}
24+
EndGlobalSection
25+
EndGlobal

0 commit comments

Comments
 (0)