[13159] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
| 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 |
|
---|
| 22 | using HeuristicLab.PluginInfrastructure;
|
---|
| 23 |
|
---|
| 24 | namespace HeuristicLab.SharpDX {
|
---|
| 25 | [Plugin("HeuristicLab.SharpDX","HeuristicLab wrapper for SharpDX","2.6.3.$WCREV$")]
|
---|
| 26 | [PluginFile("HeuristicLab.SharpDX-2.6.3.dll", PluginFileType.Assembly)]
|
---|
| 27 | [PluginFile("License-SharpDX-2.6.3.txt", PluginFileType.License)]
|
---|
| 28 | [PluginFile("SharpDX.dll", PluginFileType.Assembly)] // only this assembly should be loaded automatically by the plugin-infrastructure
|
---|
| 29 | // the remaining files should be loaded by SharpDX or automatically through references
|
---|
| 30 | [PluginFile("Assimp32.dll", PluginFileType.NativeDll)]
|
---|
| 31 | [PluginFile("Assimp64.dll", PluginFileType.NativeDll)]
|
---|
| 32 | [PluginFile("AssimpNet.dll", PluginFileType.Assembly)]
|
---|
| 33 | [PluginFile("SharpDX.D3DCompiler.dll", PluginFileType.Assembly)]
|
---|
| 34 | [PluginFile("SharpDX.Direct2D1.dll", PluginFileType.Assembly)]
|
---|
| 35 | [PluginFile("SharpDX.Direct3D10.dll", PluginFileType.Assembly)]
|
---|
| 36 | [PluginFile("SharpDX.Direct3D11.dll", PluginFileType.Assembly)]
|
---|
| 37 | [PluginFile("SharpDX.Direct3D11.Effects.dll", PluginFileType.Assembly)]
|
---|
| 38 | [PluginFile("SharpDX.Direct3D9.dll", PluginFileType.Assembly)]
|
---|
| 39 | [PluginFile("SharpDX.DirectInput.dll", PluginFileType.Assembly)]
|
---|
| 40 | [PluginFile("SharpDX.DirectSound.dll", PluginFileType.Assembly)]
|
---|
| 41 | [PluginFile("SharpDX.DXGI.dll", PluginFileType.Assembly)]
|
---|
| 42 | [PluginFile("SharpDX.MediaFoundation.dll", PluginFileType.Assembly)]
|
---|
| 43 | [PluginFile("SharpDX.RawInput.dll", PluginFileType.Assembly)]
|
---|
| 44 | [PluginFile("SharpDX.Toolkit.Audio.dll", PluginFileType.Assembly)]
|
---|
| 45 | [PluginFile("SharpDX.Toolkit.Compiler.dll", PluginFileType.Assembly)]
|
---|
| 46 | [PluginFile("SharpDX.Toolkit.CompilerTask.dll", PluginFileType.Assembly)]
|
---|
| 47 | [PluginFile("SharpDX.Toolkit.dll", PluginFileType.Assembly)]
|
---|
| 48 | [PluginFile("SharpDX.Toolkit.Game.dll", PluginFileType.Assembly)]
|
---|
| 49 | [PluginFile("SharpDX.Toolkit.Graphics.dll", PluginFileType.Assembly)]
|
---|
| 50 | [PluginFile("SharpDX.Toolkit.Input.dll", PluginFileType.Assembly)]
|
---|
| 51 | [PluginFile("SharpDX.XACT3.dll", PluginFileType.Assembly)]
|
---|
| 52 | [PluginFile("SharpDX.XAudio2.dll", PluginFileType.Assembly)]
|
---|
| 53 | [PluginFile("SharpDX.XInput.dll", PluginFileType.Assembly)]
|
---|
| 54 | [PluginFile("sharpdx_direct3d11_1_effects_arm.dll", PluginFileType.NativeDll)]
|
---|
| 55 | [PluginFile("sharpdx_direct3d11_1_effects_x64.dll", PluginFileType.NativeDll)]
|
---|
| 56 | [PluginFile("sharpdx_direct3d11_1_effects_x86.dll", PluginFileType.NativeDll)]
|
---|
| 57 | [PluginFile("sharpdx_direct3d11_effects_x64.dll", PluginFileType.NativeDll)]
|
---|
| 58 | [PluginFile("sharpdx_direct3d11_effects_x86.dll", PluginFileType.NativeDll)]
|
---|
| 59 | public class HeuristicLabSharpDxPlugin : PluginBase {
|
---|
| 60 | }
|
---|
| 61 | }
|
---|