From 768108113b48183a3d9e52ef5a9751bb2ce1fb0c Mon Sep 17 00:00:00 2001 From: Sam Harwell Date: Fri, 30 Jun 2017 10:05:21 -0500 Subject: [PATCH] Migrate xunit launch settings configurations to CPS form --- build/Targets/Roslyn.Toolsets.Xunit.targets | 1 + src/CodeStyle/CSharp/Tests/Properties/launchSettings.json | 8 ++++++++ src/CodeStyle/Core/Tests/Properties/launchSettings.json | 8 ++++++++ .../VisualBasic/Tests/My Project/launchSettings.json | 8 ++++++++ .../Test/CommandLine/Properties/launchSettings.json | 8 ++++++++ .../CSharp/Test/Emit/Properties/launchSettings.json | 8 ++++++++ .../CSharp/Test/Semantic/Properties/launchSettings.json | 8 ++++++++ .../CSharp/Test/Syntax/Properties/launchSettings.json | 8 ++++++++ .../CSharp/Test/WinRT/Properties/launchSettings.json | 8 ++++++++ .../Core/CodeAnalysisTest/Properties/launchSettings.json | 8 ++++++++ .../Core/MSBuildTaskTests/Properties/launchSettings.json | 8 ++++++++ .../VBCSCompilerTests/Properties/launchSettings.json | 8 ++++++++ .../Test/CommandLine/My Project/launchSettings.json | 8 ++++++++ .../VisualBasic/Test/Emit/My Project/launchSettings.json | 8 ++++++++ .../Test/Semantic/My Project/launchSettings.json | 8 ++++++++ .../Test/Symbol/My Project/launchSettings.json | 8 ++++++++ .../Test/Syntax/My Project/launchSettings.json | 8 ++++++++ .../CSharpTest/Properties/launchSettings.json | 8 ++++++++ .../CSharpTest2/Properties/launchSettings.json | 8 ++++++++ src/EditorFeatures/Test/Properties/launchSettings.json | 8 ++++++++ src/EditorFeatures/Test2/My Project/launchSettings.json | 8 ++++++++ .../VisualBasicTest/My Project/launchSettings.json | 8 ++++++++ .../ExpressionCompiler/Properties/launchSettings.json | 8 ++++++++ .../Test/ResultProvider/Properties/launchSettings.json | 8 ++++++++ .../Test/FunctionResolver/Properties/launchSettings.json | 8 ++++++++ .../ExpressionCompiler/My Project/launchSettings.json | 8 ++++++++ .../Test/ResultProvider/My Project/launchSettings.json | 8 ++++++++ src/Interactive/HostTest/Properties/launchSettings.json | 8 ++++++++ .../CSharpTest.Desktop/Properties/launchSettings.json | 8 ++++++++ src/Scripting/CSharpTest/Properties/launchSettings.json | 8 ++++++++ .../CoreTest.Desktop/Properties/launchSettings.json | 8 ++++++++ src/Scripting/CoreTest/Properties/launchSettings.json | 8 ++++++++ .../My Project/launchSettings.json | 8 ++++++++ .../VisualBasicTest/My Project/launchSettings.json | 8 ++++++++ .../CSharp/Test/Properties/launchSettings.json | 8 ++++++++ .../Core/Test.Next/Properties/launchSettings.json | 8 ++++++++ src/VisualStudio/Core/Test/My Project/launchSettings.json | 8 ++++++++ .../IntegrationTests/Properties/launchSettings.json | 8 ++++++++ src/Workspaces/CSharpTest/Properties/launchSettings.json | 8 ++++++++ src/Workspaces/CoreTest/Properties/launchSettings.json | 8 ++++++++ .../VisualBasicTest/My Project/launchSettings.json | 8 ++++++++ 41 files changed, 321 insertions(+) create mode 100644 src/CodeStyle/CSharp/Tests/Properties/launchSettings.json create mode 100644 src/CodeStyle/Core/Tests/Properties/launchSettings.json create mode 100644 src/CodeStyle/VisualBasic/Tests/My Project/launchSettings.json create mode 100644 src/Compilers/CSharp/Test/CommandLine/Properties/launchSettings.json create mode 100644 src/Compilers/CSharp/Test/Emit/Properties/launchSettings.json create mode 100644 src/Compilers/CSharp/Test/Semantic/Properties/launchSettings.json create mode 100644 src/Compilers/CSharp/Test/Syntax/Properties/launchSettings.json create mode 100644 src/Compilers/CSharp/Test/WinRT/Properties/launchSettings.json create mode 100644 src/Compilers/Core/CodeAnalysisTest/Properties/launchSettings.json create mode 100644 src/Compilers/Core/MSBuildTaskTests/Properties/launchSettings.json create mode 100644 src/Compilers/Server/VBCSCompilerTests/Properties/launchSettings.json create mode 100644 src/Compilers/VisualBasic/Test/CommandLine/My Project/launchSettings.json create mode 100644 src/Compilers/VisualBasic/Test/Emit/My Project/launchSettings.json create mode 100644 src/Compilers/VisualBasic/Test/Semantic/My Project/launchSettings.json create mode 100644 src/Compilers/VisualBasic/Test/Symbol/My Project/launchSettings.json create mode 100644 src/Compilers/VisualBasic/Test/Syntax/My Project/launchSettings.json create mode 100644 src/EditorFeatures/CSharpTest/Properties/launchSettings.json create mode 100644 src/EditorFeatures/CSharpTest2/Properties/launchSettings.json create mode 100644 src/EditorFeatures/Test/Properties/launchSettings.json create mode 100644 src/EditorFeatures/Test2/My Project/launchSettings.json create mode 100644 src/EditorFeatures/VisualBasicTest/My Project/launchSettings.json create mode 100644 src/ExpressionEvaluator/CSharp/Test/ExpressionCompiler/Properties/launchSettings.json create mode 100644 src/ExpressionEvaluator/CSharp/Test/ResultProvider/Properties/launchSettings.json create mode 100644 src/ExpressionEvaluator/Core/Test/FunctionResolver/Properties/launchSettings.json create mode 100644 src/ExpressionEvaluator/VisualBasic/Test/ExpressionCompiler/My Project/launchSettings.json create mode 100644 src/ExpressionEvaluator/VisualBasic/Test/ResultProvider/My Project/launchSettings.json create mode 100644 src/Interactive/HostTest/Properties/launchSettings.json create mode 100644 src/Scripting/CSharpTest.Desktop/Properties/launchSettings.json create mode 100644 src/Scripting/CSharpTest/Properties/launchSettings.json create mode 100644 src/Scripting/CoreTest.Desktop/Properties/launchSettings.json create mode 100644 src/Scripting/CoreTest/Properties/launchSettings.json create mode 100644 src/Scripting/VisualBasicTest.Desktop/My Project/launchSettings.json create mode 100644 src/Scripting/VisualBasicTest/My Project/launchSettings.json create mode 100644 src/VisualStudio/CSharp/Test/Properties/launchSettings.json create mode 100644 src/VisualStudio/Core/Test.Next/Properties/launchSettings.json create mode 100644 src/VisualStudio/Core/Test/My Project/launchSettings.json create mode 100644 src/VisualStudio/IntegrationTest/IntegrationTests/Properties/launchSettings.json create mode 100644 src/Workspaces/CSharpTest/Properties/launchSettings.json create mode 100644 src/Workspaces/CoreTest/Properties/launchSettings.json create mode 100644 src/Workspaces/VisualBasicTest/My Project/launchSettings.json diff --git a/build/Targets/Roslyn.Toolsets.Xunit.targets b/build/Targets/Roslyn.Toolsets.Xunit.targets index 99a8710459b..9037e801554 100644 --- a/build/Targets/Roslyn.Toolsets.Xunit.targets +++ b/build/Targets/Roslyn.Toolsets.Xunit.targets @@ -7,6 +7,7 @@ $(OutDir)\xUnitResults "$(OutDir)\$(AssemblyName).dll" -html "$(XUnitTestResultsDirectory)\$(AssemblyName).html" -noshadow + Program $(XUnitPath) $(XUnitArguments) diff --git a/src/CodeStyle/CSharp/Tests/Properties/launchSettings.json b/src/CodeStyle/CSharp/Tests/Properties/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/CodeStyle/CSharp/Tests/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/CodeStyle/Core/Tests/Properties/launchSettings.json b/src/CodeStyle/Core/Tests/Properties/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/CodeStyle/Core/Tests/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/CodeStyle/VisualBasic/Tests/My Project/launchSettings.json b/src/CodeStyle/VisualBasic/Tests/My Project/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/CodeStyle/VisualBasic/Tests/My Project/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/Compilers/CSharp/Test/CommandLine/Properties/launchSettings.json b/src/Compilers/CSharp/Test/CommandLine/Properties/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/Compilers/CSharp/Test/CommandLine/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/Compilers/CSharp/Test/Emit/Properties/launchSettings.json b/src/Compilers/CSharp/Test/Emit/Properties/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/Compilers/CSharp/Test/Emit/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/Compilers/CSharp/Test/Semantic/Properties/launchSettings.json b/src/Compilers/CSharp/Test/Semantic/Properties/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/Compilers/CSharp/Test/Semantic/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/Compilers/CSharp/Test/Syntax/Properties/launchSettings.json b/src/Compilers/CSharp/Test/Syntax/Properties/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/Compilers/CSharp/Test/Syntax/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/Compilers/CSharp/Test/WinRT/Properties/launchSettings.json b/src/Compilers/CSharp/Test/WinRT/Properties/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/Compilers/CSharp/Test/WinRT/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/Compilers/Core/CodeAnalysisTest/Properties/launchSettings.json b/src/Compilers/Core/CodeAnalysisTest/Properties/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/Compilers/Core/CodeAnalysisTest/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/Compilers/Core/MSBuildTaskTests/Properties/launchSettings.json b/src/Compilers/Core/MSBuildTaskTests/Properties/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/Compilers/Core/MSBuildTaskTests/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/Compilers/Server/VBCSCompilerTests/Properties/launchSettings.json b/src/Compilers/Server/VBCSCompilerTests/Properties/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/Compilers/Server/VBCSCompilerTests/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/Compilers/VisualBasic/Test/CommandLine/My Project/launchSettings.json b/src/Compilers/VisualBasic/Test/CommandLine/My Project/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/Compilers/VisualBasic/Test/CommandLine/My Project/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/Compilers/VisualBasic/Test/Emit/My Project/launchSettings.json b/src/Compilers/VisualBasic/Test/Emit/My Project/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/Compilers/VisualBasic/Test/Emit/My Project/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/Compilers/VisualBasic/Test/Semantic/My Project/launchSettings.json b/src/Compilers/VisualBasic/Test/Semantic/My Project/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/Compilers/VisualBasic/Test/Semantic/My Project/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/Compilers/VisualBasic/Test/Symbol/My Project/launchSettings.json b/src/Compilers/VisualBasic/Test/Symbol/My Project/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/Compilers/VisualBasic/Test/Symbol/My Project/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/Compilers/VisualBasic/Test/Syntax/My Project/launchSettings.json b/src/Compilers/VisualBasic/Test/Syntax/My Project/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/Compilers/VisualBasic/Test/Syntax/My Project/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/EditorFeatures/CSharpTest/Properties/launchSettings.json b/src/EditorFeatures/CSharpTest/Properties/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/EditorFeatures/CSharpTest/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/EditorFeatures/CSharpTest2/Properties/launchSettings.json b/src/EditorFeatures/CSharpTest2/Properties/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/EditorFeatures/CSharpTest2/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/EditorFeatures/Test/Properties/launchSettings.json b/src/EditorFeatures/Test/Properties/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/EditorFeatures/Test/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/EditorFeatures/Test2/My Project/launchSettings.json b/src/EditorFeatures/Test2/My Project/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/EditorFeatures/Test2/My Project/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/EditorFeatures/VisualBasicTest/My Project/launchSettings.json b/src/EditorFeatures/VisualBasicTest/My Project/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/EditorFeatures/VisualBasicTest/My Project/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/ExpressionEvaluator/CSharp/Test/ExpressionCompiler/Properties/launchSettings.json b/src/ExpressionEvaluator/CSharp/Test/ExpressionCompiler/Properties/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/ExpressionEvaluator/CSharp/Test/ExpressionCompiler/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/ExpressionEvaluator/CSharp/Test/ResultProvider/Properties/launchSettings.json b/src/ExpressionEvaluator/CSharp/Test/ResultProvider/Properties/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/ExpressionEvaluator/CSharp/Test/ResultProvider/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/ExpressionEvaluator/Core/Test/FunctionResolver/Properties/launchSettings.json b/src/ExpressionEvaluator/Core/Test/FunctionResolver/Properties/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/ExpressionEvaluator/Core/Test/FunctionResolver/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/ExpressionEvaluator/VisualBasic/Test/ExpressionCompiler/My Project/launchSettings.json b/src/ExpressionEvaluator/VisualBasic/Test/ExpressionCompiler/My Project/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/ExpressionEvaluator/VisualBasic/Test/ExpressionCompiler/My Project/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/ExpressionEvaluator/VisualBasic/Test/ResultProvider/My Project/launchSettings.json b/src/ExpressionEvaluator/VisualBasic/Test/ResultProvider/My Project/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/ExpressionEvaluator/VisualBasic/Test/ResultProvider/My Project/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/Interactive/HostTest/Properties/launchSettings.json b/src/Interactive/HostTest/Properties/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/Interactive/HostTest/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/Scripting/CSharpTest.Desktop/Properties/launchSettings.json b/src/Scripting/CSharpTest.Desktop/Properties/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/Scripting/CSharpTest.Desktop/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/Scripting/CSharpTest/Properties/launchSettings.json b/src/Scripting/CSharpTest/Properties/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/Scripting/CSharpTest/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/Scripting/CoreTest.Desktop/Properties/launchSettings.json b/src/Scripting/CoreTest.Desktop/Properties/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/Scripting/CoreTest.Desktop/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/Scripting/CoreTest/Properties/launchSettings.json b/src/Scripting/CoreTest/Properties/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/Scripting/CoreTest/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/Scripting/VisualBasicTest.Desktop/My Project/launchSettings.json b/src/Scripting/VisualBasicTest.Desktop/My Project/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/Scripting/VisualBasicTest.Desktop/My Project/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/Scripting/VisualBasicTest/My Project/launchSettings.json b/src/Scripting/VisualBasicTest/My Project/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/Scripting/VisualBasicTest/My Project/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/VisualStudio/CSharp/Test/Properties/launchSettings.json b/src/VisualStudio/CSharp/Test/Properties/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/VisualStudio/CSharp/Test/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/VisualStudio/Core/Test.Next/Properties/launchSettings.json b/src/VisualStudio/Core/Test.Next/Properties/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/VisualStudio/Core/Test.Next/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/VisualStudio/Core/Test/My Project/launchSettings.json b/src/VisualStudio/Core/Test/My Project/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/VisualStudio/Core/Test/My Project/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/VisualStudio/IntegrationTest/IntegrationTests/Properties/launchSettings.json b/src/VisualStudio/IntegrationTest/IntegrationTests/Properties/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/VisualStudio/IntegrationTest/IntegrationTests/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/Workspaces/CSharpTest/Properties/launchSettings.json b/src/Workspaces/CSharpTest/Properties/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/Workspaces/CSharpTest/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/Workspaces/CoreTest/Properties/launchSettings.json b/src/Workspaces/CoreTest/Properties/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/Workspaces/CoreTest/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} diff --git a/src/Workspaces/VisualBasicTest/My Project/launchSettings.json b/src/Workspaces/VisualBasicTest/My Project/launchSettings.json new file mode 100644 index 00000000000..093c005e74a --- /dev/null +++ b/src/Workspaces/VisualBasicTest/My Project/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "xUnit.net Console": { + "executablePath": "$(XUnitPath)", + "commandLineArgs": "$(XUnitArguments)" + } + } +} -- GitLab