blob: 63f6f7f5384a4ba61c22e827e53b2b906c1e92ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
namespace WixToolsetTest.ManagedHost
{
using System.Collections.Generic;
public class TestEngineResult
{
public int ExitCode { get; set; }
public List<string> Output { get; set; }
}
}
|