diff --git a/Changelog.md b/Changelog.md
index 07d923e..9018562 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -65,12 +65,12 @@ ElectronNET.API:
ElectronNET.CLI:
* More options on the 'build' command, e.g. for a 32bit debug build with electron prune: build /target custom win7-x86;win32 /dotnet-configuration Debug /electron-arch ia32 /electron-params "--prune=true "
-* .NET Core project is now build with Release configuration, but can be adjusted with the new params.
+* .NET Core project is now built with Release configuration but can be adjusted with the new params.
* Be aware: "Breaking" (but because of the alpha status of this project, we won't use SemVer)
# 0.0.8
-This version was skipped because we unfortunatly released a pre version of this on NuGet.
+This version was skipped because we unfortunately released a pre-version of this on NuGet.
# 0.0.7
@@ -83,7 +83,7 @@ ElectronNET.CLI:
ElectronNET.CLI:
-* nuget packages are now release bits and have the correct assembly verion
+* nuget packages are now release bits and have the correct assembly version
* Version command
* better devCleanup.cmd
* Better Platform Support Issue - thanks to @Petermarcu
diff --git a/ElectronNET.API/App.cs b/ElectronNET.API/App.cs
index 9f8de95..ea939e2 100644
--- a/ElectronNET.API/App.cs
+++ b/ElectronNET.API/App.cs
@@ -3,7 +3,6 @@ using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using Newtonsoft.Json.Serialization;
using System;
-using System.Runtime.InteropServices;
using System.Threading;
using System.Threading.Tasks;
@@ -374,7 +373,7 @@ namespace ElectronNET.API
}
private static App _app;
- private static object _syncRoot = new Object();
+ private static object _syncRoot = new object();
private JsonSerializer _jsonSerializer = new JsonSerializer()
{
diff --git a/ElectronNET.API/BridgeConnector.cs b/ElectronNET.API/BridgeConnector.cs
index df10adb..08a8474 100644
--- a/ElectronNET.API/BridgeConnector.cs
+++ b/ElectronNET.API/BridgeConnector.cs
@@ -6,7 +6,7 @@ namespace ElectronNET.API
internal static class BridgeConnector
{
private static Socket _socket;
- private static object _syncRoot = new Object();
+ private static object _syncRoot = new object();
public static Socket Socket
{
diff --git a/ElectronNET.API/Clipboard.cs b/ElectronNET.API/Clipboard.cs
index 340c0f5..8281594 100644
--- a/ElectronNET.API/Clipboard.cs
+++ b/ElectronNET.API/Clipboard.cs
@@ -2,7 +2,6 @@
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using Newtonsoft.Json.Serialization;
-using System;
using System.Threading.Tasks;
namespace ElectronNET.API
@@ -13,7 +12,7 @@ namespace ElectronNET.API
public sealed class Clipboard
{
private static Clipboard _clipboard;
- private static object _syncRoot = new Object();
+ private static object _syncRoot = new object();
internal Clipboard() { }
diff --git a/ElectronNET.API/Dialog.cs b/ElectronNET.API/Dialog.cs
index d95582a..7b626b4 100644
--- a/ElectronNET.API/Dialog.cs
+++ b/ElectronNET.API/Dialog.cs
@@ -15,7 +15,7 @@ namespace ElectronNET.API
public sealed class Dialog
{
private static Dialog _dialog;
- private static object _syncRoot = new Object();
+ private static object _syncRoot = new object();
internal Dialog() { }
diff --git a/ElectronNET.API/ElectronNET.API.csproj b/ElectronNET.API/ElectronNET.API.csproj
index 45cdb82..5c1287a 100644
--- a/ElectronNET.API/ElectronNET.API.csproj
+++ b/ElectronNET.API/ElectronNET.API.csproj
@@ -10,7 +10,7 @@
Electron.NETMIThttps://github.com/ElectronNET/Electron.NET/
- Building cross platform electron based desktop apps with .NET Core and ASP.NET NET Core.
+ Building cross platform electron based desktop apps with .NET Core and ASP.NET Core.
This package contains the API to access the "native" electron API.https://github.com/ElectronNET/Electron.NET/git
diff --git a/ElectronNET.API/Entities/EnableNetworkEmulationOptions.cs b/ElectronNET.API/Entities/EnableNetworkEmulationOptions.cs
index dcac2bf..967cc53 100644
--- a/ElectronNET.API/Entities/EnableNetworkEmulationOptions.cs
+++ b/ElectronNET.API/Entities/EnableNetworkEmulationOptions.cs
@@ -1,8 +1,4 @@
-using System;
-using System.Collections.Generic;
-using System.Text;
-
-namespace ElectronNET.API.Entities
+namespace ElectronNET.API.Entities
{
///
///
diff --git a/ElectronNET.API/Entities/LoadURLOptions.cs b/ElectronNET.API/Entities/LoadURLOptions.cs
index 298cd53..606a262 100644
--- a/ElectronNET.API/Entities/LoadURLOptions.cs
+++ b/ElectronNET.API/Entities/LoadURLOptions.cs
@@ -1,6 +1,4 @@
-using System.Collections.Generic;
-
-namespace ElectronNET.API.Entities
+namespace ElectronNET.API.Entities
{
///
///
diff --git a/ElectronNET.API/Entities/ProxyConfig.cs b/ElectronNET.API/Entities/ProxyConfig.cs
index cc2e9dc..3dd9ac0 100644
--- a/ElectronNET.API/Entities/ProxyConfig.cs
+++ b/ElectronNET.API/Entities/ProxyConfig.cs
@@ -1,8 +1,4 @@
-using System;
-using System.Collections.Generic;
-using System.Text;
-
-namespace ElectronNET.API.Entities
+namespace ElectronNET.API.Entities
{
///
///
diff --git a/ElectronNET.API/GlobalShortcut.cs b/ElectronNET.API/GlobalShortcut.cs
index dd669bd..d2867ec 100644
--- a/ElectronNET.API/GlobalShortcut.cs
+++ b/ElectronNET.API/GlobalShortcut.cs
@@ -10,7 +10,7 @@ namespace ElectronNET.API
public sealed class GlobalShortcut
{
private static GlobalShortcut _globalShortcut;
- private static object _syncRoot = new Object();
+ private static object _syncRoot = new object();
internal GlobalShortcut() { }
diff --git a/ElectronNET.API/IpcMain.cs b/ElectronNET.API/IpcMain.cs
index 2af381b..45814c2 100644
--- a/ElectronNET.API/IpcMain.cs
+++ b/ElectronNET.API/IpcMain.cs
@@ -14,7 +14,7 @@ namespace ElectronNET.API
public sealed class IpcMain
{
private static IpcMain _ipcMain;
- private static object _syncRoot = new Object();
+ private static object _syncRoot = new object();
internal IpcMain() { }
@@ -153,7 +153,7 @@ namespace ElectronNET.API
{
List jobjects = new List();
List jarrays = new List();
- List