diff --git a/src/Hangfire.Raven/Assemblies.cs b/src/Hangfire.Raven/Assemblies.cs
deleted file mode 100644
index b01f9f9..0000000
--- a/src/Hangfire.Raven/Assemblies.cs
+++ /dev/null
@@ -1,54 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Reflection;
-#if !NET45
-using Microsoft.Extensions.DependencyModel;
-#endif
-
-namespace Hangfire.Raven
-{
- ///
- /// Helper class for getting assemblies
- ///
- public static class Assemblies
- {
- ///
- /// Get all loaded assemblies
- ///
- ///
- public static IEnumerable Get()
- {
-#if NET45
- return AppDomain.CurrentDomain.GetAssemblies().Where(a => a != null);
-#else
- return (from compilationLibrary in DependencyContext.Default.CompileLibraries
- where compilationLibrary.Name.Contains(typeof(Assemblies).Namespace)
- select Assembly.Load(new AssemblyName(compilationLibrary.Name)))
- .ToList();
-#endif
- }
-
- ///
- /// Get class by name within an assembly
- ///
- /// Assembly
- /// Name of type
- ///
- public static Type GetClass(Assembly assembly, string type)
- {
- return (from t in assembly.GetTypes()
- where t.FullName == type //&& !t.IsAbstract && t.IsClass
- select t).FirstOrDefault();
- }
-
- public static string GetAssemblyName(MemberInfo value)
- {
-#if NET45
- return value.DeclaringType.Assembly.GetName().Name;
-#else
- return value.DeclaringType.GetTypeInfo().Assembly.GetName().Name;
-#endif
- }
- }
-}
diff --git a/src/Hangfire.Raven/Entities/RavenJob.cs b/src/Hangfire.Raven/Entities/RavenJob.cs
index fda6666..8cc4876 100644
--- a/src/Hangfire.Raven/Entities/RavenJob.cs
+++ b/src/Hangfire.Raven/Entities/RavenJob.cs
@@ -1,7 +1,5 @@
using System;
using System.Collections.Generic;
-using System.Linq;
-using System.Reflection;
using Hangfire.Common;
using Hangfire.Storage;
using Hangfire.Storage.Monitoring;
@@ -15,31 +13,9 @@ namespace Hangfire.Raven.Entities
this.Parameters = new Dictionary();
this.History = new List();
}
- public class JobWrapper
- {
- public IEnumerable