diff --git a/SEBPatcher.Configuration/Properties/AssemblyInfo.cs b/SEBPatcher.Configuration/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..fc11281 --- /dev/null +++ b/SEBPatcher.Configuration/Properties/AssemblyInfo.cs @@ -0,0 +1,26 @@ +using System.Reflection; +using System.Runtime.CompilerServices; + +// Information about this assembly is defined by the following attributes. +// Change them to the values specific to your project. + +[assembly: AssemblyTitle("SEBPatcher.Configuration")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("")] +[assembly: AssemblyCopyright("${AuthorCopyright}")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}". +// The form "{Major}.{Minor}.*" will automatically update the build and revision, +// and "{Major}.{Minor}.{Build}.*" will update just the revision. + +[assembly: AssemblyVersion("1.0.*")] + +// The following attributes are used to specify the signing key for the assembly, +// if desired. See the Mono documentation for more information about signing. + +//[assembly: AssemblyDelaySign(false)] +//[assembly: AssemblyKeyFile("")] diff --git a/SEBPatcher.Configuration/SEBPatcher.Configuration.csproj b/SEBPatcher.Configuration/SEBPatcher.Configuration.csproj new file mode 100644 index 0000000..5793204 --- /dev/null +++ b/SEBPatcher.Configuration/SEBPatcher.Configuration.csproj @@ -0,0 +1,76 @@ + + + + Debug + AnyCPU + {6E7CE06E-5C8A-40F9-8DCA-0C72D30A4AEF} + Library + SEBPatcher.Configuration + SEBPatcher.Configuration + v4.7 + + + true + full + false + bin\Debug + DEBUG; + prompt + 4 + false + + + true + bin\Release + prompt + 4 + false + + + + + $(ReferenceBasePath)\Mono.Cecil.dll + + + $(ReferenceBasePath)\Mono.Cecil.Mdb.dll + + + $(ReferenceBasePath)\0Harmony.dll + + + $(ReferenceBasePath)\Mono.Cecil.Pdb.dll + + + $(ReferenceBasePath)\Mono.Cecil.Rocks.dll + + + $(ReferenceBasePath)\MonoMod.Common.dll + + + $(ReferenceBasePath)\MonoMod.exe + + + $(ReferenceBasePath)\MonoMod.RuntimeDetour.dll + + + $(ReferenceBasePath)\MonoMod.UnitTest.dll + + + $(ReferenceBasePath)\MonoMod.Utils.dll + + + $(ReferenceBasePath)\SafeExamBrowser.Configuration.dll + + + $(ReferenceBasePath)\SafeExamBrowser.Logging.Contracts.dll + + + $(ReferenceBasePath)\SafeExamBrowser.Configuration.Contracts.dll + + + + + + + + \ No newline at end of file diff --git a/SEBPatcher.Configuration/patch_IntegrityModule.cs b/SEBPatcher.Configuration/patch_IntegrityModule.cs new file mode 100644 index 0000000..a6d6f0b --- /dev/null +++ b/SEBPatcher.Configuration/patch_IntegrityModule.cs @@ -0,0 +1,10 @@ +using System; +using MonoMod; + +namespace SafeExamBrowser.Configuration.Integrity +{ + public class patch_IntegrityModule : IntegrityModule + { + [MonoModIgnore] public patch_IntegrityModule(Configuration.Contracts.AppConfig appConfig, SafeExamBrowser.Logging.Contracts.ILogger logger) : base(appConfig, logger) { } + } +} diff --git a/SEBPatcher.sln b/SEBPatcher.sln index 8946ef3..eefca68 100644 --- a/SEBPatcher.sln +++ b/SEBPatcher.sln @@ -3,6 +3,8 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 15 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SEBPatcher.Monitoring", "SEBPatcher.Monitoring\SEBPatcher.Monitoring.csproj", "{366BC693-9A33-48C8-B61C-31E76A5CF6E4}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SEBPatcher.Configuration", "SEBPatcher.Configuration\SEBPatcher.Configuration.csproj", "{6E7CE06E-5C8A-40F9-8DCA-0C72D30A4AEF}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -13,5 +15,9 @@ Global {366BC693-9A33-48C8-B61C-31E76A5CF6E4}.Debug|Any CPU.Build.0 = Debug|Any CPU {366BC693-9A33-48C8-B61C-31E76A5CF6E4}.Release|Any CPU.ActiveCfg = Release|Any CPU {366BC693-9A33-48C8-B61C-31E76A5CF6E4}.Release|Any CPU.Build.0 = Release|Any CPU + {6E7CE06E-5C8A-40F9-8DCA-0C72D30A4AEF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6E7CE06E-5C8A-40F9-8DCA-0C72D30A4AEF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6E7CE06E-5C8A-40F9-8DCA-0C72D30A4AEF}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6E7CE06E-5C8A-40F9-8DCA-0C72D30A4AEF}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection EndGlobal