1 #region Copyright notice and license 2 // Protocol Buffers - Google's data interchange format 3 // Copyright 2017 Google Inc. All rights reserved. 4 // 5 // Use of this source code is governed by a BSD-style 6 // license that can be found in the LICENSE file or at 7 // https://developers.google.com/open-source/licenses/bsd 8 #endregion 9 using NUnitLite; 10 using System.Reflection; 11 12 // Note: this file wasn't in the actual 3.0, but is required due to build 13 // system changes 14 15 namespace Google.Protobuf.Test 16 { 17 class Program 18 { Main(string[] args)19 public static int Main(string[] args) 20 { 21 return new AutoRun(typeof(Program).GetTypeInfo().Assembly).Execute(args); 22 } 23 } 24 }