diff --git a/OpenConsole.sln b/OpenConsole.sln index d1f99131d2..ea6017c867 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 ac6caf3416..d14a85a64f 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 2505edeb05..6f26da63a5 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 43ba71c7ae..d691026a41 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 d198128887..938a87952f 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 69e0ecfed1..625fad5e62 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 dbdcea46b6..9f5c4f4abb 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 8c0c153a44..39863d0945 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 c0e0d016d6..124d387418 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 f0c08f5990..0bf349221c 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 14bfb03135..babfb14d4f 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 06e99e9d9c..5d531f7985 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 eaabb07f02..80886b1a84 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 5716e24c48..b4adbb48b1 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 dc01dc66b1..c307dfb1f8 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 be938d6d4e..49a2a5ebf7 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 f561ba6fb3..77ce7fa2fb 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 2cfdf88f56..e6a3067a0c 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 f750f0af36..2398d1b905 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 b5f7cb0d66..41ccd8f09b 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 71f71657bc..fec25bb183 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 b1f4537b59..c8e234ca29 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 7d7e0757bc..eb083eeb27 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 fd4cb8fd0a..75dbfa964f 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 3c6093ca41..c599bdf8e3 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 87852d3065..ef2028e27c 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 33e7672185..6e39b9f444 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 b1657ef6d1..44fa483d17 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 9c0098d424..e3974b647e 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 87852d3065..ef2028e27c 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 6b2017c004..85f38b0085 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 22060f292f..bab6d272a8 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 7a13539b7e..fb2519ece2 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 921b6e9204..4d7a25e1e7 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 a61d040758..fb789879fa 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 9dbbe78249..a292ee1e0a 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 87852d3065..ef2028e27c 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 41a588f87c..ac41260c6d 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 45de6a88be..3b4f7739ed 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 e401b6cd9c..83fcbf9613 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 efb34ad373..9c7fb4b389 100644 --- a/src/types/lib/types.vcxproj.filters +++ b/src/types/lib/types.vcxproj.filters @@ -1,4 +1,4 @@ - +