blob: 8c1db9dd7da546e7af2b919cf20b7ab557151179 [file] [log] [blame]
#region Copyright notice and license
// Protocol Buffers - Google's data interchange format
// Copyright 2017 Google Inc. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file or at
// https://developers.google.com/open-source/licenses/bsd
#endregion
using NUnitLite;
using System.Reflection;
// Note: this file wasn't in the actual 3.0, but is required due to build
// system changes
namespace Google.Protobuf.Test
{
class Program
{
public static int Main(string[] args)
{
return new AutoRun(typeof(Program).GetTypeInfo().Assembly).Execute(args);
}
}
}