1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
4 
5 using System;
6 using System.CodeDom.Compiler;
7 
8 namespace Microsoft.VisualBasic
9 {
10     internal sealed partial class VBCodeGenerator
11     {
FromFileBatch(CompilerParameters options, string[] fileNames)12         protected override CompilerResults FromFileBatch(CompilerParameters options, string[] fileNames)
13         {
14             throw new PlatformNotSupportedException();
15         }
16     }
17 }
18