From 3dd03a2e4b5b136759d0e1a51419c2965e11349a Mon Sep 17 00:00:00 2001 From: Rick van Dam Date: Wed, 22 Apr 2020 19:58:57 +0200 Subject: [PATCH] Changed all pcl projects to netstandard projects --- .../AudioHandling.Sample.nuspec | 12 +- Build/NuGetPackageSpecs/Base.Editor.nuspec | 17 +- .../NuGetPackageSpecs/BasicMenu.Sample.nuspec | 12 +- .../BasicShaders.Sample.nuspec | 8 +- .../Benchmarks.Sample.nuspec | 12 +- Build/NuGetPackageSpecs/CamView.Editor.nuspec | 15 +- .../CameraController.Sample.nuspec | 12 +- .../Compatibility.Core.nuspec | 13 +- .../CustomRenderingSetup.Sample.nuspec | 12 +- .../DefaultOpenTKBackend.Core.nuspec | 16 +- .../DefaultOpenTKBackend.Editor.nuspec | 21 +- .../DotNetFrameworkBackend.Core.nuspec | 13 +- .../DualStickSpaceShooter.Sample.nuspec | 12 +- Build/NuGetPackageSpecs/Duality.Docs.nuspec | 8 +- Build/NuGetPackageSpecs/Duality.Editor.nuspec | 31 +- .../NuGetPackageSpecs/Duality.Launcher.nuspec | 15 +- .../NuGetPackageSpecs/Duality.Physics.nuspec | 11 +- .../Duality.Primitives.nuspec | 8 +- Build/NuGetPackageSpecs/Duality.nuspec | 19 +- .../DynamicLighting.Sample.nuspec | 14 +- .../NuGetPackageSpecs/FlapOrDie.Sample.nuspec | 12 +- .../HelpAdvisor.Editor.nuspec | 15 +- .../InputHandling.Sample.nuspec | 12 +- Build/NuGetPackageSpecs/LogView.Editor.nuspec | 15 +- .../ObjectInspector.Editor.nuspec | 12 +- .../ParticleSystem.Sample.nuspec | 12 +- Build/NuGetPackageSpecs/Physics.Sample.nuspec | 12 +- .../ProjectView.Editor.nuspec | 15 +- .../NuGetPackageSpecs/SceneView.Editor.nuspec | 15 +- .../SmoothAnimation.Sample.nuspec | 12 +- .../NuGetPackageSpecs/Steering.Sample.nuspec | 10 +- Build/NuGetPackageSpecs/Tilemaps.Core.nuspec | 12 +- .../NuGetPackageSpecs/Tilemaps.Editor.nuspec | 16 +- .../NuGetPackageSpecs/Tilemaps.Sample.nuspec | 14 +- Duality.sln | 42 +- .../AudioHandling.Sample.Core.csproj | 19 + Samples/AudioHandling/AudioHandling.csproj | 71 --- .../AudioHandling/Properties/AssemblyInfo.cs | 34 -- .../BasicMenu/BasicMenu.Sample.Core.csproj | 19 + Samples/BasicMenu/BasicMenu.csproj | 79 --- Samples/BasicMenu/Properties/AssemblyInfo.cs | 34 -- .../BasicShaders.Sample.Core.csproj | 19 + Samples/BasicShaders/BasicShaders.csproj | 67 -- .../BasicShaders/Properties/AssemblyInfo.cs | 34 -- .../Benchmarks/Benchmarks.Sample.Core.csproj | 16 + Samples/Benchmarks/Benchmarks.Sample.csproj | 82 --- Samples/Benchmarks/Properties/AssemblyInfo.cs | 34 -- .../CameraController.Sample.Core.csproj | 19 + .../CameraController.core.xml | 63 -- .../CameraController/CameraController.csproj | 74 --- .../Properties/AssemblyInfo.cs | 34 -- .../CustomRenderingSetup.Sample.Core.csproj | 14 + .../CustomRenderingSetup.csproj | 72 --- .../Properties/AssemblyInfo.cs | 34 -- .../DualStickSpaceShooter.Sample.Core.csproj | 19 + .../DualStickSpaceShooter.csproj | 93 --- .../Properties/AssemblyInfo.cs | 34 -- Samples/DynamicLighting/Core/DebugObject.cs | 60 -- .../Core/DynamicLighting.Core.csproj | 82 --- .../Core/DynamicLighting.Sample.Core.csproj | 26 + .../Core/Properties/AssemblyInfo.cs | 34 -- ...j => DynamicLighting.Sample.Editor.csproj} | 5 +- .../FlapOrDie/FlapOrDie.Sample.Core.csproj | 19 + Samples/FlapOrDie/FlapOrDie.core.xml | 13 - Samples/FlapOrDie/FlapOrDie.csproj | 75 --- Samples/FlapOrDie/Properties/AssemblyInfo.cs | 34 -- .../InputHandling.Sample.Core.csproj | 19 + Samples/InputHandling/InputHandling.csproj | 69 --- .../InputHandling/Properties/AssemblyInfo.cs | 34 -- .../ParticleSystem.Sample.Core.csproj | 19 + Samples/ParticleSystem/ParticleSystem.csproj | 70 --- .../ParticleSystem/Properties/AssemblyInfo.cs | 34 -- Samples/Physics/Physics.Sample.Core.csproj | 19 + Samples/Physics/Physics.Sample.csproj | 78 --- Samples/Physics/Properties/AssemblyInfo.cs | 34 -- .../Properties/AssemblyInfo.cs | 34 -- .../SmoothAnimation.Sample.Core.csproj | 14 + .../SmoothAnimation/SmoothAnimation.csproj | 69 --- Samples/Steering/Properties/AssemblyInfo.cs | 35 -- Samples/Steering/Steering.Sample.Core.csproj | 23 + Samples/Steering/Steering.csproj | 84 --- Samples/Tilemaps/Properties/AssemblyInfo.cs | 34 -- Samples/Tilemaps/Tilemaps.Sample.Core.csproj | 22 + Samples/Tilemaps/Tilemaps.Sample.csproj | 83 --- Source/Core/Duality/Duality.csproj | 574 +++--------------- .../Core/Duality/Properties/AssemblyInfo.cs | 31 - Source/Core/Physics/DualityPhysics.csproj | 166 +---- .../Core/Physics/Properties/AssemblyInfo.cs | 26 - .../Core/Primitives/DualityPrimitives.csproj | 70 +-- .../Primitives/Properties/AssemblyInfo.cs | 28 - .../Compatibility/Compatibility.Core.csproj | 76 +-- .../Compatibility/Properties/AssemblyInfo.cs | 34 -- .../Tilemaps/Core/Properties/AssemblyInfo.cs | 34 -- .../Tilemaps/Core/Tilemaps.Core.csproj | 128 +--- 94 files changed, 724 insertions(+), 3036 deletions(-) create mode 100644 Samples/AudioHandling/AudioHandling.Sample.Core.csproj delete mode 100644 Samples/AudioHandling/AudioHandling.csproj delete mode 100644 Samples/AudioHandling/Properties/AssemblyInfo.cs create mode 100644 Samples/BasicMenu/BasicMenu.Sample.Core.csproj delete mode 100644 Samples/BasicMenu/BasicMenu.csproj delete mode 100644 Samples/BasicMenu/Properties/AssemblyInfo.cs create mode 100644 Samples/BasicShaders/BasicShaders.Sample.Core.csproj delete mode 100644 Samples/BasicShaders/BasicShaders.csproj delete mode 100644 Samples/BasicShaders/Properties/AssemblyInfo.cs create mode 100644 Samples/Benchmarks/Benchmarks.Sample.Core.csproj delete mode 100644 Samples/Benchmarks/Benchmarks.Sample.csproj delete mode 100644 Samples/Benchmarks/Properties/AssemblyInfo.cs create mode 100644 Samples/CameraController/CameraController.Sample.Core.csproj delete mode 100644 Samples/CameraController/CameraController.core.xml delete mode 100644 Samples/CameraController/CameraController.csproj delete mode 100644 Samples/CameraController/Properties/AssemblyInfo.cs create mode 100644 Samples/CustomRenderingSetup/CustomRenderingSetup.Sample.Core.csproj delete mode 100644 Samples/CustomRenderingSetup/CustomRenderingSetup.csproj delete mode 100644 Samples/CustomRenderingSetup/Properties/AssemblyInfo.cs create mode 100644 Samples/DualStickSpaceShooter/DualStickSpaceShooter.Sample.Core.csproj delete mode 100644 Samples/DualStickSpaceShooter/DualStickSpaceShooter.csproj delete mode 100644 Samples/DualStickSpaceShooter/Properties/AssemblyInfo.cs delete mode 100644 Samples/DynamicLighting/Core/DebugObject.cs delete mode 100644 Samples/DynamicLighting/Core/DynamicLighting.Core.csproj create mode 100644 Samples/DynamicLighting/Core/DynamicLighting.Sample.Core.csproj delete mode 100644 Samples/DynamicLighting/Core/Properties/AssemblyInfo.cs rename Samples/DynamicLighting/Editor/{DynamicLighting.Editor.csproj => DynamicLighting.Sample.Editor.csproj} (95%) create mode 100644 Samples/FlapOrDie/FlapOrDie.Sample.Core.csproj delete mode 100644 Samples/FlapOrDie/FlapOrDie.core.xml delete mode 100644 Samples/FlapOrDie/FlapOrDie.csproj delete mode 100644 Samples/FlapOrDie/Properties/AssemblyInfo.cs create mode 100644 Samples/InputHandling/InputHandling.Sample.Core.csproj delete mode 100644 Samples/InputHandling/InputHandling.csproj delete mode 100644 Samples/InputHandling/Properties/AssemblyInfo.cs create mode 100644 Samples/ParticleSystem/ParticleSystem.Sample.Core.csproj delete mode 100644 Samples/ParticleSystem/ParticleSystem.csproj delete mode 100644 Samples/ParticleSystem/Properties/AssemblyInfo.cs create mode 100644 Samples/Physics/Physics.Sample.Core.csproj delete mode 100644 Samples/Physics/Physics.Sample.csproj delete mode 100644 Samples/Physics/Properties/AssemblyInfo.cs delete mode 100644 Samples/SmoothAnimation/Properties/AssemblyInfo.cs create mode 100644 Samples/SmoothAnimation/SmoothAnimation.Sample.Core.csproj delete mode 100644 Samples/SmoothAnimation/SmoothAnimation.csproj delete mode 100644 Samples/Steering/Properties/AssemblyInfo.cs create mode 100644 Samples/Steering/Steering.Sample.Core.csproj delete mode 100644 Samples/Steering/Steering.csproj delete mode 100644 Samples/Tilemaps/Properties/AssemblyInfo.cs create mode 100644 Samples/Tilemaps/Tilemaps.Sample.Core.csproj delete mode 100644 Samples/Tilemaps/Tilemaps.Sample.csproj delete mode 100644 Source/Core/Physics/Properties/AssemblyInfo.cs delete mode 100644 Source/Core/Primitives/Properties/AssemblyInfo.cs delete mode 100644 Source/Plugins/Compatibility/Properties/AssemblyInfo.cs delete mode 100644 Source/Plugins/Tilemaps/Core/Properties/AssemblyInfo.cs diff --git a/Build/NuGetPackageSpecs/AudioHandling.Sample.nuspec b/Build/NuGetPackageSpecs/AudioHandling.Sample.nuspec index 54af0f67a..4af0d3f1f 100644 --- a/Build/NuGetPackageSpecs/AudioHandling.Sample.nuspec +++ b/Build/NuGetPackageSpecs/AudioHandling.Sample.nuspec @@ -18,13 +18,15 @@ - - + + + + - - + + - \ No newline at end of file + diff --git a/Build/NuGetPackageSpecs/Base.Editor.nuspec b/Build/NuGetPackageSpecs/Base.Editor.nuspec index 7b109057d..772da08f8 100644 --- a/Build/NuGetPackageSpecs/Base.Editor.nuspec +++ b/Build/NuGetPackageSpecs/Base.Editor.nuspec @@ -13,16 +13,17 @@ Provides basic infrastructure for the Duality editor, such as PropertyEditors and Importers. Provides basic infrastructure for the Duality editor, such as PropertyEditors and Importers. Duality Editor Plugin PropertyEditor Importer Preview EditorAction DataConverter - Patch Version Update - + Patch Version Update - - + + + + - - - + + + - \ No newline at end of file + diff --git a/Build/NuGetPackageSpecs/BasicMenu.Sample.nuspec b/Build/NuGetPackageSpecs/BasicMenu.Sample.nuspec index e37ebff93..72999749d 100644 --- a/Build/NuGetPackageSpecs/BasicMenu.Sample.nuspec +++ b/Build/NuGetPackageSpecs/BasicMenu.Sample.nuspec @@ -18,13 +18,15 @@ - - + + + + - - + + - \ No newline at end of file + diff --git a/Build/NuGetPackageSpecs/BasicShaders.Sample.nuspec b/Build/NuGetPackageSpecs/BasicShaders.Sample.nuspec index 564eb3bb8..78b84e00b 100644 --- a/Build/NuGetPackageSpecs/BasicShaders.Sample.nuspec +++ b/Build/NuGetPackageSpecs/BasicShaders.Sample.nuspec @@ -18,11 +18,13 @@ - - + + + + - \ No newline at end of file + diff --git a/Build/NuGetPackageSpecs/Benchmarks.Sample.nuspec b/Build/NuGetPackageSpecs/Benchmarks.Sample.nuspec index 6e09c209b..a8028bb33 100644 --- a/Build/NuGetPackageSpecs/Benchmarks.Sample.nuspec +++ b/Build/NuGetPackageSpecs/Benchmarks.Sample.nuspec @@ -18,13 +18,15 @@ - - + + + + - - + + - \ No newline at end of file + diff --git a/Build/NuGetPackageSpecs/CamView.Editor.nuspec b/Build/NuGetPackageSpecs/CamView.Editor.nuspec index cda3bdc54..3229d35ce 100644 --- a/Build/NuGetPackageSpecs/CamView.Editor.nuspec +++ b/Build/NuGetPackageSpecs/CamView.Editor.nuspec @@ -13,15 +13,16 @@ A basic Camera View editor module. A basic Camera View editor module. Duality Editor Plugin CamView - Patch Version Update - + Patch Version Update - - + + + + - - + + - \ No newline at end of file + diff --git a/Build/NuGetPackageSpecs/CameraController.Sample.nuspec b/Build/NuGetPackageSpecs/CameraController.Sample.nuspec index 018fcb1b4..c793fbcb9 100644 --- a/Build/NuGetPackageSpecs/CameraController.Sample.nuspec +++ b/Build/NuGetPackageSpecs/CameraController.Sample.nuspec @@ -18,13 +18,15 @@ - - + + + + - - + + - \ No newline at end of file + diff --git a/Build/NuGetPackageSpecs/Compatibility.Core.nuspec b/Build/NuGetPackageSpecs/Compatibility.Core.nuspec index c1e7224ba..b6263eb10 100644 --- a/Build/NuGetPackageSpecs/Compatibility.Core.nuspec +++ b/Build/NuGetPackageSpecs/Compatibility.Core.nuspec @@ -13,14 +13,15 @@ Defines helper classes to retain backwards compatibility with older Duality versions. Defines helper classes to retain backwards compatibility with older Duality versions. Duality Core Plugin Compatibility - Patch Version Update - + Patch Version Update - + + + - - + + - \ No newline at end of file + diff --git a/Build/NuGetPackageSpecs/CustomRenderingSetup.Sample.nuspec b/Build/NuGetPackageSpecs/CustomRenderingSetup.Sample.nuspec index a1083a08b..8e7f526ce 100644 --- a/Build/NuGetPackageSpecs/CustomRenderingSetup.Sample.nuspec +++ b/Build/NuGetPackageSpecs/CustomRenderingSetup.Sample.nuspec @@ -18,13 +18,15 @@ - - + + + + - - + + - \ No newline at end of file + diff --git a/Build/NuGetPackageSpecs/DefaultOpenTKBackend.Core.nuspec b/Build/NuGetPackageSpecs/DefaultOpenTKBackend.Core.nuspec index ea0b5e8f7..0e3824716 100644 --- a/Build/NuGetPackageSpecs/DefaultOpenTKBackend.Core.nuspec +++ b/Build/NuGetPackageSpecs/DefaultOpenTKBackend.Core.nuspec @@ -16,14 +16,16 @@ Added Support for Setting Hardware Cursors #ADD: It is now possible to adjust the hardware cursor on the game window through `INativeWindow`. - - + + + + - - - - + + + + - \ No newline at end of file + diff --git a/Build/NuGetPackageSpecs/DefaultOpenTKBackend.Editor.nuspec b/Build/NuGetPackageSpecs/DefaultOpenTKBackend.Editor.nuspec index 39461b1e9..888fdd6e1 100644 --- a/Build/NuGetPackageSpecs/DefaultOpenTKBackend.Editor.nuspec +++ b/Build/NuGetPackageSpecs/DefaultOpenTKBackend.Editor.nuspec @@ -13,18 +13,19 @@ The default editor backend layer for Duality. The default editor backend layer for Duality. It uses OpenGL WinForms controls to integrate game views with editor UI. Duality Editor Plugin Backend - Patch Version Update - + Patch Version Update - - - - - + + + + + + + - - + + - \ No newline at end of file + diff --git a/Build/NuGetPackageSpecs/DotNetFrameworkBackend.Core.nuspec b/Build/NuGetPackageSpecs/DotNetFrameworkBackend.Core.nuspec index ed607502f..a03d6e27a 100644 --- a/Build/NuGetPackageSpecs/DotNetFrameworkBackend.Core.nuspec +++ b/Build/NuGetPackageSpecs/DotNetFrameworkBackend.Core.nuspec @@ -14,13 +14,14 @@ The default system backend layer for Duality. It uses regular .Net Framework classes, as are available on desktop platforms. Duality Core Plugin Backend - + + + - Patch Version Update - + Patch Version Update - - + + - \ No newline at end of file + diff --git a/Build/NuGetPackageSpecs/DualStickSpaceShooter.Sample.nuspec b/Build/NuGetPackageSpecs/DualStickSpaceShooter.Sample.nuspec index 9b5e42b32..a72aaf6a4 100644 --- a/Build/NuGetPackageSpecs/DualStickSpaceShooter.Sample.nuspec +++ b/Build/NuGetPackageSpecs/DualStickSpaceShooter.Sample.nuspec @@ -18,13 +18,15 @@ - - + + + + - - + + - \ No newline at end of file + diff --git a/Build/NuGetPackageSpecs/Duality.Docs.nuspec b/Build/NuGetPackageSpecs/Duality.Docs.nuspec index 48c636adc..faae16da2 100644 --- a/Build/NuGetPackageSpecs/Duality.Docs.nuspec +++ b/Build/NuGetPackageSpecs/Duality.Docs.nuspec @@ -16,10 +16,12 @@ Major Version Update - + + + - + - \ No newline at end of file + diff --git a/Build/NuGetPackageSpecs/Duality.Editor.nuspec b/Build/NuGetPackageSpecs/Duality.Editor.nuspec index 76548f88f..cdb787b04 100644 --- a/Build/NuGetPackageSpecs/Duality.Editor.nuspec +++ b/Build/NuGetPackageSpecs/Duality.Editor.nuspec @@ -13,26 +13,27 @@ The Duality editor. The Duality editor. Duality Editor - - + - - - - - + + + + + + + - - - - - - - + + + + + + + - \ No newline at end of file + diff --git a/Build/NuGetPackageSpecs/Duality.Launcher.nuspec b/Build/NuGetPackageSpecs/Duality.Launcher.nuspec index 05180d499..44c43bc75 100644 --- a/Build/NuGetPackageSpecs/Duality.Launcher.nuspec +++ b/Build/NuGetPackageSpecs/Duality.Launcher.nuspec @@ -13,15 +13,16 @@ The default launcher application for Duality games. The default launcher application for Duality games. Duality Launcher - Patch Version Update - + Patch Version Update - + + + - - - + + + - \ No newline at end of file + diff --git a/Build/NuGetPackageSpecs/Duality.Physics.nuspec b/Build/NuGetPackageSpecs/Duality.Physics.nuspec index 092f70ed2..b23f641b3 100644 --- a/Build/NuGetPackageSpecs/Duality.Physics.nuspec +++ b/Build/NuGetPackageSpecs/Duality.Physics.nuspec @@ -15,12 +15,11 @@ - Patch Version Update - + Patch Version Update - - - + + + - \ No newline at end of file + diff --git a/Build/NuGetPackageSpecs/Duality.Primitives.nuspec b/Build/NuGetPackageSpecs/Duality.Primitives.nuspec index 27d14031c..4300e8066 100644 --- a/Build/NuGetPackageSpecs/Duality.Primitives.nuspec +++ b/Build/NuGetPackageSpecs/Duality.Primitives.nuspec @@ -20,8 +20,8 @@ - - - + + + - \ No newline at end of file + diff --git a/Build/NuGetPackageSpecs/Duality.nuspec b/Build/NuGetPackageSpecs/Duality.nuspec index 674919ab3..b41f3512f 100644 --- a/Build/NuGetPackageSpecs/Duality.nuspec +++ b/Build/NuGetPackageSpecs/Duality.nuspec @@ -13,20 +13,21 @@ The Duality engine core. The Duality engine core. Duality Core - - + - - - + + + + + - - - + + + - \ No newline at end of file + diff --git a/Build/NuGetPackageSpecs/DynamicLighting.Sample.nuspec b/Build/NuGetPackageSpecs/DynamicLighting.Sample.nuspec index 8c90deda5..9f09a00c4 100644 --- a/Build/NuGetPackageSpecs/DynamicLighting.Sample.nuspec +++ b/Build/NuGetPackageSpecs/DynamicLighting.Sample.nuspec @@ -18,14 +18,16 @@ - - + + + + - - - + + + - \ No newline at end of file + diff --git a/Build/NuGetPackageSpecs/FlapOrDie.Sample.nuspec b/Build/NuGetPackageSpecs/FlapOrDie.Sample.nuspec index 0dc579d50..8c7a4a7e5 100644 --- a/Build/NuGetPackageSpecs/FlapOrDie.Sample.nuspec +++ b/Build/NuGetPackageSpecs/FlapOrDie.Sample.nuspec @@ -18,13 +18,15 @@ - - + + + + - - + + - \ No newline at end of file + diff --git a/Build/NuGetPackageSpecs/HelpAdvisor.Editor.nuspec b/Build/NuGetPackageSpecs/HelpAdvisor.Editor.nuspec index 0b19f2f5c..bd5547da3 100644 --- a/Build/NuGetPackageSpecs/HelpAdvisor.Editor.nuspec +++ b/Build/NuGetPackageSpecs/HelpAdvisor.Editor.nuspec @@ -13,15 +13,16 @@ The Help Advisor editor module provides mouseover information on documented topics. The Help Advisor editor module provides mouseover information on documented topics. Duality Editor Plugin HelpAdvisor - Patch Version Update - + Patch Version Update - - + + + + - - + + - \ No newline at end of file + diff --git a/Build/NuGetPackageSpecs/InputHandling.Sample.nuspec b/Build/NuGetPackageSpecs/InputHandling.Sample.nuspec index 4205957fb..b08f9f1bc 100644 --- a/Build/NuGetPackageSpecs/InputHandling.Sample.nuspec +++ b/Build/NuGetPackageSpecs/InputHandling.Sample.nuspec @@ -18,13 +18,15 @@ - - + + + + - - + + - \ No newline at end of file + diff --git a/Build/NuGetPackageSpecs/LogView.Editor.nuspec b/Build/NuGetPackageSpecs/LogView.Editor.nuspec index 5e0d2b7ea..e44fc728f 100644 --- a/Build/NuGetPackageSpecs/LogView.Editor.nuspec +++ b/Build/NuGetPackageSpecs/LogView.Editor.nuspec @@ -13,15 +13,16 @@ Displays the content of the primary text logs of Duality. Displays the content of the primary text logs of Duality. Duality Editor Plugin LogView - Patch Version Update - + Patch Version Update - - + + + + - - + + - \ No newline at end of file + diff --git a/Build/NuGetPackageSpecs/ObjectInspector.Editor.nuspec b/Build/NuGetPackageSpecs/ObjectInspector.Editor.nuspec index 30579a104..27e07275b 100644 --- a/Build/NuGetPackageSpecs/ObjectInspector.Editor.nuspec +++ b/Build/NuGetPackageSpecs/ObjectInspector.Editor.nuspec @@ -16,12 +16,14 @@ Inspector Auto Update Bugfix #FIX: Fixed Object Inspector auto refresh not working unless disabled and enabled again. - - + + + + - - + + - \ No newline at end of file + diff --git a/Build/NuGetPackageSpecs/ParticleSystem.Sample.nuspec b/Build/NuGetPackageSpecs/ParticleSystem.Sample.nuspec index f9232e820..3f662737e 100644 --- a/Build/NuGetPackageSpecs/ParticleSystem.Sample.nuspec +++ b/Build/NuGetPackageSpecs/ParticleSystem.Sample.nuspec @@ -18,13 +18,15 @@ - - + + + + - - + + - \ No newline at end of file + diff --git a/Build/NuGetPackageSpecs/Physics.Sample.nuspec b/Build/NuGetPackageSpecs/Physics.Sample.nuspec index 082953b06..e8e5a11ae 100644 --- a/Build/NuGetPackageSpecs/Physics.Sample.nuspec +++ b/Build/NuGetPackageSpecs/Physics.Sample.nuspec @@ -18,13 +18,15 @@ - - + + + + - - + + - \ No newline at end of file + diff --git a/Build/NuGetPackageSpecs/ProjectView.Editor.nuspec b/Build/NuGetPackageSpecs/ProjectView.Editor.nuspec index 17231efb5..581f85cb2 100644 --- a/Build/NuGetPackageSpecs/ProjectView.Editor.nuspec +++ b/Build/NuGetPackageSpecs/ProjectView.Editor.nuspec @@ -13,15 +13,16 @@ Provides an overview of project Resources and allows importing new Assets. Provides an overview of project Resources and allows importing new Assets. Duality Editor Plugin ProjectView - Patch Version Update - + Patch Version Update - - + + + + - - + + - \ No newline at end of file + diff --git a/Build/NuGetPackageSpecs/SceneView.Editor.nuspec b/Build/NuGetPackageSpecs/SceneView.Editor.nuspec index 4f4e45192..1ca1aa02d 100644 --- a/Build/NuGetPackageSpecs/SceneView.Editor.nuspec +++ b/Build/NuGetPackageSpecs/SceneView.Editor.nuspec @@ -13,15 +13,16 @@ Displays the contents of the current Scene hierarchically and allows editing the Scene graph. Displays the contents of the current Scene hierarchically and allows editing the Scene graph. Duality Editor Plugin SceneView - Patch Version Update - + Patch Version Update - - + + + + - - + + - \ No newline at end of file + diff --git a/Build/NuGetPackageSpecs/SmoothAnimation.Sample.nuspec b/Build/NuGetPackageSpecs/SmoothAnimation.Sample.nuspec index d6b914950..be34d5a2b 100644 --- a/Build/NuGetPackageSpecs/SmoothAnimation.Sample.nuspec +++ b/Build/NuGetPackageSpecs/SmoothAnimation.Sample.nuspec @@ -18,13 +18,15 @@ - - + + + + - - + + - \ No newline at end of file + diff --git a/Build/NuGetPackageSpecs/Steering.Sample.nuspec b/Build/NuGetPackageSpecs/Steering.Sample.nuspec index 23fe548fa..3ed431a64 100644 --- a/Build/NuGetPackageSpecs/Steering.Sample.nuspec +++ b/Build/NuGetPackageSpecs/Steering.Sample.nuspec @@ -18,12 +18,14 @@ - + + + - - + + - \ No newline at end of file + diff --git a/Build/NuGetPackageSpecs/Tilemaps.Core.nuspec b/Build/NuGetPackageSpecs/Tilemaps.Core.nuspec index d0cf0b21f..508b32616 100644 --- a/Build/NuGetPackageSpecs/Tilemaps.Core.nuspec +++ b/Build/NuGetPackageSpecs/Tilemaps.Core.nuspec @@ -16,12 +16,14 @@ Tilemap Editing Default Empty Tile #CHANGE: Use a default empty tile for all empty tiles. - + + + - - - + + + - \ No newline at end of file + diff --git a/Build/NuGetPackageSpecs/Tilemaps.Editor.nuspec b/Build/NuGetPackageSpecs/Tilemaps.Editor.nuspec index 0d9899eb7..cf28fd1e1 100644 --- a/Build/NuGetPackageSpecs/Tilemaps.Editor.nuspec +++ b/Build/NuGetPackageSpecs/Tilemaps.Editor.nuspec @@ -16,14 +16,16 @@ Tilemap Editing Default Empty Tile #CHANGE: Use a default empty tile for all empty tiles. - - - + + + + + - - - + + + - \ No newline at end of file + diff --git a/Build/NuGetPackageSpecs/Tilemaps.Sample.nuspec b/Build/NuGetPackageSpecs/Tilemaps.Sample.nuspec index 103cdd487..f4e57fd62 100644 --- a/Build/NuGetPackageSpecs/Tilemaps.Sample.nuspec +++ b/Build/NuGetPackageSpecs/Tilemaps.Sample.nuspec @@ -19,14 +19,16 @@ - - - + + + + + - - + + - \ No newline at end of file + diff --git a/Duality.sln b/Duality.sln index 065e30c20..173db2ce2 100644 --- a/Duality.sln +++ b/Duality.sln @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.29911.84 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Duality", "Source\Core\Duality\Duality.csproj", "{D821AFB9-BCC9-4025-9A9C-798E2BC546AB}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Duality", "Source\Core\Duality\Duality.csproj", "{D821AFB9-BCC9-4025-9A9C-798E2BC546AB}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DualityEditor", "Source\Editor\DualityEditor\DualityEditor.csproj", "{9FB9F397-FD39-460C-A9AD-B4780D19945F}" EndProject @@ -13,11 +13,11 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DualityLauncher", "Source\L EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelpAdvisor.Editor", "Source\Plugins\EditorModules\HelpAdvisor\HelpAdvisor.Editor.csproj", "{C8DB64F9-9FBD-456F-A8AB-BC3478DFAA85}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DynamicLighting.Core", "Samples\DynamicLighting\Core\DynamicLighting.Core.csproj", "{AFE883F3-72B4-4C7C-A1D1-44EDC09C8F6E}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DynamicLighting.Sample.Core", "Samples\DynamicLighting\Core\DynamicLighting.Sample.Core.csproj", "{AFE883F3-72B4-4C7C-A1D1-44EDC09C8F6E}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DynamicLighting.Editor", "Samples\DynamicLighting\Editor\DynamicLighting.Editor.csproj", "{3518ECDE-DC59-472A-AB91-7AEF884C6DDA}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DynamicLighting.Sample.Editor", "Samples\DynamicLighting\Editor\DynamicLighting.Sample.Editor.csproj", "{3518ECDE-DC59-472A-AB91-7AEF884C6DDA}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Compatibility.Core", "Source\Plugins\Compatibility\Compatibility.Core.csproj", "{FDA21F0F-1646-4E41-A1FC-1C3F05694CE4}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Compatibility.Core", "Source\Plugins\Compatibility\Compatibility.Core.csproj", "{FDA21F0F-1646-4E41-A1FC-1C3F05694CE4}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DualityTests", "Test\Core\DualityTests.csproj", "{0C1B88A8-4FF3-43D3-9BC6-E71DBB561075}" EndProject @@ -35,9 +35,9 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "EditorModules", "EditorModu EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DualityUpdater", "Source\Editor\Updater\DualityUpdater.csproj", "{7BED6319-022E-4B62-8F64-F51DE9A2D7EF}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DualStickSpaceShooter", "Samples\DualStickSpaceShooter\DualStickSpaceShooter.csproj", "{54376712-DBFA-4EF3-A8BA-B1D44A2DA97E}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DualStickSpaceShooter.Sample.Core", "Samples\DualStickSpaceShooter\DualStickSpaceShooter.Sample.Core.csproj", "{54376712-DBFA-4EF3-A8BA-B1D44A2DA97E}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DualityPrimitives", "Source\Core\Primitives\DualityPrimitives.csproj", "{C87A6A2F-E537-48FA-A789-3C54CF29CC09}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DualityPrimitives", "Source\Core\Primitives\DualityPrimitives.csproj", "{C87A6A2F-E537-48FA-A789-3C54CF29CC09}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DefaultOpenTK.Editor", "Source\Platform\DefaultOpenTKEditor\DefaultOpenTK.Editor.csproj", "{FDA91F3F-1621-4E41-A1FC-2C3F45754CE4}" EndProject @@ -53,19 +53,19 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Samples", "Samples", "{9D21 EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Launcher", "Launcher", "{2F8B8ADF-0BBE-4D8F-AABC-A46E9A5CF6CB}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CameraController", "Samples\CameraController\CameraController.csproj", "{3FC49A5C-EDF1-4AE6-9EF6-6635296102EF}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CameraController.Sample.Core", "Samples\CameraController\CameraController.Sample.Core.csproj", "{3FC49A5C-EDF1-4AE6-9EF6-6635296102EF}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BasicMenu", "Samples\BasicMenu\BasicMenu.csproj", "{D3F86677-EB30-450B-8AAC-81F0FBDC19B5}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BasicMenu.Sample.Core", "Samples\BasicMenu\BasicMenu.Sample.Core.csproj", "{D3F86677-EB30-450B-8AAC-81F0FBDC19B5}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "InputHandling", "Samples\InputHandling\InputHandling.csproj", "{9EF413B4-0416-45FF-9A8D-85CC21C4C15B}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "InputHandling.Sample.Core", "Samples\InputHandling\InputHandling.Sample.Core.csproj", "{9EF413B4-0416-45FF-9A8D-85CC21C4C15B}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BasicShaders", "Samples\BasicShaders\BasicShaders.csproj", "{24BD25E6-C512-4359-A6BC-DAA155568C58}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BasicShaders.Sample.Core", "Samples\BasicShaders\BasicShaders.Sample.Core.csproj", "{24BD25E6-C512-4359-A6BC-DAA155568C58}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FlapOrDie", "Samples\FlapOrDie\FlapOrDie.csproj", "{31ED388E-C8FD-4A77-A0DC-42CD5EB54E4C}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FlapOrDie.Sample.Core", "Samples\FlapOrDie\FlapOrDie.Sample.Core.csproj", "{31ED388E-C8FD-4A77-A0DC-42CD5EB54E4C}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AudioHandling", "Samples\AudioHandling\AudioHandling.csproj", "{A16AF3AA-B690-4ADD-90DC-D5A90190AD0E}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AudioHandling.Sample.Core", "Samples\AudioHandling\AudioHandling.Sample.Core.csproj", "{A16AF3AA-B690-4ADD-90DC-D5A90190AD0E}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ParticleSystem", "Samples\ParticleSystem\ParticleSystem.csproj", "{025EAC49-A10B-4116-B26B-72EB36CE7944}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ParticleSystem.Sample.Core", "Samples\ParticleSystem\ParticleSystem.Sample.Core.csproj", "{025EAC49-A10B-4116-B26B-72EB36CE7944}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Plugins", "Plugins", "{F7B868F5-0B5D-497C-BA40-FA08DD3EB07D}" EndProject @@ -77,28 +77,28 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DualityEditorTests", "Test\ EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tilemaps", "Tilemaps", "{F5F3C4FF-9B64-4873-AE84-4C323B670EA9}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tilemaps.Core", "Source\Plugins\Tilemaps\Core\Tilemaps.Core.csproj", "{2F7D1F9D-0803-4E13-85A6-0AF56AC05431}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tilemaps.Core", "Source\Plugins\Tilemaps\Core\Tilemaps.Core.csproj", "{2F7D1F9D-0803-4E13-85A6-0AF56AC05431}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tilemaps.Editor", "Source\Plugins\Tilemaps\Editor\Tilemaps.Editor.csproj", "{22D59FE7-3A2C-4415-9610-6F9C7B68594A}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tilemaps.Sample", "Samples\Tilemaps\Tilemaps.Sample.csproj", "{D014227E-3E69-4C8B-984A-1519AA35C1AD}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tilemaps.Sample.Core", "Samples\Tilemaps\Tilemaps.Sample.Core.csproj", "{D014227E-3E69-4C8B-984A-1519AA35C1AD}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Steering", "Samples\Steering\Steering.csproj", "{0130132B-C38D-463E-90AC-5D389E934FAE}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Steering.Sample.Core", "Samples\Steering\Steering.Sample.Core.csproj", "{0130132B-C38D-463E-90AC-5D389E934FAE}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Physics.Sample", "Samples\Physics\Physics.Sample.csproj", "{45B4CC01-CCDC-4835-8EDF-F0B706EA3DDF}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Physics.Sample.Core", "Samples\Physics\Physics.Sample.Core.csproj", "{45B4CC01-CCDC-4835-8EDF-F0B706EA3DDF}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SmoothAnimation", "Samples\SmoothAnimation\SmoothAnimation.csproj", "{D29F3890-96E1-491B-AFAC-AD82E70E4208}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SmoothAnimation.Sample.Core", "Samples\SmoothAnimation\SmoothAnimation.Sample.Core.csproj", "{D29F3890-96E1-491B-AFAC-AD82E70E4208}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CustomRenderingSetup", "Samples\CustomRenderingSetup\CustomRenderingSetup.csproj", "{D220795D-8A59-432F-A8EC-CE9143DD07D5}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CustomRenderingSetup.Sample.Core", "Samples\CustomRenderingSetup\CustomRenderingSetup.Sample.Core.csproj", "{D220795D-8A59-432F-A8EC-CE9143DD07D5}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{6EA4E6D3-5509-484F-B03C-9D912E9BD013}" ProjectSection(SolutionItems) = preProject .editorconfig = .editorconfig EndProjectSection EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Benchmarks.Sample", "Samples\Benchmarks\Benchmarks.Sample.csproj", "{165D83B8-EAE8-4CDC-9003-E595D4225B8F}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Benchmarks.Sample.Core", "Samples\Benchmarks\Benchmarks.Sample.Core.csproj", "{165D83B8-EAE8-4CDC-9003-E595D4225B8F}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DualityPhysics", "Source\Core\Physics\DualityPhysics.csproj", "{5CA66347-C3DA-47DA-B07B-E2B89E6E712A}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DualityPhysics", "Source\Core\Physics\DualityPhysics.csproj", "{5CA66347-C3DA-47DA-B07B-E2B89E6E712A}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/Samples/AudioHandling/AudioHandling.Sample.Core.csproj b/Samples/AudioHandling/AudioHandling.Sample.Core.csproj new file mode 100644 index 000000000..6fe0dd075 --- /dev/null +++ b/Samples/AudioHandling/AudioHandling.Sample.Core.csproj @@ -0,0 +1,19 @@ + + + + + netstandard2.0 + true + 4.0.0-alpha + + + + + False + + + False + + + + diff --git a/Samples/AudioHandling/AudioHandling.csproj b/Samples/AudioHandling/AudioHandling.csproj deleted file mode 100644 index a50a9f9f7..000000000 --- a/Samples/AudioHandling/AudioHandling.csproj +++ /dev/null @@ -1,71 +0,0 @@ - - - - - Program - $(SolutionDir)Build\Output\DualityEditor.exe - ..\ - - - Debug - AnyCPU - 8.0.30703 - 2.0 - {A16AF3AA-B690-4ADD-90DC-D5A90190AD0E} - Library - Properties - AudioHandling - AudioHandling.core - 512 - ..\..\..\..\..\..\ - true - {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - Profile111 - v4.5 - - - true - full - false - Content\Plugins\ - DEBUG;TRACE - prompt - 4 - AudioHandling.core.xml - 1591,1592,1573,1571,1570,1572 - false - 7.3 - - - pdbonly - true - Content\Plugins\ - TRACE - prompt - 4 - AudioHandling.core.xml - 1591,1592,1573,1571,1570,1572 - false - 7.3 - - - - - - - - - - - {c87a6a2f-e537-48fa-a789-3c54cf29cc09} - DualityPrimitives - False - - - {D821AFB9-BCC9-4025-9A9C-798E2BC546AB} - Duality - False - - - - \ No newline at end of file diff --git a/Samples/AudioHandling/Properties/AssemblyInfo.cs b/Samples/AudioHandling/Properties/AssemblyInfo.cs deleted file mode 100644 index 72f8537d0..000000000 --- a/Samples/AudioHandling/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,34 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// Allgemeine Informationen über eine Assembly werden über die folgenden -// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, -// die mit einer Assembly verknüpft sind. -[assembly: AssemblyTitle("AudioHandling")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("")] -[assembly: AssemblyCopyright("")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Durch Festlegen von ComVisible auf "false" werden die Typen in dieser Assembly unsichtbar -// für COM-Komponenten. Wenn Sie auf einen Typ in dieser Assembly von -// COM zugreifen müssen, legen Sie das ComVisible-Attribut für diesen Typ auf "true" fest. -[assembly: ComVisible(false)] - -// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird -[assembly: Guid("00c8792c-39b8-4558-acf9-03013402301a")] - -// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: -// -// Hauptversion -// Nebenversion -// Buildnummer -// Revision -// -// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern -// übernehmen, indem Sie "*" eingeben: -[assembly: AssemblyVersion("4.0.0")] diff --git a/Samples/BasicMenu/BasicMenu.Sample.Core.csproj b/Samples/BasicMenu/BasicMenu.Sample.Core.csproj new file mode 100644 index 000000000..6fe0dd075 --- /dev/null +++ b/Samples/BasicMenu/BasicMenu.Sample.Core.csproj @@ -0,0 +1,19 @@ + + + + + netstandard2.0 + true + 4.0.0-alpha + + + + + False + + + False + + + + diff --git a/Samples/BasicMenu/BasicMenu.csproj b/Samples/BasicMenu/BasicMenu.csproj deleted file mode 100644 index 6bad6f2e9..000000000 --- a/Samples/BasicMenu/BasicMenu.csproj +++ /dev/null @@ -1,79 +0,0 @@ - - - - - Program - $(SolutionDir)Build\Output\DualityEditor.exe - ..\ - - - Debug - AnyCPU - 8.0.30703 - 2.0 - {D3F86677-EB30-450B-8AAC-81F0FBDC19B5} - Library - Properties - BasicMenu - BasicMenu.core - 512 - ..\..\..\..\..\..\ - true - {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - Profile111 - v4.5 - - - true - full - false - Content\Plugins\ - DEBUG;TRACE - prompt - 4 - BasicMenu.core.xml - 1591,1592,1573,1571,1570,1572 - false - 7.3 - - - pdbonly - true - Content\Plugins\ - TRACE - prompt - 4 - BasicMenu.core.xml - 1591,1592,1573,1571,1570,1572 - false - 7.3 - - - - - - - - - - - - - - - - - - - {c87a6a2f-e537-48fa-a789-3c54cf29cc09} - DualityPrimitives - False - - - {D821AFB9-BCC9-4025-9A9C-798E2BC546AB} - Duality - False - - - - \ No newline at end of file diff --git a/Samples/BasicMenu/Properties/AssemblyInfo.cs b/Samples/BasicMenu/Properties/AssemblyInfo.cs deleted file mode 100644 index 5c1ce9572..000000000 --- a/Samples/BasicMenu/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,34 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// Allgemeine Informationen über eine Assembly werden über die folgenden -// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, -// die mit einer Assembly verknüpft sind. -[assembly: AssemblyTitle("CameraController")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("")] -[assembly: AssemblyCopyright("")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Durch Festlegen von ComVisible auf "false" werden die Typen in dieser Assembly unsichtbar -// für COM-Komponenten. Wenn Sie auf einen Typ in dieser Assembly von -// COM zugreifen müssen, legen Sie das ComVisible-Attribut für diesen Typ auf "true" fest. -[assembly: ComVisible(false)] - -// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird -[assembly: Guid("00c8792c-39b8-4558-acf9-03013402301a")] - -// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: -// -// Hauptversion -// Nebenversion -// Buildnummer -// Revision -// -// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern -// übernehmen, indem Sie "*" eingeben: -[assembly: AssemblyVersion("4.0.0")] diff --git a/Samples/BasicShaders/BasicShaders.Sample.Core.csproj b/Samples/BasicShaders/BasicShaders.Sample.Core.csproj new file mode 100644 index 000000000..6fe0dd075 --- /dev/null +++ b/Samples/BasicShaders/BasicShaders.Sample.Core.csproj @@ -0,0 +1,19 @@ + + + + + netstandard2.0 + true + 4.0.0-alpha + + + + + False + + + False + + + + diff --git a/Samples/BasicShaders/BasicShaders.csproj b/Samples/BasicShaders/BasicShaders.csproj deleted file mode 100644 index 78957c0d2..000000000 --- a/Samples/BasicShaders/BasicShaders.csproj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - Program - $(SolutionDir)Build\Output\DualityEditor.exe - ..\ - - - Debug - AnyCPU - 8.0.30703 - 2.0 - {24BD25E6-C512-4359-A6BC-DAA155568C58} - Library - Properties - BasicShaders - BasicShaders.core - BasicShaders.core.xml - 512 - ..\..\..\..\..\..\ - true - {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - Profile111 - v4.5 - - - true - full - false - Content\Plugins\ - DEBUG;TRACE - prompt - 4 - 1591,1592,1573,1571,1570,1572 - false - 7.3 - - - pdbonly - true - Content\Plugins\ - TRACE - prompt - 4 - 1591,1592,1573,1571,1570,1572 - false - 7.3 - - - - - - - - {c87a6a2f-e537-48fa-a789-3c54cf29cc09} - DualityPrimitives - False - - - {D821AFB9-BCC9-4025-9A9C-798E2BC546AB} - Duality - False - - - - \ No newline at end of file diff --git a/Samples/BasicShaders/Properties/AssemblyInfo.cs b/Samples/BasicShaders/Properties/AssemblyInfo.cs deleted file mode 100644 index a4f5b96f4..000000000 --- a/Samples/BasicShaders/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,34 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// Allgemeine Informationen über eine Assembly werden über die folgenden -// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, -// die mit einer Assembly verknüpft sind. -[assembly: AssemblyTitle("BasicShaders")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("")] -[assembly: AssemblyCopyright("")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Durch Festlegen von ComVisible auf "false" werden die Typen in dieser Assembly unsichtbar -// für COM-Komponenten. Wenn Sie auf einen Typ in dieser Assembly von -// COM zugreifen müssen, legen Sie das ComVisible-Attribut für diesen Typ auf "true" fest. -[assembly: ComVisible(false)] - -// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird -[assembly: Guid("00c8792c-39b8-4558-acf9-03013402301a")] - -// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: -// -// Hauptversion -// Nebenversion -// Buildnummer -// Revision -// -// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern -// übernehmen, indem Sie "*" eingeben: -[assembly: AssemblyVersion("4.0.0")] diff --git a/Samples/Benchmarks/Benchmarks.Sample.Core.csproj b/Samples/Benchmarks/Benchmarks.Sample.Core.csproj new file mode 100644 index 000000000..172389eb2 --- /dev/null +++ b/Samples/Benchmarks/Benchmarks.Sample.Core.csproj @@ -0,0 +1,16 @@ + + + + netstandard2.0 + true + 4.0.0-alpha + + + + + + False + + + + \ No newline at end of file diff --git a/Samples/Benchmarks/Benchmarks.Sample.csproj b/Samples/Benchmarks/Benchmarks.Sample.csproj deleted file mode 100644 index 4b01d96cb..000000000 --- a/Samples/Benchmarks/Benchmarks.Sample.csproj +++ /dev/null @@ -1,82 +0,0 @@ - - - - - Program - $(SolutionDir)Build\Output\DualityEditor.exe - ..\ - - - Debug - AnyCPU - 8.0.30703 - 2.0 - {165D83B8-EAE8-4CDC-9003-E595D4225B8F} - Library - Properties - Duality.Samples.Benchmarks - Benchmarks.Sample.core - 512 - ..\..\..\..\..\..\ - true - {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - Profile111 - v4.5 - - - true - full - false - Content\Plugins\ - DEBUG;TRACE - prompt - 4 - Benchmarks.Sample.core.xml - 1591,1592,1573,1571,1570,1572 - false - 7.3 - - - pdbonly - true - Content\Plugins\ - TRACE - prompt - 4 - Benchmarks.Sample.core.xml - 1591,1592,1573,1571,1570,1572 - false - 7.3 - - - - - - - - - - - - - - - - - - - - - - {c87a6a2f-e537-48fa-a789-3c54cf29cc09} - DualityPrimitives - False - - - {D821AFB9-BCC9-4025-9A9C-798E2BC546AB} - Duality - False - - - - \ No newline at end of file diff --git a/Samples/Benchmarks/Properties/AssemblyInfo.cs b/Samples/Benchmarks/Properties/AssemblyInfo.cs deleted file mode 100644 index 91b5fc4d7..000000000 --- a/Samples/Benchmarks/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,34 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// Allgemeine Informationen über eine Assembly werden über die folgenden -// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, -// die mit einer Assembly verknüpft sind. -[assembly: AssemblyTitle("Physics.Sample")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("")] -[assembly: AssemblyCopyright("")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Durch Festlegen von ComVisible auf "false" werden die Typen in dieser Assembly unsichtbar -// für COM-Komponenten. Wenn Sie auf einen Typ in dieser Assembly von -// COM zugreifen müssen, legen Sie das ComVisible-Attribut für diesen Typ auf "true" fest. -[assembly: ComVisible(false)] - -// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird -[assembly: Guid("00c8792c-39b8-4558-acf9-03013402301a")] - -// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: -// -// Hauptversion -// Nebenversion -// Buildnummer -// Revision -// -// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern -// übernehmen, indem Sie "*" eingeben: -[assembly: AssemblyVersion("4.0.0")] diff --git a/Samples/CameraController/CameraController.Sample.Core.csproj b/Samples/CameraController/CameraController.Sample.Core.csproj new file mode 100644 index 000000000..43faeb4d2 --- /dev/null +++ b/Samples/CameraController/CameraController.Sample.Core.csproj @@ -0,0 +1,19 @@ + + + + + netstandard2.0 + true + 4.0.0-alpha + + + + + False + + + False + + + + diff --git a/Samples/CameraController/CameraController.core.xml b/Samples/CameraController/CameraController.core.xml deleted file mode 100644 index d36fb568f..000000000 --- a/Samples/CameraController/CameraController.core.xml +++ /dev/null @@ -1,63 +0,0 @@ - - - - CameraController.core - - - - - This is a public interface that allows this sample project to - communicate with all its different CameraController implementations, - without knowing them personally. If you just want to pick one specific - CameraController for your project, you don't need this interface at all. - Just remove it. - - - - - [GET / SET] The object which is followed by this controller. - - - - - [GET / SET] How smooth the camera should follow its target. - - - - - [GET / SET] The distance threshold that needs to be exceeded before the camera starts to move. - - - - - [GET / SET] How smooth the camera should follow its target. - - - - - This class is in control of the example scene. It draws some debug information - and makes sure that users can select a camera controller to use, etc. - - - - - [GET / SET] The main camera, on which sample camera controllers will be installed. - - - - - [GET / SET] The target object, which sample camera controllers will be configured to follow. - - - - - [GET / SET] The index of the currently active camera controller. - - - - - [GET / SET] The maximum movement speed of the player character. - - - - diff --git a/Samples/CameraController/CameraController.csproj b/Samples/CameraController/CameraController.csproj deleted file mode 100644 index 874c9d8c2..000000000 --- a/Samples/CameraController/CameraController.csproj +++ /dev/null @@ -1,74 +0,0 @@ - - - - - Program - $(SolutionDir)Build\Output\DualityEditor.exe - ..\ - - - Debug - AnyCPU - 8.0.30703 - 2.0 - {3FC49A5C-EDF1-4AE6-9EF6-6635296102EF} - Library - Properties - CameraController - CameraController.core - 512 - ..\..\..\..\..\..\ - true - {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - Profile111 - v4.5 - - - true - full - false - Content\Plugins\ - DEBUG;TRACE - prompt - 4 - CameraController.core.xml - 1591,1592,1573,1571,1570,1572 - false - 7.3 - - - pdbonly - true - Content\Plugins\ - TRACE - prompt - 4 - CameraController.core.xml - 1591,1592,1573,1571,1570,1572 - false - 7.3 - - - - - - - - - - - - - - {c87a6a2f-e537-48fa-a789-3c54cf29cc09} - DualityPrimitives - False - - - {D821AFB9-BCC9-4025-9A9C-798E2BC546AB} - Duality - False - - - - \ No newline at end of file diff --git a/Samples/CameraController/Properties/AssemblyInfo.cs b/Samples/CameraController/Properties/AssemblyInfo.cs deleted file mode 100644 index 5c1ce9572..000000000 --- a/Samples/CameraController/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,34 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// Allgemeine Informationen über eine Assembly werden über die folgenden -// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, -// die mit einer Assembly verknüpft sind. -[assembly: AssemblyTitle("CameraController")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("")] -[assembly: AssemblyCopyright("")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Durch Festlegen von ComVisible auf "false" werden die Typen in dieser Assembly unsichtbar -// für COM-Komponenten. Wenn Sie auf einen Typ in dieser Assembly von -// COM zugreifen müssen, legen Sie das ComVisible-Attribut für diesen Typ auf "true" fest. -[assembly: ComVisible(false)] - -// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird -[assembly: Guid("00c8792c-39b8-4558-acf9-03013402301a")] - -// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: -// -// Hauptversion -// Nebenversion -// Buildnummer -// Revision -// -// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern -// übernehmen, indem Sie "*" eingeben: -[assembly: AssemblyVersion("4.0.0")] diff --git a/Samples/CustomRenderingSetup/CustomRenderingSetup.Sample.Core.csproj b/Samples/CustomRenderingSetup/CustomRenderingSetup.Sample.Core.csproj new file mode 100644 index 000000000..0dd351c64 --- /dev/null +++ b/Samples/CustomRenderingSetup/CustomRenderingSetup.Sample.Core.csproj @@ -0,0 +1,14 @@ + + + + netstandard2.0 + true + 4.0.0-alpha + + + + + False + + + \ No newline at end of file diff --git a/Samples/CustomRenderingSetup/CustomRenderingSetup.csproj b/Samples/CustomRenderingSetup/CustomRenderingSetup.csproj deleted file mode 100644 index fdcbf6b79..000000000 --- a/Samples/CustomRenderingSetup/CustomRenderingSetup.csproj +++ /dev/null @@ -1,72 +0,0 @@ - - - - - Program - $(SolutionDir)Build\Output\DualityEditor.exe - ..\ - - - Debug - AnyCPU - 8.0.30703 - 2.0 - {D220795D-8A59-432F-A8EC-CE9143DD07D5} - Library - Properties - CustomRenderingSetup - CustomRenderingSetup.core - RenderSetup.core.xml - 512 - ..\..\..\..\..\..\ - true - {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - Profile111 - v4.5 - - - true - full - false - Content\Plugins\ - DEBUG;TRACE - prompt - 4 - 1591,1592,1573,1571,1570,1572 - false - CustomRenderingSetup.core.xml - 7.3 - - - pdbonly - true - Content\Plugins\ - TRACE - prompt - 4 - 1591,1592,1573,1571,1570,1572 - false - CustomRenderingSetup.core.xml - 7.3 - - - - - - - - - - - {c87a6a2f-e537-48fa-a789-3c54cf29cc09} - DualityPrimitives - False - - - {D821AFB9-BCC9-4025-9A9C-798E2BC546AB} - Duality - False - - - - \ No newline at end of file diff --git a/Samples/CustomRenderingSetup/Properties/AssemblyInfo.cs b/Samples/CustomRenderingSetup/Properties/AssemblyInfo.cs deleted file mode 100644 index 5d03c6763..000000000 --- a/Samples/CustomRenderingSetup/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,34 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// Allgemeine Informationen über eine Assembly werden über die folgenden -// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, -// die mit einer Assembly verknüpft sind. -[assembly: AssemblyTitle("SmoothAnimation")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("")] -[assembly: AssemblyCopyright("")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Durch Festlegen von ComVisible auf "false" werden die Typen in dieser Assembly unsichtbar -// für COM-Komponenten. Wenn Sie auf einen Typ in dieser Assembly von -// COM zugreifen müssen, legen Sie das ComVisible-Attribut für diesen Typ auf "true" fest. -[assembly: ComVisible(false)] - -// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird -[assembly: Guid("00c8792c-39b8-4558-acf9-03013402301a")] - -// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: -// -// Hauptversion -// Nebenversion -// Buildnummer -// Revision -// -// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern -// übernehmen, indem Sie "*" eingeben: -[assembly: AssemblyVersion("4.0.0")] diff --git a/Samples/DualStickSpaceShooter/DualStickSpaceShooter.Sample.Core.csproj b/Samples/DualStickSpaceShooter/DualStickSpaceShooter.Sample.Core.csproj new file mode 100644 index 000000000..da0fa85a8 --- /dev/null +++ b/Samples/DualStickSpaceShooter/DualStickSpaceShooter.Sample.Core.csproj @@ -0,0 +1,19 @@ + + + + + netstandard2.0 + true + 4.0.0-alpha + + + + + False + + + False + + + + diff --git a/Samples/DualStickSpaceShooter/DualStickSpaceShooter.csproj b/Samples/DualStickSpaceShooter/DualStickSpaceShooter.csproj deleted file mode 100644 index 073707dc3..000000000 --- a/Samples/DualStickSpaceShooter/DualStickSpaceShooter.csproj +++ /dev/null @@ -1,93 +0,0 @@ - - - - - Program - $(SolutionDir)Build\Output\DualityEditor.exe - ..\ - - - Debug - AnyCPU - 8.0.30703 - 2.0 - {54376712-DBFA-4EF3-A8BA-B1D44A2DA97E} - Library - Properties - DualStickSpaceShooter - DualStickSpaceShooter.core - 512 - ..\..\..\..\..\..\ - true - {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - Profile111 - v4.5 - - - true - full - false - Content\Plugins\ - DEBUG;TRACE - prompt - 4 - DualStickSpaceShooter.core.xml - 1591,1592,1573,1571,1570,1572 - false - 7.3 - - - pdbonly - true - Content\Plugins\ - TRACE - prompt - 4 - DualStickSpaceShooter.core.xml - 1591,1592,1573,1571,1570,1572 - false - 7.3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {c87a6a2f-e537-48fa-a789-3c54cf29cc09} - DualityPrimitives - False - - - {D821AFB9-BCC9-4025-9A9C-798E2BC546AB} - Duality - False - - - - \ No newline at end of file diff --git a/Samples/DualStickSpaceShooter/Properties/AssemblyInfo.cs b/Samples/DualStickSpaceShooter/Properties/AssemblyInfo.cs deleted file mode 100644 index 4eb97b51a..000000000 --- a/Samples/DualStickSpaceShooter/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,34 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// Allgemeine Informationen über eine Assembly werden über die folgenden -// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, -// die mit einer Assembly verknüpft sind. -[assembly: AssemblyTitle("DualStickSpaceShooter")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("")] -[assembly: AssemblyCopyright("")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Durch Festlegen von ComVisible auf "false" werden die Typen in dieser Assembly unsichtbar -// für COM-Komponenten. Wenn Sie auf einen Typ in dieser Assembly von -// COM zugreifen müssen, legen Sie das ComVisible-Attribut für diesen Typ auf "true" fest. -[assembly: ComVisible(false)] - -// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird -[assembly: Guid("00c8792c-39b8-4558-acf9-03013402301a")] - -// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: -// -// Hauptversion -// Nebenversion -// Buildnummer -// Revision -// -// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern -// übernehmen, indem Sie "*" eingeben: -[assembly: AssemblyVersion("4.0.0")] diff --git a/Samples/DynamicLighting/Core/DebugObject.cs b/Samples/DynamicLighting/Core/DebugObject.cs deleted file mode 100644 index 11d2b6320..000000000 --- a/Samples/DynamicLighting/Core/DebugObject.cs +++ /dev/null @@ -1,60 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; - -using OpenTK; -using OpenTK.Graphics.OpenGL; - -using Duality; -using Duality.Components; -using Duality.Resources; -using Duality.ColorFormat; -using Duality.VertexFormat; - -namespace Debug -{ - [Serializable] - [RequiredComponent(typeof(Transform))] - public class DebugObject : Renderer - { - public override float BoundRadius - { - get { return MathF.Sqrt(50.0f * 50.0f + 50.0f * 50.0f); } - } - public override void Draw(IDrawDevice device) - { - // Perform Camera space transformation - Vector3 posBefore = this.GameObj.Transform.Pos; - Vector3 posTemp = posBefore; - float scaleTemp = 1.0f; - device.PreprocessCoords(this, ref posTemp, ref scaleTemp); - - // Draw debug text - VertexC1P3T2[] textVertices; - textVertices = null; - Font.GenericMonospace10.Res.EmitTextVertices( - string.Format("Position (world): {0:0}, {1:0}, {2:0}", posBefore.X, posBefore.Y, posBefore.Z), - ref textVertices, posTemp.X, posTemp.Y, posTemp.Z); - device.AddVertices(Font.GenericMonospace10.Res.Material, BeginMode.Quads, textVertices); - - textVertices = null; - Font.GenericMonospace10.Res.EmitTextVertices( - string.Format("Position (cam): {0:0}, {1:0}, {2:0}", posTemp.X, posTemp.Y, posTemp.Z), - ref textVertices, posTemp.X, posTemp.Y + 10, posTemp.Z); - device.AddVertices(Font.GenericMonospace10.Res.Material, BeginMode.Quads, textVertices); - - textVertices = null; - Font.GenericMonospace10.Res.EmitTextVertices( - string.Format("Scale: {0:F}", scaleTemp), - ref textVertices, posTemp.X, posTemp.Y + 20, posTemp.Z); - device.AddVertices(Font.GenericMonospace10.Res.Material, BeginMode.Quads, textVertices); - - // Draw position indicator - device.AddVertices(new BatchInfo(DrawTechnique.Alpha, ColorRgba.Red.WithAlpha(0.25f)), BeginMode.Quads, new VertexP3[] { - new VertexP3(posTemp.X - 50.0f * scaleTemp, posTemp.Y - 50.0f * scaleTemp, posTemp.Z), - new VertexP3(posTemp.X + 50.0f * scaleTemp, posTemp.Y - 50.0f * scaleTemp, posTemp.Z), - new VertexP3(posTemp.X + 50.0f * scaleTemp, posTemp.Y + 50.0f * scaleTemp, posTemp.Z), - new VertexP3(posTemp.X - 50.0f * scaleTemp, posTemp.Y + 50.0f * scaleTemp, posTemp.Z) }); - } - } -} diff --git a/Samples/DynamicLighting/Core/DynamicLighting.Core.csproj b/Samples/DynamicLighting/Core/DynamicLighting.Core.csproj deleted file mode 100644 index fc0459049..000000000 --- a/Samples/DynamicLighting/Core/DynamicLighting.Core.csproj +++ /dev/null @@ -1,82 +0,0 @@ - - - - - Program - $(SolutionDir)Build\Output\DualityEditor.exe - ..\ - - - Debug - AnyCPU - 8.0.30703 - 2.0 - {AFE883F3-72B4-4C7C-A1D1-44EDC09C8F6E} - Library - Properties - DynamicLighting - DynamicLighting.core - 512 - ..\..\ - true - {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - Profile111 - v4.5 - - - true - full - false - ..\Content\Plugins\ - DEBUG;TRACE - prompt - 4 - DynamicLighting.core.xml - 1591,1592,1573,1571,1570,1572 - false - 7.3 - - - pdbonly - true - ..\Content\Plugins\ - TRACE - prompt - 4 - DynamicLighting.core.xml - 1591,1592,1573,1571,1570,1572 - false - 7.3 - - - - - - - - - - - - - {c87a6a2f-e537-48fa-a789-3c54cf29cc09} - DualityPrimitives - False - - - {D821AFB9-BCC9-4025-9A9C-798E2BC546AB} - Duality - False - - - - - - - - - - - - - \ No newline at end of file diff --git a/Samples/DynamicLighting/Core/DynamicLighting.Sample.Core.csproj b/Samples/DynamicLighting/Core/DynamicLighting.Sample.Core.csproj new file mode 100644 index 000000000..e76428238 --- /dev/null +++ b/Samples/DynamicLighting/Core/DynamicLighting.Sample.Core.csproj @@ -0,0 +1,26 @@ + + + + + netstandard2.0 + true + 4.0.0-alpha + Copyright © Fedja Adam 2012 + + + + + False + + + False + + + + + + + + + + diff --git a/Samples/DynamicLighting/Core/Properties/AssemblyInfo.cs b/Samples/DynamicLighting/Core/Properties/AssemblyInfo.cs deleted file mode 100644 index 065f7a5e5..000000000 --- a/Samples/DynamicLighting/Core/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,34 +0,0 @@ -using System.Reflection; -using System.Resources; -using System.Runtime.InteropServices; - -// Allgemeine Informationen über eine Assembly werden über die folgenden -// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, -// die mit einer Assembly verknüpft sind. -[assembly: AssemblyTitle("DynamicLighting")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("DynamicLighting")] -[assembly: AssemblyCopyright("Copyright © Fedja Adam 2012")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Durch Festlegen von ComVisible auf "false" werden die Typen in dieser Assembly unsichtbar -// für COM-Komponenten. Wenn Sie auf einen Typ in dieser Assembly von -// COM zugreifen müssen, legen Sie das ComVisible-Attribut für diesen Typ auf "true" fest. -[assembly: ComVisible(false)] - -// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird -[assembly: Guid("00c8792c-39b8-4558-acf9-03013402301a")] - -// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: -// -// Hauptversion -// Nebenversion -// Buildnummer -// Revision -// -// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern -// übernehmen, indem Sie "*" eingeben: -[assembly: AssemblyVersion("4.0.0")] diff --git a/Samples/DynamicLighting/Editor/DynamicLighting.Editor.csproj b/Samples/DynamicLighting/Editor/DynamicLighting.Sample.Editor.csproj similarity index 95% rename from Samples/DynamicLighting/Editor/DynamicLighting.Editor.csproj rename to Samples/DynamicLighting/Editor/DynamicLighting.Sample.Editor.csproj index a79e523b3..90266807b 100644 --- a/Samples/DynamicLighting/Editor/DynamicLighting.Editor.csproj +++ b/Samples/DynamicLighting/Editor/DynamicLighting.Sample.Editor.csproj @@ -15,7 +15,6 @@ Library Properties DynamicLighting - DynamicLighting.editor v4.7.2 512 true @@ -60,9 +59,9 @@ DualityEditor False - + {AFE883F3-72B4-4C7C-A1D1-44EDC09C8F6E} - DynamicLighting.Core + DynamicLighting.Sample.Core False diff --git a/Samples/FlapOrDie/FlapOrDie.Sample.Core.csproj b/Samples/FlapOrDie/FlapOrDie.Sample.Core.csproj new file mode 100644 index 000000000..47752eaa1 --- /dev/null +++ b/Samples/FlapOrDie/FlapOrDie.Sample.Core.csproj @@ -0,0 +1,19 @@ + + + + + netstandard2.0 + true + 4.0.0-alpha + + + + + False + + + False + + + + diff --git a/Samples/FlapOrDie/FlapOrDie.core.xml b/Samples/FlapOrDie/FlapOrDie.core.xml deleted file mode 100644 index baf7a068c..000000000 --- a/Samples/FlapOrDie/FlapOrDie.core.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - FlapOrDie.core - - - - - Defines a Duality core plugin. - - - - diff --git a/Samples/FlapOrDie/FlapOrDie.csproj b/Samples/FlapOrDie/FlapOrDie.csproj deleted file mode 100644 index 287a06057..000000000 --- a/Samples/FlapOrDie/FlapOrDie.csproj +++ /dev/null @@ -1,75 +0,0 @@ - - - - - Program - $(SolutionDir)Build\Output\DualityEditor.exe - ..\ - - - Debug - AnyCPU - 8.0.30703 - 2.0 - {31ED388E-C8FD-4A77-A0DC-42CD5EB54E4C} - Library - Properties - FlapOrDie - FlapOrDie.core - 512 - ..\..\..\..\..\..\ - true - {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - Profile111 - v4.5 - - - true - full - false - Content\Plugins\ - DEBUG;TRACE - prompt - 4 - FlapOrDie.core.xml - 1591,1592,1573,1571,1570,1572 - false - 7.3 - - - pdbonly - true - Content\Plugins\ - TRACE - prompt - 4 - FlapOrDie.core.xml - 1591,1592,1573,1571,1570,1572 - false - 7.3 - - - - - - - - - - - - - - - {c87a6a2f-e537-48fa-a789-3c54cf29cc09} - DualityPrimitives - False - - - {D821AFB9-BCC9-4025-9A9C-798E2BC546AB} - Duality - False - - - - \ No newline at end of file diff --git a/Samples/FlapOrDie/Properties/AssemblyInfo.cs b/Samples/FlapOrDie/Properties/AssemblyInfo.cs deleted file mode 100644 index 226ceab0e..000000000 --- a/Samples/FlapOrDie/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,34 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// Allgemeine Informationen über eine Assembly werden über die folgenden -// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, -// die mit einer Assembly verknüpft sind. -[assembly: AssemblyTitle("FlapOrDie")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("")] -[assembly: AssemblyCopyright("")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Durch Festlegen von ComVisible auf "false" werden die Typen in dieser Assembly unsichtbar -// für COM-Komponenten. Wenn Sie auf einen Typ in dieser Assembly von -// COM zugreifen müssen, legen Sie das ComVisible-Attribut für diesen Typ auf "true" fest. -[assembly: ComVisible(false)] - -// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird -[assembly: Guid("00c8792c-39b8-4558-acf9-03013402301a")] - -// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: -// -// Hauptversion -// Nebenversion -// Buildnummer -// Revision -// -// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern -// übernehmen, indem Sie "*" eingeben: -[assembly: AssemblyVersion("4.0.0")] diff --git a/Samples/InputHandling/InputHandling.Sample.Core.csproj b/Samples/InputHandling/InputHandling.Sample.Core.csproj new file mode 100644 index 000000000..47752eaa1 --- /dev/null +++ b/Samples/InputHandling/InputHandling.Sample.Core.csproj @@ -0,0 +1,19 @@ + + + + + netstandard2.0 + true + 4.0.0-alpha + + + + + False + + + False + + + + diff --git a/Samples/InputHandling/InputHandling.csproj b/Samples/InputHandling/InputHandling.csproj deleted file mode 100644 index 0653c573d..000000000 --- a/Samples/InputHandling/InputHandling.csproj +++ /dev/null @@ -1,69 +0,0 @@ - - - - - Program - $(SolutionDir)Build\Output\DualityEditor.exe - ..\ - - - Debug - AnyCPU - 8.0.30703 - 2.0 - {9EF413B4-0416-45FF-9A8D-85CC21C4C15B} - Library - Properties - InputHandling - InputHandling.core - 512 - ..\..\..\..\..\..\ - true - {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - Profile111 - v4.5 - - - true - full - false - Content\Plugins\ - DEBUG;TRACE - prompt - 4 - InputHandling.core.xml - 1591,1592,1573,1571,1570,1572 - false - 7.3 - - - pdbonly - true - Content\Plugins\ - TRACE - prompt - 4 - InputHandling.core.xml - 1591,1592,1573,1571,1570,1572 - false - 7.3 - - - - - - - - - {c87a6a2f-e537-48fa-a789-3c54cf29cc09} - DualityPrimitives - False - - - {D821AFB9-BCC9-4025-9A9C-798E2BC546AB} - Duality - False - - - - \ No newline at end of file diff --git a/Samples/InputHandling/Properties/AssemblyInfo.cs b/Samples/InputHandling/Properties/AssemblyInfo.cs deleted file mode 100644 index 623d104d3..000000000 --- a/Samples/InputHandling/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,34 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// Allgemeine Informationen über eine Assembly werden über die folgenden -// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, -// die mit einer Assembly verknüpft sind. -[assembly: AssemblyTitle("InputHandling")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("")] -[assembly: AssemblyCopyright("")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Durch Festlegen von ComVisible auf "false" werden die Typen in dieser Assembly unsichtbar -// für COM-Komponenten. Wenn Sie auf einen Typ in dieser Assembly von -// COM zugreifen müssen, legen Sie das ComVisible-Attribut für diesen Typ auf "true" fest. -[assembly: ComVisible(false)] - -// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird -[assembly: Guid("00c8792c-39b8-4558-acf9-03013402301a")] - -// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: -// -// Hauptversion -// Nebenversion -// Buildnummer -// Revision -// -// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern -// übernehmen, indem Sie "*" eingeben: -[assembly: AssemblyVersion("4.0.0")] diff --git a/Samples/ParticleSystem/ParticleSystem.Sample.Core.csproj b/Samples/ParticleSystem/ParticleSystem.Sample.Core.csproj new file mode 100644 index 000000000..47752eaa1 --- /dev/null +++ b/Samples/ParticleSystem/ParticleSystem.Sample.Core.csproj @@ -0,0 +1,19 @@ + + + + + netstandard2.0 + true + 4.0.0-alpha + + + + + False + + + False + + + + diff --git a/Samples/ParticleSystem/ParticleSystem.csproj b/Samples/ParticleSystem/ParticleSystem.csproj deleted file mode 100644 index 9a5607960..000000000 --- a/Samples/ParticleSystem/ParticleSystem.csproj +++ /dev/null @@ -1,70 +0,0 @@ - - - - - Program - $(SolutionDir)Build\Output\DualityEditor.exe - ..\ - - - Debug - AnyCPU - 8.0.30703 - 2.0 - {025EAC49-A10B-4116-B26B-72EB36CE7944} - Library - Properties - ParticleSystem - ParticleSystem.core - ParticleSystem.core.xml - 512 - ..\..\..\..\..\..\ - true - {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - Profile111 - v4.5 - - - true - full - false - Content\Plugins\ - DEBUG;TRACE - prompt - 4 - 1591,1592,1573,1571,1570,1572 - false - 7.3 - - - pdbonly - true - Content\Plugins\ - TRACE - prompt - 4 - 1591,1592,1573,1571,1570,1572 - false - 7.3 - - - - - - - - - - - {c87a6a2f-e537-48fa-a789-3c54cf29cc09} - DualityPrimitives - False - - - {D821AFB9-BCC9-4025-9A9C-798E2BC546AB} - Duality - False - - - - \ No newline at end of file diff --git a/Samples/ParticleSystem/Properties/AssemblyInfo.cs b/Samples/ParticleSystem/Properties/AssemblyInfo.cs deleted file mode 100644 index 619f7001f..000000000 --- a/Samples/ParticleSystem/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,34 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// Allgemeine Informationen über eine Assembly werden über die folgenden -// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, -// die mit einer Assembly verknüpft sind. -[assembly: AssemblyTitle("ParticleSystem")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("")] -[assembly: AssemblyCopyright("")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Durch Festlegen von ComVisible auf "false" werden die Typen in dieser Assembly unsichtbar -// für COM-Komponenten. Wenn Sie auf einen Typ in dieser Assembly von -// COM zugreifen müssen, legen Sie das ComVisible-Attribut für diesen Typ auf "true" fest. -[assembly: ComVisible(false)] - -// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird -[assembly: Guid("00c8792c-39b8-4558-acf9-03013402301a")] - -// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: -// -// Hauptversion -// Nebenversion -// Buildnummer -// Revision -// -// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern -// übernehmen, indem Sie "*" eingeben: -[assembly: AssemblyVersion("4.0.0")] diff --git a/Samples/Physics/Physics.Sample.Core.csproj b/Samples/Physics/Physics.Sample.Core.csproj new file mode 100644 index 000000000..47752eaa1 --- /dev/null +++ b/Samples/Physics/Physics.Sample.Core.csproj @@ -0,0 +1,19 @@ + + + + + netstandard2.0 + true + 4.0.0-alpha + + + + + False + + + False + + + + diff --git a/Samples/Physics/Physics.Sample.csproj b/Samples/Physics/Physics.Sample.csproj deleted file mode 100644 index 52c209fb2..000000000 --- a/Samples/Physics/Physics.Sample.csproj +++ /dev/null @@ -1,78 +0,0 @@ - - - - - Program - $(SolutionDir)Build\Output\DualityEditor.exe - ..\ - - - Debug - AnyCPU - 8.0.30703 - 2.0 - {45B4CC01-CCDC-4835-8EDF-F0B706EA3DDF} - Library - Properties - Duality.Samples.Physics - Physics.Sample.core - 512 - ..\..\..\..\..\..\ - true - {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - Profile111 - v4.5 - - - true - full - false - Content\Plugins\ - DEBUG;TRACE - prompt - 4 - Physics.Sample.core.xml - 1591,1592,1573,1571,1570,1572 - false - 7.3 - - - pdbonly - true - Content\Plugins\ - TRACE - prompt - 4 - Physics.Sample.core.xml - 1591,1592,1573,1571,1570,1572 - false - 7.3 - - - - - - - - - - - - - - - - - - {c87a6a2f-e537-48fa-a789-3c54cf29cc09} - DualityPrimitives - False - - - {D821AFB9-BCC9-4025-9A9C-798E2BC546AB} - Duality - False - - - - \ No newline at end of file diff --git a/Samples/Physics/Properties/AssemblyInfo.cs b/Samples/Physics/Properties/AssemblyInfo.cs deleted file mode 100644 index 91b5fc4d7..000000000 --- a/Samples/Physics/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,34 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// Allgemeine Informationen über eine Assembly werden über die folgenden -// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, -// die mit einer Assembly verknüpft sind. -[assembly: AssemblyTitle("Physics.Sample")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("")] -[assembly: AssemblyCopyright("")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Durch Festlegen von ComVisible auf "false" werden die Typen in dieser Assembly unsichtbar -// für COM-Komponenten. Wenn Sie auf einen Typ in dieser Assembly von -// COM zugreifen müssen, legen Sie das ComVisible-Attribut für diesen Typ auf "true" fest. -[assembly: ComVisible(false)] - -// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird -[assembly: Guid("00c8792c-39b8-4558-acf9-03013402301a")] - -// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: -// -// Hauptversion -// Nebenversion -// Buildnummer -// Revision -// -// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern -// übernehmen, indem Sie "*" eingeben: -[assembly: AssemblyVersion("4.0.0")] diff --git a/Samples/SmoothAnimation/Properties/AssemblyInfo.cs b/Samples/SmoothAnimation/Properties/AssemblyInfo.cs deleted file mode 100644 index 5d03c6763..000000000 --- a/Samples/SmoothAnimation/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,34 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// Allgemeine Informationen über eine Assembly werden über die folgenden -// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, -// die mit einer Assembly verknüpft sind. -[assembly: AssemblyTitle("SmoothAnimation")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("")] -[assembly: AssemblyCopyright("")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Durch Festlegen von ComVisible auf "false" werden die Typen in dieser Assembly unsichtbar -// für COM-Komponenten. Wenn Sie auf einen Typ in dieser Assembly von -// COM zugreifen müssen, legen Sie das ComVisible-Attribut für diesen Typ auf "true" fest. -[assembly: ComVisible(false)] - -// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird -[assembly: Guid("00c8792c-39b8-4558-acf9-03013402301a")] - -// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: -// -// Hauptversion -// Nebenversion -// Buildnummer -// Revision -// -// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern -// übernehmen, indem Sie "*" eingeben: -[assembly: AssemblyVersion("4.0.0")] diff --git a/Samples/SmoothAnimation/SmoothAnimation.Sample.Core.csproj b/Samples/SmoothAnimation/SmoothAnimation.Sample.Core.csproj new file mode 100644 index 000000000..0dd351c64 --- /dev/null +++ b/Samples/SmoothAnimation/SmoothAnimation.Sample.Core.csproj @@ -0,0 +1,14 @@ + + + + netstandard2.0 + true + 4.0.0-alpha + + + + + False + + + \ No newline at end of file diff --git a/Samples/SmoothAnimation/SmoothAnimation.csproj b/Samples/SmoothAnimation/SmoothAnimation.csproj deleted file mode 100644 index ab0dcef96..000000000 --- a/Samples/SmoothAnimation/SmoothAnimation.csproj +++ /dev/null @@ -1,69 +0,0 @@ - - - - - Program - $(SolutionDir)Build\Output\DualityEditor.exe - ..\ - - - Debug - AnyCPU - 8.0.30703 - 2.0 - {D29F3890-96E1-491B-AFAC-AD82E70E4208} - Library - Properties - SmoothAnimation - SmoothAnimation.core - SmoothAnimation.core.xml - 512 - ..\..\..\..\..\..\ - true - {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - Profile111 - v4.5 - - - true - full - false - Content\Plugins\ - DEBUG;TRACE - prompt - 4 - 1591,1592,1573,1571,1570,1572 - false - 7.3 - - - pdbonly - true - Content\Plugins\ - TRACE - prompt - 4 - 1591,1592,1573,1571,1570,1572 - false - 7.3 - - - - - - - - - - {c87a6a2f-e537-48fa-a789-3c54cf29cc09} - DualityPrimitives - False - - - {D821AFB9-BCC9-4025-9A9C-798E2BC546AB} - Duality - False - - - - \ No newline at end of file diff --git a/Samples/Steering/Properties/AssemblyInfo.cs b/Samples/Steering/Properties/AssemblyInfo.cs deleted file mode 100644 index b7e861844..000000000 --- a/Samples/Steering/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,35 +0,0 @@ -using System.Reflection; -using System.Resources; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// Allgemeine Informationen über eine Assembly werden über die folgenden -// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, -// die mit einer Assembly verknüpft sind. -[assembly: AssemblyTitle("Steering")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("Steering")] -[assembly: AssemblyCopyright("")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Durch Festlegen von ComVisible auf "false" werden die Typen in dieser Assembly unsichtbar -// für COM-Komponenten. Wenn Sie auf einen Typ in dieser Assembly von -// COM zugreifen müssen, legen Sie das ComVisible-Attribut für diesen Typ auf "true" fest. -[assembly: ComVisible(false)] - -// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird -[assembly: Guid("00c8792c-39b8-4558-acf9-03013402301a")] - -// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: -// -// Hauptversion -// Nebenversion -// Buildnummer -// Revision -// -// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern -// übernehmen, indem Sie "*" eingeben: -[assembly: AssemblyVersion("4.0.0")] diff --git a/Samples/Steering/Steering.Sample.Core.csproj b/Samples/Steering/Steering.Sample.Core.csproj new file mode 100644 index 000000000..bc4b5be40 --- /dev/null +++ b/Samples/Steering/Steering.Sample.Core.csproj @@ -0,0 +1,23 @@ + + + + + netstandard2.0 + true + 4.0.0-alpha + + + + + False + + + False + + + + + + + + diff --git a/Samples/Steering/Steering.csproj b/Samples/Steering/Steering.csproj deleted file mode 100644 index 6dfd43e28..000000000 --- a/Samples/Steering/Steering.csproj +++ /dev/null @@ -1,84 +0,0 @@ - - - - - Program - $(SolutionDir)Build\Output\DualityEditor.exe - ..\ - - - Debug - AnyCPU - 8.0.30703 - 2.0 - {0130132B-C38D-463E-90AC-5D389E934FAE} - Library - Properties - Steering - Steering.core - 512 - ..\..\ - true - {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - Profile111 - v4.5 - - - true - full - false - Content\Plugins\ - DEBUG;TRACE - prompt - 4 - Steering.core.xml - 1591,1592,1573,1571,1570,1572 - false - 7.3 - - - pdbonly - true - Content\Plugins\ - TRACE - prompt - 4 - Steering.core.xml - 1591,1592,1573,1571,1570,1572 - false - 7.3 - - - - - - - - - - - - - - - - - - - - - {c87a6a2f-e537-48fa-a789-3c54cf29cc09} - DualityPrimitives - False - - - {D821AFB9-BCC9-4025-9A9C-798E2BC546AB} - Duality - False - - - - - - - \ No newline at end of file diff --git a/Samples/Tilemaps/Properties/AssemblyInfo.cs b/Samples/Tilemaps/Properties/AssemblyInfo.cs deleted file mode 100644 index 3b80e64c3..000000000 --- a/Samples/Tilemaps/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,34 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// Allgemeine Informationen über eine Assembly werden über die folgenden -// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, -// die mit einer Assembly verknüpft sind. -[assembly: AssemblyTitle("Tilemaps.Sample")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("")] -[assembly: AssemblyCopyright("")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Durch Festlegen von ComVisible auf "false" werden die Typen in dieser Assembly unsichtbar -// für COM-Komponenten. Wenn Sie auf einen Typ in dieser Assembly von -// COM zugreifen müssen, legen Sie das ComVisible-Attribut für diesen Typ auf "true" fest. -[assembly: ComVisible(false)] - -// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird -[assembly: Guid("00c8792c-39b8-4558-acf9-03013402301a")] - -// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: -// -// Hauptversion -// Nebenversion -// Buildnummer -// Revision -// -// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern -// übernehmen, indem Sie "*" eingeben: -[assembly: AssemblyVersion("4.0.0")] diff --git a/Samples/Tilemaps/Tilemaps.Sample.Core.csproj b/Samples/Tilemaps/Tilemaps.Sample.Core.csproj new file mode 100644 index 000000000..0ae25324a --- /dev/null +++ b/Samples/Tilemaps/Tilemaps.Sample.Core.csproj @@ -0,0 +1,22 @@ + + + + + netstandard2.0 + true + 4.0.0-alpha + + + + + False + + + False + + + False + + + + diff --git a/Samples/Tilemaps/Tilemaps.Sample.csproj b/Samples/Tilemaps/Tilemaps.Sample.csproj deleted file mode 100644 index a79ac7a9b..000000000 --- a/Samples/Tilemaps/Tilemaps.Sample.csproj +++ /dev/null @@ -1,83 +0,0 @@ - - - - - Program - $(SolutionDir)Build\Output\DualityEditor.exe - ..\ - - - Debug - AnyCPU - 8.0.30703 - 2.0 - {D014227E-3E69-4C8B-984A-1519AA35C1AD} - Library - Properties - Duality.Samples.Tilemaps - Tilemaps.Sample.core - 512 - ..\..\..\..\..\..\ - true - {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - Profile111 - v4.5 - - - true - full - false - Content\Plugins\ - DEBUG;TRACE - prompt - 4 - Tilemaps.Sample.core.xml - 1591,1592,1573,1571,1570,1572 - false - 7.3 - - - pdbonly - true - Content\Plugins\ - TRACE - prompt - 4 - Tilemaps.Sample.core.xml - 1591,1592,1573,1571,1570,1572 - false - 7.3 - - - - - - - - - - - - - - - - - - {c87a6a2f-e537-48fa-a789-3c54cf29cc09} - DualityPrimitives - False - - - {D821AFB9-BCC9-4025-9A9C-798E2BC546AB} - Duality - False - - - {2f7d1f9d-0803-4e13-85a6-0af56ac05431} - Tilemaps.Core - False - - - - \ No newline at end of file diff --git a/Source/Core/Duality/Duality.csproj b/Source/Core/Duality/Duality.csproj index 1c18b32fd..aba020b50 100644 --- a/Source/Core/Duality/Duality.csproj +++ b/Source/Core/Duality/Duality.csproj @@ -1,484 +1,92 @@  - - - Debug - AnyCPU - 8.0.30703 - 2.0 - {D821AFB9-BCC9-4025-9A9C-798E2BC546AB} - Library - Properties - Duality - Duality - 512 - ..\ - true - {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - Profile111 - v4.5 - bin\$(Configuration)\ - $(AssemblyName).xml - - - true - DEBUG - 1591,1592,1573,1571,1570,1572,0419 - AnyCPU - full - false - false - 7.3 - - - TRACE - false - true - 1591,1592,1573,1571,1570,1572 - AnyCPU - pdbonly - true - false - 7.3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {5ca66347-c3da-47da-b07b-e2b89e6e712a} - DualityPhysics - - - {c87a6a2f-e537-48fa-a789-3c54cf29cc09} - DualityPrimitives - - - - - 0.7.6 - - - - - - - - - - - \ No newline at end of file + + + netstandard2.0 + true + 4.0.0-alpha + Copyright © Fedja Adam 2012 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Source/Core/Duality/Properties/AssemblyInfo.cs b/Source/Core/Duality/Properties/AssemblyInfo.cs index 953d2a109..e9367d02b 100644 --- a/Source/Core/Duality/Properties/AssemblyInfo.cs +++ b/Source/Core/Duality/Properties/AssemblyInfo.cs @@ -1,35 +1,4 @@ -using System.Reflection; -using System.Resources; using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; -// Allgemeine Informationen über eine Assembly werden über die folgenden -// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, -// die mit einer Assembly verknüpft sind. -[assembly: AssemblyTitle("Duality")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("Duality")] -[assembly: AssemblyCopyright("Copyright © Fedja Adam 2012")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Durch Festlegen von ComVisible auf "false" werden die Typen in dieser Assembly unsichtbar -// für COM-Komponenten. Wenn Sie auf einen Typ in dieser Assembly von -// COM zugreifen müssen, legen Sie das ComVisible-Attribut für diesen Typ auf "true" fest. -[assembly: ComVisible(false)] - -// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird -[assembly: Guid("eeb82a87-3294-4f80-bda7-b3d7737fbf18")] - -// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: -// -// Hauptversion -// Nebenversion -// Buildnummer -// Revision -// -[assembly: AssemblyVersion("4.0.0")] [assembly: InternalsVisibleTo("DualityEditor")] [assembly: InternalsVisibleTo("DualityTests")] diff --git a/Source/Core/Physics/DualityPhysics.csproj b/Source/Core/Physics/DualityPhysics.csproj index 0e82237a3..0a0cdde75 100644 --- a/Source/Core/Physics/DualityPhysics.csproj +++ b/Source/Core/Physics/DualityPhysics.csproj @@ -1,156 +1,14 @@  - - - - 10.0 - Debug - AnyCPU - {5CA66347-C3DA-47DA-B07B-E2B89E6E712A} - Library - Properties - Duality - DualityPhysics - en-US - 512 - {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - Profile111 - v4.5 - - - true - full - false - $(SolutionDir)Build\Output\ - DEBUG;TRACE - prompt - 4 - DualityPhysics.xml - 1574,1591 - 7.3 - - - pdbonly - true - $(SolutionDir)Build\Output\ - TRACE - prompt - 4 - bin\Release\DualityPhysics.xml - 1574,1591 - 7.3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {c87a6a2f-e537-48fa-a789-3c54cf29cc09} - DualityPrimitives - - - - + + + netstandard2.0 + true + 4.0.0-alpha + Copyright © Fedja Adam 2018 + en + + + + + \ No newline at end of file diff --git a/Source/Core/Physics/Properties/AssemblyInfo.cs b/Source/Core/Physics/Properties/AssemblyInfo.cs deleted file mode 100644 index 46df87e64..000000000 --- a/Source/Core/Physics/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,26 +0,0 @@ -using System.Reflection; -using System.Resources; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("DualityPhysics")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("DualityPhysics")] -[assembly: AssemblyCopyright("Copyright © Fedja Adam 2018")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] -[assembly: NeutralResourcesLanguage("en")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// - -[assembly: AssemblyVersion("4.0.0")] diff --git a/Source/Core/Primitives/DualityPrimitives.csproj b/Source/Core/Primitives/DualityPrimitives.csproj index 5e352c2f2..8352bb6ba 100644 --- a/Source/Core/Primitives/DualityPrimitives.csproj +++ b/Source/Core/Primitives/DualityPrimitives.csproj @@ -1,66 +1,16 @@  - - - - 10.0 - Debug - AnyCPU - {C87A6A2F-E537-48FA-A789-3C54CF29CC09} - Library - Properties - Duality - DualityPrimitives - en-US - 512 - {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - Profile111 - v4.5 - bin\$(Configuration)\ - $(AssemblyName).xml - - - true - full - false - DEBUG;TRACE - prompt - 4 - 1574,1591 - 7.3 - - - pdbonly - true - TRACE - prompt - 4 - 1574,1591 - 4 - - - - - - - - - - - - - - - - - - - - - - + + + netstandard2.0 + true + 4.0.0-alpha + Copyright © Fedja Adam 2015 + en + + - \ No newline at end of file + diff --git a/Source/Core/Primitives/Properties/AssemblyInfo.cs b/Source/Core/Primitives/Properties/AssemblyInfo.cs deleted file mode 100644 index ae49d1625..000000000 --- a/Source/Core/Primitives/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,28 +0,0 @@ -using System.Resources; -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("DualityPrimitives")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("DualityPrimitives")] -[assembly: AssemblyCopyright("Copyright © Fedja Adam 2015")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] -[assembly: NeutralResourcesLanguage("en")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -[assembly: AssemblyVersion("4.0.0")] diff --git a/Source/Plugins/Compatibility/Compatibility.Core.csproj b/Source/Plugins/Compatibility/Compatibility.Core.csproj index bca7bd0dc..99e2714c0 100644 --- a/Source/Plugins/Compatibility/Compatibility.Core.csproj +++ b/Source/Plugins/Compatibility/Compatibility.Core.csproj @@ -1,65 +1,21 @@  - - - Debug - AnyCPU - 8.0.30703 - 2.0 - {FDA21F0F-1646-4E41-A1FC-1C3F05694CE4} - Library - Properties - Duality.Plugins.Compatibility - Compatibility.core - 512 - true - {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - Profile111 - v4.5 - bin\$(Configuration)\ - - - true - full - false - DEBUG;TRACE - prompt - 4 - 1591,1592,1573,1571,1570,1572 - false - 7.3 - - - pdbonly - true - TRACE - prompt - 4 - 1591,1592,1573,1571,1570,1572 - false - 7.3 - - - - - - - - - - - {c87a6a2f-e537-48fa-a789-3c54cf29cc09} - DualityPrimitives - False - - - {D821AFB9-BCC9-4025-9A9C-798E2BC546AB} - Duality - False - - - + + + netstandard2.0 + true + 4.0.0-alpha + Copyright © 2013 + + + + False + + + False + + - \ No newline at end of file + diff --git a/Source/Plugins/Compatibility/Properties/AssemblyInfo.cs b/Source/Plugins/Compatibility/Properties/AssemblyInfo.cs deleted file mode 100644 index 4554acd0f..000000000 --- a/Source/Plugins/Compatibility/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,34 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// Allgemeine Informationen über eine Assembly werden über die folgenden -// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, -// die mit einer Assembly verknüpft sind. -[assembly: AssemblyTitle("ResourceVersionCompatibility")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("ResourceVersionCompatibility")] -[assembly: AssemblyCopyright("Copyright © 2013")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Durch Festlegen von ComVisible auf "false" werden die Typen in dieser Assembly unsichtbar -// für COM-Komponenten. Wenn Sie auf einen Typ in dieser Assembly von -// COM zugreifen müssen, legen Sie das ComVisible-Attribut für diesen Typ auf "true" fest. -[assembly: ComVisible(false)] - -// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird -[assembly: Guid("4b3d2db3-cfd5-40c4-972d-2141cedd710e")] - -// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: -// -// Hauptversion -// Nebenversion -// Buildnummer -// Revision -// -// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern -// übernehmen, indem Sie "*" eingeben: -[assembly: AssemblyVersion("4.0.0")] diff --git a/Source/Plugins/Tilemaps/Core/Properties/AssemblyInfo.cs b/Source/Plugins/Tilemaps/Core/Properties/AssemblyInfo.cs deleted file mode 100644 index d20ec6bda..000000000 --- a/Source/Plugins/Tilemaps/Core/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,34 +0,0 @@ -using System.Reflection; -using System.Resources; -using System.Runtime.InteropServices; - -// Allgemeine Informationen über eine Assembly werden über die folgenden -// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, -// die mit einer Assembly verknüpft sind. -[assembly: AssemblyTitle("Tilemaps")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("Tilemaps")] -[assembly: AssemblyCopyright("Copyright © Fedja Adam 2015")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Durch Festlegen von ComVisible auf "false" werden die Typen in dieser Assembly unsichtbar -// für COM-Komponenten. Wenn Sie auf einen Typ in dieser Assembly von -// COM zugreifen müssen, legen Sie das ComVisible-Attribut für diesen Typ auf "true" fest. -[assembly: ComVisible(false)] - -// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird -[assembly: Guid("00c8792c-39b8-4558-acf9-03013402301a")] - -// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: -// -// Hauptversion -// Nebenversion -// Buildnummer -// Revision -// -// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern -// übernehmen, indem Sie "*" eingeben: -[assembly: AssemblyVersion("4.0.0")] diff --git a/Source/Plugins/Tilemaps/Core/Tilemaps.Core.csproj b/Source/Plugins/Tilemaps/Core/Tilemaps.Core.csproj index 480ebc5c0..1f37de523 100644 --- a/Source/Plugins/Tilemaps/Core/Tilemaps.Core.csproj +++ b/Source/Plugins/Tilemaps/Core/Tilemaps.Core.csproj @@ -1,106 +1,34 @@  - - - Debug - AnyCPU - 8.0.30703 - 2.0 - {2F7D1F9D-0803-4E13-85A6-0AF56AC05431} - Library - Properties - Duality.Plugins.Tilemaps - Tilemaps.core - 512 - true - {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - Profile111 - v4.5 - bin\$(Configuration)\ - $(AssemblyName).xml - - - true - full - false - DEBUG;TRACE - prompt - 4 - 1591,1592,1573,1571,1570,1572 - false - 7.3 - - - pdbonly - true - TRACE - prompt - 4 - 1591,1592,1573,1571,1570,1572 - false - 7.3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - {c87a6a2f-e537-48fa-a789-3c54cf29cc09} - DualityPrimitives - False - - - {D821AFB9-BCC9-4025-9A9C-798E2BC546AB} - Duality - False - - - - - - - - - - - - - - - + + + netstandard2.0 + true + 4.0.0-alpha + Copyright © Fedja Adam 2015 + + + + False + + + False + + + + + + + + + + + + + + - \ No newline at end of file +