diff --git a/OpenConsole.sln b/OpenConsole.sln index d1f99131d..ea6017c86 100644 --- a/OpenConsole.sln +++ b/OpenConsole.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.29001.49 diff --git a/Scratch.sln b/Scratch.sln index ac6caf341..d14a85a64 100644 --- a/Scratch.sln +++ b/Scratch.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.31205.134 diff --git a/build/Helix/EnsureMachineState.ps1 b/build/Helix/EnsureMachineState.ps1 index 2505edeb0..6f26da63a 100644 --- a/build/Helix/EnsureMachineState.ps1 +++ b/build/Helix/EnsureMachineState.ps1 @@ -1,4 +1,4 @@ -$scriptDirectory = $script:MyInvocation.MyCommand.Path | Split-Path -Parent +$scriptDirectory = $script:MyInvocation.MyCommand.Path | Split-Path -Parent # List all processes to aid debugging: Write-Host "All processes running:" diff --git a/build/Helix/HelixTestHelpers.cs b/build/Helix/HelixTestHelpers.cs index 43ba71c7a..d691026a4 100644 --- a/build/Helix/HelixTestHelpers.cs +++ b/build/Helix/HelixTestHelpers.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.IO; using System.Linq; diff --git a/samples/ConPTY/EchoCon/EchoCon.sln b/samples/ConPTY/EchoCon/EchoCon.sln index d19812888..938a87952 100644 --- a/samples/ConPTY/EchoCon/EchoCon.sln +++ b/samples/ConPTY/EchoCon/EchoCon.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 15 VisualStudioVersion = 15.0.27703.2026 diff --git a/samples/ConPTY/EchoCon/EchoCon/EchoCon.vcxproj.filters b/samples/ConPTY/EchoCon/EchoCon/EchoCon.vcxproj.filters index 69e0ecfed..625fad5e6 100644 --- a/samples/ConPTY/EchoCon/EchoCon/EchoCon.vcxproj.filters +++ b/samples/ConPTY/EchoCon/EchoCon/EchoCon.vcxproj.filters @@ -1,4 +1,4 @@ - + diff --git a/samples/ConPTY/GUIConsole/GUIConsole.ConPTY/GUIConsole.ConPTY.csproj b/samples/ConPTY/GUIConsole/GUIConsole.ConPTY/GUIConsole.ConPTY.csproj index dbdcea46b..9f5c4f4ab 100644 --- a/samples/ConPTY/GUIConsole/GUIConsole.ConPTY/GUIConsole.ConPTY.csproj +++ b/samples/ConPTY/GUIConsole/GUIConsole.ConPTY/GUIConsole.ConPTY.csproj @@ -1,4 +1,4 @@ - + netstandard2.0 diff --git a/samples/ConPTY/GUIConsole/GUIConsole.ConPTY/Native/ConsoleApi.cs b/samples/ConPTY/GUIConsole/GUIConsole.ConPTY/Native/ConsoleApi.cs index 8c0c153a4..39863d094 100644 --- a/samples/ConPTY/GUIConsole/GUIConsole.ConPTY/Native/ConsoleApi.cs +++ b/samples/ConPTY/GUIConsole/GUIConsole.ConPTY/Native/ConsoleApi.cs @@ -1,4 +1,4 @@ -using System.Runtime.InteropServices; +using System.Runtime.InteropServices; namespace GUIConsole.ConPTY.Native { diff --git a/samples/ConPTY/GUIConsole/GUIConsole.ConPTY/Native/ProcessApi.cs b/samples/ConPTY/GUIConsole/GUIConsole.ConPTY/Native/ProcessApi.cs index c0e0d016d..124d38741 100644 --- a/samples/ConPTY/GUIConsole/GUIConsole.ConPTY/Native/ProcessApi.cs +++ b/samples/ConPTY/GUIConsole/GUIConsole.ConPTY/Native/ProcessApi.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Runtime.InteropServices; namespace GUIConsole.ConPTY.Native diff --git a/samples/ConPTY/GUIConsole/GUIConsole.ConPTY/Native/PseudoConsoleApi.cs b/samples/ConPTY/GUIConsole/GUIConsole.ConPTY/Native/PseudoConsoleApi.cs index f0c08f599..0bf349221 100644 --- a/samples/ConPTY/GUIConsole/GUIConsole.ConPTY/Native/PseudoConsoleApi.cs +++ b/samples/ConPTY/GUIConsole/GUIConsole.ConPTY/Native/PseudoConsoleApi.cs @@ -1,4 +1,4 @@ -using Microsoft.Win32.SafeHandles; +using Microsoft.Win32.SafeHandles; using System; using System.Runtime.InteropServices; diff --git a/samples/ConPTY/GUIConsole/GUIConsole.ConPTY/Processes/Process.cs b/samples/ConPTY/GUIConsole/GUIConsole.ConPTY/Processes/Process.cs index 14bfb0313..babfb14d4 100644 --- a/samples/ConPTY/GUIConsole/GUIConsole.ConPTY/Processes/Process.cs +++ b/samples/ConPTY/GUIConsole/GUIConsole.ConPTY/Processes/Process.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Runtime.InteropServices; using static GUIConsole.ConPTY.Native.ProcessApi; diff --git a/samples/ConPTY/GUIConsole/GUIConsole.ConPTY/Processes/ProcessFactory.cs b/samples/ConPTY/GUIConsole/GUIConsole.ConPTY/Processes/ProcessFactory.cs index 06e99e9d9..5d531f798 100644 --- a/samples/ConPTY/GUIConsole/GUIConsole.ConPTY/Processes/ProcessFactory.cs +++ b/samples/ConPTY/GUIConsole/GUIConsole.ConPTY/Processes/ProcessFactory.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.ComponentModel; using System.Runtime.InteropServices; using static GUIConsole.ConPTY.Native.ProcessApi; diff --git a/samples/ConPTY/GUIConsole/GUIConsole.ConPTY/PseudoConsole.cs b/samples/ConPTY/GUIConsole/GUIConsole.ConPTY/PseudoConsole.cs index eaabb07f0..80886b1a8 100644 --- a/samples/ConPTY/GUIConsole/GUIConsole.ConPTY/PseudoConsole.cs +++ b/samples/ConPTY/GUIConsole/GUIConsole.ConPTY/PseudoConsole.cs @@ -1,4 +1,4 @@ -using Microsoft.Win32.SafeHandles; +using Microsoft.Win32.SafeHandles; using System; using System.ComponentModel; using static GUIConsole.ConPTY.Native.PseudoConsoleApi; diff --git a/samples/ConPTY/GUIConsole/GUIConsole.ConPTY/PseudoConsolePipe.cs b/samples/ConPTY/GUIConsole/GUIConsole.ConPTY/PseudoConsolePipe.cs index 5716e24c4..b4adbb48b 100644 --- a/samples/ConPTY/GUIConsole/GUIConsole.ConPTY/PseudoConsolePipe.cs +++ b/samples/ConPTY/GUIConsole/GUIConsole.ConPTY/PseudoConsolePipe.cs @@ -1,4 +1,4 @@ -using Microsoft.Win32.SafeHandles; +using Microsoft.Win32.SafeHandles; using System; using System.ComponentModel; using System.Runtime.InteropServices; diff --git a/samples/ConPTY/GUIConsole/GUIConsole.ConPTY/Terminal.cs b/samples/ConPTY/GUIConsole/GUIConsole.ConPTY/Terminal.cs index dc01dc66b..c307dfb1f 100644 --- a/samples/ConPTY/GUIConsole/GUIConsole.ConPTY/Terminal.cs +++ b/samples/ConPTY/GUIConsole/GUIConsole.ConPTY/Terminal.cs @@ -1,4 +1,4 @@ -using GUIConsole.ConPTY.Processes; +using GUIConsole.ConPTY.Processes; using Microsoft.Win32.SafeHandles; using System; using System.IO; diff --git a/samples/ConPTY/GUIConsole/GUIConsole.WPF/App.xaml.cs b/samples/ConPTY/GUIConsole/GUIConsole.WPF/App.xaml.cs index be938d6d4..49a2a5ebf 100644 --- a/samples/ConPTY/GUIConsole/GUIConsole.WPF/App.xaml.cs +++ b/samples/ConPTY/GUIConsole/GUIConsole.WPF/App.xaml.cs @@ -1,4 +1,4 @@ -using System.Windows; +using System.Windows; namespace GUIConsole.Wpf { diff --git a/samples/ConPTY/GUIConsole/GUIConsole.WPF/GUIConsole.WPF.csproj b/samples/ConPTY/GUIConsole/GUIConsole.WPF/GUIConsole.WPF.csproj index f561ba6fb..77ce7fa2f 100644 --- a/samples/ConPTY/GUIConsole/GUIConsole.WPF/GUIConsole.WPF.csproj +++ b/samples/ConPTY/GUIConsole/GUIConsole.WPF/GUIConsole.WPF.csproj @@ -1,4 +1,4 @@ - + diff --git a/samples/ConPTY/GUIConsole/GUIConsole.WPF/MainWindow.xaml.cs b/samples/ConPTY/GUIConsole/GUIConsole.WPF/MainWindow.xaml.cs index 2cfdf88f5..e6a3067a0 100644 --- a/samples/ConPTY/GUIConsole/GUIConsole.WPF/MainWindow.xaml.cs +++ b/samples/ConPTY/GUIConsole/GUIConsole.WPF/MainWindow.xaml.cs @@ -1,4 +1,4 @@ -using GUIConsole.ConPTY; +using GUIConsole.ConPTY; using System; using System.IO; using System.Linq; diff --git a/samples/ConPTY/GUIConsole/GUIConsole.WPF/Properties/AssemblyInfo.cs b/samples/ConPTY/GUIConsole/GUIConsole.WPF/Properties/AssemblyInfo.cs index f750f0af3..2398d1b90 100644 --- a/samples/ConPTY/GUIConsole/GUIConsole.WPF/Properties/AssemblyInfo.cs +++ b/samples/ConPTY/GUIConsole/GUIConsole.WPF/Properties/AssemblyInfo.cs @@ -1,4 +1,4 @@ -using System.Reflection; +using System.Reflection; using System.Resources; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; diff --git a/samples/ConPTY/GUIConsole/GUIConsole.WPF/Properties/Resources.Designer.cs b/samples/ConPTY/GUIConsole/GUIConsole.WPF/Properties/Resources.Designer.cs index b5f7cb0d6..41ccd8f09 100644 --- a/samples/ConPTY/GUIConsole/GUIConsole.WPF/Properties/Resources.Designer.cs +++ b/samples/ConPTY/GUIConsole/GUIConsole.WPF/Properties/Resources.Designer.cs @@ -1,4 +1,4 @@ -//------------------------------------------------------------------------------ +//------------------------------------------------------------------------------ // // This code was generated by a tool. // Runtime Version:4.0.30319.42000 diff --git a/samples/ConPTY/GUIConsole/GUIConsole.WPF/Properties/Resources.resx b/samples/ConPTY/GUIConsole/GUIConsole.WPF/Properties/Resources.resx index 71f71657b..fec25bb18 100644 --- a/samples/ConPTY/GUIConsole/GUIConsole.WPF/Properties/Resources.resx +++ b/samples/ConPTY/GUIConsole/GUIConsole.WPF/Properties/Resources.resx @@ -1,4 +1,4 @@ - + UTF-16 conversions, related to PR #4093 // NOTE The functions u8u16 and u16u8 contain own algorithms. Tests have shown that they perform // worse than the platform API functions. diff --git a/src/tools/U8U16Test/U8U16Test.hpp b/src/tools/U8U16Test/U8U16Test.hpp index b1f4537b5..c8e234ca2 100644 --- a/src/tools/U8U16Test/U8U16Test.hpp +++ b/src/tools/U8U16Test/U8U16Test.hpp @@ -1,4 +1,4 @@ -// TEST TOOL U8U16Test +// TEST TOOL U8U16Test // Performance tests for UTF-8 <--> UTF-16 conversions, related to PR #4093 // NOTE The functions u8u16 and u16u8 contain own algorithms. Tests have shown that they perform // worse than the platform API functions. diff --git a/src/tools/U8U16Test/U8U16Test.vcxproj.filters b/src/tools/U8U16Test/U8U16Test.vcxproj.filters index 7d7e0757b..eb083eeb2 100644 --- a/src/tools/U8U16Test/U8U16Test.vcxproj.filters +++ b/src/tools/U8U16Test/U8U16Test.vcxproj.filters @@ -1,4 +1,4 @@ - + diff --git a/src/tools/U8U16Test/main.cpp b/src/tools/U8U16Test/main.cpp index fd4cb8fd0..75dbfa964 100644 --- a/src/tools/U8U16Test/main.cpp +++ b/src/tools/U8U16Test/main.cpp @@ -1,4 +1,4 @@ -// TEST TOOL U8U16Test +// TEST TOOL U8U16Test // Performance tests for UTF-8 <--> UTF-16 conversions, related to PR #4093 // NOTE The functions u8u16 and u16u8 contain own algorithms. Tests have shown that they perform // worse than the platform API functions. diff --git a/src/tools/buffersize/buffersize.vcxproj b/src/tools/buffersize/buffersize.vcxproj index 3c6093ca4..c599bdf8e 100644 --- a/src/tools/buffersize/buffersize.vcxproj +++ b/src/tools/buffersize/buffersize.vcxproj @@ -1,4 +1,4 @@ - + {ED82003F-FC5D-4E94-8B47-F480018ED064} diff --git a/src/tools/buffersize/buffersize.vcxproj.filters b/src/tools/buffersize/buffersize.vcxproj.filters index 87852d306..ef2028e27 100644 --- a/src/tools/buffersize/buffersize.vcxproj.filters +++ b/src/tools/buffersize/buffersize.vcxproj.filters @@ -1,4 +1,4 @@ - + diff --git a/src/tools/closetest/CloseTest.vcxproj b/src/tools/closetest/CloseTest.vcxproj index 33e767218..6e39b9f44 100644 --- a/src/tools/closetest/CloseTest.vcxproj +++ b/src/tools/closetest/CloseTest.vcxproj @@ -1,4 +1,4 @@ - + {C7A6A5D9-60BE-4AEB-A5F6-AFE352F86CBB} diff --git a/src/tools/closetest/CloseTest.vcxproj.filters b/src/tools/closetest/CloseTest.vcxproj.filters index b1657ef6d..44fa483d1 100644 --- a/src/tools/closetest/CloseTest.vcxproj.filters +++ b/src/tools/closetest/CloseTest.vcxproj.filters @@ -1,4 +1,4 @@ - + diff --git a/src/tools/fontlist/FontList.vcxproj b/src/tools/fontlist/FontList.vcxproj index 9c0098d42..e3974b647 100644 --- a/src/tools/fontlist/FontList.vcxproj +++ b/src/tools/fontlist/FontList.vcxproj @@ -1,4 +1,4 @@ - + {919544AC-D39B-463F-8414-3C3C67CF727C} diff --git a/src/tools/fontlist/FontList.vcxproj.filters b/src/tools/fontlist/FontList.vcxproj.filters index 87852d306..ef2028e27 100644 --- a/src/tools/fontlist/FontList.vcxproj.filters +++ b/src/tools/fontlist/FontList.vcxproj.filters @@ -1,4 +1,4 @@ - + diff --git a/src/tools/vtapp/Program.cs b/src/tools/vtapp/Program.cs index 6b2017c00..85f38b008 100644 --- a/src/tools/vtapp/Program.cs +++ b/src/tools/vtapp/Program.cs @@ -1,4 +1,4 @@ -// Copyright (c) Microsoft Corporation. +// Copyright (c) Microsoft Corporation. // Licensed under the MIT license. using System; diff --git a/src/tools/vtapp/Program2.cs b/src/tools/vtapp/Program2.cs index 22060f292..bab6d272a 100644 --- a/src/tools/vtapp/Program2.cs +++ b/src/tools/vtapp/Program2.cs @@ -1,4 +1,4 @@ -// Copyright (c) Microsoft Corporation. +// Copyright (c) Microsoft Corporation. // Licensed under the MIT license. using System; diff --git a/src/tools/vtapp/Properties/AssemblyInfo.cs b/src/tools/vtapp/Properties/AssemblyInfo.cs index 7a13539b7..fb2519ece 100644 --- a/src/tools/vtapp/Properties/AssemblyInfo.cs +++ b/src/tools/vtapp/Properties/AssemblyInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Microsoft Corporation. +// Copyright (c) Microsoft Corporation. // Licensed under the MIT license. using System.Reflection; diff --git a/src/tools/vtapp/Properties/AssemblyInfoVsSpecific.cs b/src/tools/vtapp/Properties/AssemblyInfoVsSpecific.cs index 921b6e920..4d7a25e1e 100644 --- a/src/tools/vtapp/Properties/AssemblyInfoVsSpecific.cs +++ b/src/tools/vtapp/Properties/AssemblyInfoVsSpecific.cs @@ -1,4 +1,4 @@ -// Copyright (c) Microsoft Corporation. +// Copyright (c) Microsoft Corporation. // Licensed under the MIT license. // These can only be defined when building in Visual Studio. The Windows build system defines these for us. diff --git a/src/tools/vtapp/VTApp.csproj b/src/tools/vtapp/VTApp.csproj index a61d04075..fb789879f 100644 --- a/src/tools/vtapp/VTApp.csproj +++ b/src/tools/vtapp/VTApp.csproj @@ -1,4 +1,4 @@ - + diff --git a/src/tools/vtpipeterm/VtPipeTerm.vcxproj b/src/tools/vtpipeterm/VtPipeTerm.vcxproj index 9dbbe7824..a292ee1e0 100644 --- a/src/tools/vtpipeterm/VtPipeTerm.vcxproj +++ b/src/tools/vtpipeterm/VtPipeTerm.vcxproj @@ -1,4 +1,4 @@ - + {814DBDDE-894E-4327-A6E1-740504850098} diff --git a/src/tools/vtpipeterm/VtPipeTerm.vcxproj.filters b/src/tools/vtpipeterm/VtPipeTerm.vcxproj.filters index 87852d306..ef2028e27 100644 --- a/src/tools/vtpipeterm/VtPipeTerm.vcxproj.filters +++ b/src/tools/vtpipeterm/VtPipeTerm.vcxproj.filters @@ -1,4 +1,4 @@ - + diff --git a/src/tsf/tsf.vcxproj b/src/tsf/tsf.vcxproj index 41a588f87..ac41260c6 100644 --- a/src/tsf/tsf.vcxproj +++ b/src/tsf/tsf.vcxproj @@ -1,4 +1,4 @@ - + {2FD12FBB-1DDB-46D8-B818-1023C624CACA} diff --git a/src/tsf/tsf.vcxproj.filters b/src/tsf/tsf.vcxproj.filters index 45de6a88b..3b4f7739e 100644 --- a/src/tsf/tsf.vcxproj.filters +++ b/src/tsf/tsf.vcxproj.filters @@ -1,4 +1,4 @@ - + diff --git a/src/types/lib/types.vcxproj b/src/types/lib/types.vcxproj index e401b6cd9..83fcbf961 100644 --- a/src/types/lib/types.vcxproj +++ b/src/types/lib/types.vcxproj @@ -1,4 +1,4 @@ - + {18D09A24-8240-42D6-8CB6-236EEE820263} diff --git a/src/types/lib/types.vcxproj.filters b/src/types/lib/types.vcxproj.filters index efb34ad37..9c7fb4b38 100644 --- a/src/types/lib/types.vcxproj.filters +++ b/src/types/lib/types.vcxproj.filters @@ -1,4 +1,4 @@ - +