2010-08-12 20:53:27 +00:00
|
|
|
|
/*
|
|
|
|
|
|
2012-05-27 14:23:31 +00:00
|
|
|
|
This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
|
License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
|
file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
|
2020-01-31 23:18:02 +01:00
|
|
|
|
Copyright (C) 2009-2020 Michael Möller <mmoeller@openhardwaremonitor.org>
|
2010-08-12 20:53:27 +00:00
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Reflection;
|
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
|
|
|
|
|
[assembly: AssemblyTitle("Open Hardware Monitor Library")]
|
|
|
|
|
[assembly: AssemblyDescription("")]
|
|
|
|
|
[assembly: AssemblyConfiguration("")]
|
|
|
|
|
[assembly: AssemblyCompany("")]
|
|
|
|
|
[assembly: AssemblyProduct("Open Hardware Monitor Library")]
|
2020-01-31 23:18:02 +01:00
|
|
|
|
[assembly: AssemblyCopyright("Copyright © 2009-2020 Michael Möller")]
|
2010-08-12 20:53:27 +00:00
|
|
|
|
[assembly: AssemblyTrademark("")]
|
|
|
|
|
[assembly: AssemblyCulture("")]
|
|
|
|
|
|
|
|
|
|
[assembly: ComVisible(false)]
|
2010-08-15 14:46:58 +00:00
|
|
|
|
[assembly: CLSCompliant(true)]
|
|
|
|
|
|
2020-05-21 17:53:08 +02:00
|
|
|
|
[assembly: DefaultDllImportSearchPaths(DllImportSearchPath.System32)]
|