diff --git a/Bindings/Portable/ApplicationOptions.cs b/Bindings/Portable/ApplicationOptions.cs index dd561ee0..950fbea0 100644 --- a/Bindings/Portable/ApplicationOptions.cs +++ b/Bindings/Portable/ApplicationOptions.cs @@ -27,7 +27,7 @@ namespace Urho LastUsedOptions = this; } - public ApplicationOptions() {} + public ApplicationOptions() : this(null) {} /// /// Desktop only diff --git a/MakeWindowsAll.bat b/MakeWindowsAll.bat new file mode 100644 index 00000000..d651fb2a --- /dev/null +++ b/MakeWindowsAll.bat @@ -0,0 +1,8 @@ +set "CONFIG=%~1" + +if NOT "%CONFIG%" == "Debug" (set "CONFIG=Release") + +call MakeWindows.bat x64 %CONFIG% 2017 OpenGL +call MakeWindows.bat x86 %CONFIG% 2017 OpenGL +call MakeWindows.bat x64 %CONFIG% 2017 DirectX +call MakeWindows.bat x86 %CONFIG% 2017 DirectX diff --git a/Tests/Playgrounds/Playgrounds.Console/EarthDemo.cs b/Tests/Playgrounds/Playgrounds.Console/EarthDemo.cs index 78d85896..d34e0c3f 100644 --- a/Tests/Playgrounds/Playgrounds.Console/EarthDemo.cs +++ b/Tests/Playgrounds/Playgrounds.Console/EarthDemo.cs @@ -17,9 +17,10 @@ namespace Playgrounds.Console public static void RunApp() { var app = new EarthDemo( - new ApplicationOptions(@"..\..\..\..\..\Samples\HoloLens\02_HelloWorldAdvanced\Data") { + new ApplicationOptions(@"..\..\Samples\HoloLens\02_HelloWorldAdvanced\Data") { Width = 960, - Height = 720 + Height = 720, + UseDirectX11 = false }); app.Run(); } diff --git a/Tests/Playgrounds/Playgrounds.Console/Playgrounds.Console.csproj b/Tests/Playgrounds/Playgrounds.Console/Playgrounds.Console.csproj index d93642e0..cdae874c 100644 --- a/Tests/Playgrounds/Playgrounds.Console/Playgrounds.Console.csproj +++ b/Tests/Playgrounds/Playgrounds.Console/Playgrounds.Console.csproj @@ -17,7 +17,7 @@ true full false - bin\Debug\ + ..\..\..\Bin\Desktop\ DEBUG;TRACE prompt 4 @@ -27,7 +27,7 @@ AnyCPU pdbonly true - bin\Release\ + ..\..\..\Bin\Desktop\ TRACE prompt 4 @@ -76,18 +76,6 @@ - - - mono-urho-d3d.dll - Always - - - - - mono-urho.dll - Always - -