dotnet-core/release-notes/3.0/preview/api-diff/preview6/3.0-preview6_Microsoft.VisualBasic.ApplicationServices.md
William Godbe 89589fec4d
Add API diff between .NET Core 3.0 preview5 and preview6. (#2841)
* Add API diff between .NET Core 3.0 preview5 and preview6.

* Fix title in Standalon-packages.md file
2019-06-10 16:02:34 -07:00

1.1 KiB

Microsoft.VisualBasic.ApplicationServices

 namespace Microsoft.VisualBasic.ApplicationServices {
     public class ApplicationBase {
+        public AssemblyInfo Info { get; }
     }
+    public class AssemblyInfo {
+        public AssemblyInfo(Assembly currentAssembly);
+        public string AssemblyName { get; }
+        public string CompanyName { get; }
+        public string Copyright { get; }
+        public string Description { get; }
+        public string DirectoryPath { get; }
+        public ReadOnlyCollection<Assembly> LoadedAssemblies { get; }
+        public string ProductName { get; }
+        public string StackTrace { get; }
+        public string Title { get; }
+        public string Trademark { get; }
+        public Version Version { get; }
+        public long WorkingSet { get; }
+    }
+    public class ConsoleApplicationBase : ApplicationBase {
+        public ConsoleApplicationBase();
+        public ReadOnlyCollection<string> CommandLineArgs { get; }
+        protected ReadOnlyCollection<string> InternalCommandLine { set; }
+    }
 }