summaryrefslogtreecommitdiff
path: root/Tools/launchSettings.json
blob: 45b67487c87706e66a175c14117022d51afacf5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
    "profiles": {
        ".NET Core xUnit Console": {
            "commandName": "Executable",
            "executablePath": "$(BinDir)testhost/netcoreapp-$(_bc_OSGroup)-$(ConfigurationGroup)-$(ArchGroup)/dotnet.exe",
            "commandLineArgs": "xunit.console.dll $(XunitArguments) -wait -parallel none",
            "workingDirectory": "$(TestWorkingDir)$(MSBuildProjectName)/netcoreapp-$(_bc_OSGroup)-$(ConfigurationGroup)-$(ArchGroup)/"
        },
        ".NET Framework xUnit Console": {
            "commandName": "Executable",
            "executablePath": "$(TestWorkingDir)$(MSBuildProjectName)/netfx-Windows_NT-$(ConfigurationGroup)-$(ArchGroup)/xunit.console.exe",
            "commandLineArgs": "$(XunitArguments) -wait -parallel none",
            "workingDirectory": "$(TestWorkingDir)$(MSBuildProjectName)/netfx-Windows_NT-$(ConfigurationGroup)-$(ArchGroup)/",
            "environmentVariables": {
                "DEVPATH": "$(BinDir)testhost/netfx-Windows_NT-$(ConfigurationGroup)-$(ArchGroup)/"
            }
        }
    }
}