Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TestHarnessOptions.cs « DebuggerTestSuite « wasm « sdks - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 96a6c13eb97d35fc59f1d35550c5e5dc8b3fc67d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

using System;

namespace Microsoft.WebAssembly.Diagnostics
{
    public class TestHarnessOptions : ProxyOptions
    {
        public string ChromePath { get; set; }
        public string AppPath { get; set; }
        public string PagePath { get; set; }
        public string NodeApp { get; set; }
    }
}