Skip to content

Commit 60fd05a

Browse files
committed
#51 remove RegionInfo from ExceptionReportInfo and dialog
1 parent fa67381 commit 60fd05a

File tree

4 files changed

+4
-23
lines changed

4 files changed

+4
-23
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,6 @@ ExceptionReporter has a dependency on the [.NET4 Framework](https://en.wikipedia
133133

134134
*ExceptionReporter.NET.sln* - this uses [the new csproj format](https://docs.microsoft.com/en-us/dotnet/core/tools/csproj) that was introduced in .NET Core but is backward compatible for .NET projects (like this).
135135

136-
- *ExceptionReporter.NET-traditional.sln* - this is the old/traditional solution file and contains all projects and demos - so this will be used to work on the UI
137-
138136
There is a suite of Unit Tests to support ExceptionReporter using [Moq](https://github.com/Moq/moq4/wiki/Quickstart) and [NUnit](https://nunit.org/) libraries - see **src/Tests/Tests.ExceptionReporter.NET**
139137

140138
There is a [Cake](https://cakebuild.net) script to build the project and run all tests

src/Demos/WinForms/Demo.WinForms.csproj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,13 @@
4242
</PropertyGroup>
4343
<ItemGroup>
4444
<Reference Include="System" />
45+
<Reference Include="System.Configuration" />
4546
<Reference Include="System.Core">
4647
</Reference>
4748
<Reference Include="System.Data" />
49+
<Reference Include="System.Deployment" />
4850
<Reference Include="System.Drawing" />
51+
<Reference Include="System.Management" />
4952
<Reference Include="System.Windows.Forms" />
5053
<Reference Include="System.Xml" />
5154
</ItemGroup>
@@ -66,7 +69,7 @@
6669
</ItemGroup>
6770
<ItemGroup>
6871
<ProjectReference Include="..\..\ExceptionReporter.WinForms\ExceptionReporter.WinForms.csproj">
69-
<Project>{1AEEC57B-FB44-4F88-AD50-A2A3686DBC97}</Project>
72+
<Project>{1aeec57b-fb44-4f88-ad50-a2a3686dbc97}</Project>
7073
<Name>ExceptionReporter.WinForms</Name>
7174
</ProjectReference>
7275
</ItemGroup>

src/ExceptionReporter.WinForms/MVP/Views/ExceptionReportView.Designer.cs

Lines changed: 0 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/ExceptionReporter.WinForms/MVP/Views/ExceptionReportView.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ private void PopulateReportInfo(ExceptionReportInfo reportInfo)
5454

5555
txtDate.Text = reportInfo.ExceptionDate.ToShortDateString();
5656
txtTime.Text = reportInfo.ExceptionDate.ToShortTimeString();
57-
txtRegion.Text = reportInfo.RegionInfo;
5857
txtApplicationName.Text = reportInfo.AppName;
5958
txtVersion.Text = reportInfo.AppVersion;
6059

@@ -66,7 +65,6 @@ private void PopulateReportInfo(ExceptionReportInfo reportInfo)
6665
btnSave.FlatStyle = reportInfo.ShowFlatButtons ? FlatStyle.Flat : FlatStyle.Standard;
6766

6867
listviewAssemblies.BackColor =
69-
txtRegion.BackColor =
7068
txtTime.BackColor =
7169
txtTime.BackColor =
7270
txtVersion.BackColor =

0 commit comments

Comments
 (0)