diff --git a/Lurker.sln b/Lurker.sln
index 0a1d8f1b..eac8f17c 100644
--- a/Lurker.sln
+++ b/Lurker.sln
@@ -20,6 +20,9 @@ EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{AE09C520-0052-4684-8E87-4E41784AA544}"
ProjectSection(SolutionItems) = preProject
appveyor.yml = appveyor.yml
+ PoeLurker.ruleset = PoeLurker.ruleset
+ stylecop.json = stylecop.json
+ XpertdocVsPowerTools-Settings.json = XpertdocVsPowerTools-Settings.json
EndProjectSection
EndProject
Global
diff --git a/PoeLurker.ruleset b/PoeLurker.ruleset
new file mode 100644
index 00000000..ce3434bf
--- /dev/null
+++ b/PoeLurker.ruleset
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/XpertdocVsPowerTools-Settings.json b/XpertdocVsPowerTools-Settings.json
new file mode 100644
index 00000000..1d92d254
--- /dev/null
+++ b/XpertdocVsPowerTools-Settings.json
@@ -0,0 +1,22 @@
+{
+ "CodeElementSettings": {
+ "Enabled": false,
+ "MoveUsingsOnItemAdded": true,
+ "MoveUsingsOnItemOpened": true
+ },
+ "FileHeaderSettings": {
+ "CompanyName": "Wohs Inc.",
+ "Enabled": true,
+ "WriteHeaderOnItemAdded": true,
+ "WriteHeaderOnItemOpened": true,
+ "WriteHeaderOnItemRenamed": true
+ },
+ "LoggingSettings": {
+ "Enabled": true
+ },
+ "ProjectSettings": {
+ "ConfigurePowerToolsOnProjectAdded": false,
+ "ConfigureSigningOnProjectAdded": false,
+ "Enabled": false
+ }
+}
\ No newline at end of file
diff --git a/src/Lurker.Console/Program.cs b/src/Lurker.Console/Program.cs
index 8a995f27..8a62ae2b 100644
--- a/src/Lurker.Console/Program.cs
+++ b/src/Lurker.Console/Program.cs
@@ -1,6 +1,6 @@
//-----------------------------------------------------------------------
-//
-// Missing Copyright information from a valid stylecop.json file.
+//
+// Copyright © Wohs Inc.
//
//-----------------------------------------------------------------------
diff --git a/src/Lurker.UI/App.xaml.cs b/src/Lurker.UI/App.xaml.cs
index 7a2d435b..ffdcb894 100644
--- a/src/Lurker.UI/App.xaml.cs
+++ b/src/Lurker.UI/App.xaml.cs
@@ -1,6 +1,6 @@
//-----------------------------------------------------------------------
-//
-// Missing Copyright information from a valid stylecop.json file.
+//
+// Copyright © Wohs Inc.
//
//-----------------------------------------------------------------------
@@ -9,13 +9,16 @@ namespace Lurker.UI
using System.Windows;
///
- /// Interaction logic for App.xaml
+ /// Interaction logic for App.xaml.
///
public partial class App : Application
{
+ ///
+ /// Initializes a new instance of the class.
+ ///
public App()
{
this.InitializeComponent();
}
}
-}
+}
\ No newline at end of file
diff --git a/src/Lurker.UI/AppBootstrapper.cs b/src/Lurker.UI/AppBootstrapper.cs
index 35c14130..f716fb4c 100644
--- a/src/Lurker.UI/AppBootstrapper.cs
+++ b/src/Lurker.UI/AppBootstrapper.cs
@@ -1,25 +1,27 @@
//-----------------------------------------------------------------------
-//
-// Missing Copyright information from a valid stylecop.json file.
+//
+// Copyright © Wohs Inc.
//
//-----------------------------------------------------------------------
namespace Lurker.UI
{
+ using System;
+ using System.Collections.Generic;
+ using System.Diagnostics;
using Caliburn.Micro;
- using Lurker.Helpers;
using Lurker.Extensions;
using Lurker.Services;
using Lurker.UI.Helpers;
+ using Lurker.UI.Services;
using Lurker.UI.ViewModels;
using Sentry;
- using System;
- using System.Collections.Generic;
- using System.Diagnostics;
- using System.Security.Principal;
- using Lurker.UI.Services;
- public class AppBootstrapper : BootstrapperBase
+ ///
+ /// Represents AppBootstrapper.
+ ///
+ ///
+ public class AppBootstrapper : BootstrapperBase
{
#region Fields
@@ -35,7 +37,7 @@ public class AppBootstrapper : BootstrapperBase
///
/// Initializes a new instance of the class.
///
- public AppBootstrapper()
+ public AppBootstrapper()
{
AppDomain.CurrentDomain.UnhandledException += this.CurrentDomain_UnhandledException;
this.Initialize();
@@ -48,7 +50,7 @@ public AppBootstrapper()
///
/// Override to configure the framework and setup your IoC container.
///
- protected override void Configure()
+ protected override void Configure()
{
this._container = new SimpleContainer();
@@ -59,13 +61,13 @@ protected override void Configure()
this._container.Singleton();
this._container.Singleton();
this._container.Singleton();
-
+
this._container.PerRequest();
this._container.PerRequest();
- this._container.PerRequest();
+ this._container.PerRequest();
this._container.PerRequest();
this._container.PerRequest();
- this._container.PerRequest();
+ this._container.PerRequest();
this._container.PerRequest();
this._container.RegisterInstance(typeof(SimpleContainer), null, this._container);
}
@@ -78,19 +80,19 @@ protected override void Configure()
///
/// The located service.
///
- protected override object GetInstance(Type service, string key)
+ protected override object GetInstance(Type service, string key)
{
return this._container.GetInstance(service, key);
}
///
- /// Override this to provide an IoC specific implementation
+ /// Override this to provide an IoC specific implementation.
///
/// The service to locate.
///
/// The located services.
///
- protected override IEnumerable