add test success

master
xieguigang 7 years ago
parent a6cdf58275
commit b643ab2038

@ -0,0 +1,6 @@
Namespace Captures
Public Structure Search
End Structure
End Namespace

@ -1,3 +0,0 @@
Module Module1
End Module

@ -2,6 +2,92 @@
''' <summary>
''' Docker commands
''' </summary>
Public Class Commands
Public Module Commands
End Class
' PS C:\Users\lipidsearch> docker
' Usage: docker [OPTIONS] COMMAND
' A self-sufficient runtime for containers
' Options:
' --config string Location of client config files (default "C:\\Users\\lipidsearch\\.docker")
' -D, --debug Enable debug mode
' -H, --host list Daemon socket(s) to connect to
' -l, --log-level string Set the logging level ("debug"|"info"|"warn"|"error"|"fatal") (default "info")
' --tls Use TLS; implied by --tlsverify
' --tlscacert string Trust certs signed only by this CA (default "C:\\Users\\lipidsearch\\.docker\\ca.pem")
' --tlscert string Path to TLS certificate file (default "C:\\Users\\lipidsearch\\.docker\\cert.pem")
' --tlskey string Path to TLS key file (default "C:\\Users\\lipidsearch\\.docker\\key.pem")
' --tlsverify Use TLS and verify the remote
' -v, --version Print version information and quit
' Management Commands:
' builder Manage builds
' config Manage Docker configs
' container Manage containers
' image Manage images
' network Manage networks
' node Manage Swarm nodes
' plugin Manage plugins
' secret Manage Docker secrets
' service Manage services
' stack Manage Docker stacks
' swarm Manage Swarm
' system Manage Docker
' trust Manage trust on Docker images
' volume Manage volumes
' Commands:
' attach Attach local standard input, output, and error streams to a running container
' build Build an image from a Dockerfile
' commit Create a new image from a container's changes
' cp Copy files/folders between a container and the local filesystem
' create Create a new container
' diff Inspect changes to files or directories on a container's filesystem
' events Get real time events from the server
' exec Run a command in a running container
' export Export a container's filesystem as a tar archive
' history Show the history of an image
' images List images
' import Import the contents from a tarball to create a filesystem image
' info Display system-wide information
' inspect Return low-level information on Docker objects
' kill Kill one or more running containers
' load Load an image from a tar archive or STDIN
' login Log in to a Docker registry
' logout Log out from a Docker registry
' logs Fetch the logs of a container
' pause Pause all processes within one or more containers
' port List port mappings or a specific mapping for the container
' ps List containers
' pull Pull an image or a repository from a registry
' push Push an image or a repository to a registry
' rename Rename a container
' restart Restart one or more containers
' rm Remove one or more containers
' rmi Remove one or more images
' run Run a command in a new container
' save Save one or more images to a tar archive (streamed to STDOUT by default)
' search Search the Docker Hub for images
' start Start one or more stopped containers
' stats Display a live stream of container(s) resource usage statistics
' stop Stop one or more running containers
' tag Create a tag TARGET_IMAGE that refers to SOURCE_IMAGE
' top Display the running processes of a container
' unpause Unpause all processes within one or more containers
' update Update configuration of one or more containers
' version Show the Docker version information
' wait Block until one or more containers stop, then print their exit codes
' Run 'docker COMMAND --help' for more information on a command.
''' <summary>
''' Search the Docker Hub for images
''' </summary>
''' <param name="term"></param>
''' <returns></returns>
Public Function Search(term As String) As Captures.Search()
End Function
End Module

@ -43,6 +43,27 @@
<PropertyGroup>
<OptionInfer>On</OptionInfer>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<DebugSymbols>true</DebugSymbols>
<DefineDebug>true</DefineDebug>
<DefineTrace>true</DefineTrace>
<OutputPath>bin\x64\Debug\</OutputPath>
<DocumentationFile>Docker.xml</DocumentationFile>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
<DebugType>full</DebugType>
<PlatformTarget>x64</PlatformTarget>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<DefineTrace>true</DefineTrace>
<OutputPath>bin\x64\Release\</OutputPath>
<DocumentationFile>Docker.xml</DocumentationFile>
<Optimize>true</Optimize>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x64</PlatformTarget>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
@ -72,7 +93,7 @@
<Import Include="System.Threading.Tasks" />
</ItemGroup>
<ItemGroup>
<Compile Include="Captures\Module1.vb" />
<Compile Include="Captures\Models.vb" />
<Compile Include="PowerShell.vb" />
<Compile Include="Commands.vb" />
<Compile Include="My Project\AssemblyInfo.vb" />

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7" />
</startup>
</configuration>

@ -0,0 +1,11 @@
Module Module1
Sub Main()
Dim ps As New Docker.PowerShell
Call Console.WriteLine(ps.RunScript("docker ps"))
Pause()
End Sub
End Module

@ -0,0 +1,13 @@
'------------------------------------------------------------------------------
' <auto-generated>
' This code was generated by a tool.
' Runtime Version:4.0.30319.42000
'
' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated.
' </auto-generated>
'------------------------------------------------------------------------------
Option Strict On
Option Explicit On

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<MyApplicationData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<MySubMain>false</MySubMain>
<SingleInstance>false</SingleInstance>
<ShutdownMode>0</ShutdownMode>
<EnableVisualStyles>true</EnableVisualStyles>
<AuthenticationMode>0</AuthenticationMode>
<ApplicationType>2</ApplicationType>
<SaveMySettingsOnExit>true</SaveMySettingsOnExit>
</MyApplicationData>

@ -0,0 +1,35 @@
Imports System
Imports System.Reflection
Imports System.Runtime.InteropServices
' General Information about an assembly is controlled through the following
' set of attributes. Change these attribute values to modify the information
' associated with an assembly.
' Review the values of the assembly attributes
<Assembly: AssemblyTitle("test")>
<Assembly: AssemblyDescription("")>
<Assembly: AssemblyCompany("")>
<Assembly: AssemblyProduct("test")>
<Assembly: AssemblyCopyright("Copyright © 2019")>
<Assembly: AssemblyTrademark("")>
<Assembly: ComVisible(False)>
'The following GUID is for the ID of the typelib if this project is exposed to COM
<Assembly: Guid("9f383d26-c932-4d67-bc22-9b87b21f3d71")>
' Version information for an assembly consists of the following four values:
'
' Major Version
' Minor Version
' Build Number
' Revision
'
' You can specify all the values or you can default the Build and Revision Numbers
' by using the '*' as shown below:
' <Assembly: AssemblyVersion("1.0.*")>
<Assembly: AssemblyVersion("1.0.0.0")>
<Assembly: AssemblyFileVersion("1.0.0.0")>

@ -0,0 +1,62 @@
'------------------------------------------------------------------------------
' <auto-generated>
' This code was generated by a tool.
' Runtime Version:4.0.30319.42000
'
' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated.
' </auto-generated>
'------------------------------------------------------------------------------
Option Strict On
Option Explicit On
Namespace My.Resources
'This class was auto-generated by the StronglyTypedResourceBuilder
'class via a tool like ResGen or Visual Studio.
'To add or remove a member, edit your .ResX file then rerun ResGen
'with the /str option, or rebuild your VS project.
'''<summary>
''' A strongly-typed resource class, for looking up localized strings, etc.
'''</summary>
<Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0"), _
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
Global.Microsoft.VisualBasic.HideModuleNameAttribute()> _
Friend Module Resources
Private resourceMan As Global.System.Resources.ResourceManager
Private resourceCulture As Global.System.Globalization.CultureInfo
'''<summary>
''' Returns the cached ResourceManager instance used by this class.
'''</summary>
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager
Get
If Object.ReferenceEquals(resourceMan, Nothing) Then
Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("test.Resources", GetType(Resources).Assembly)
resourceMan = temp
End If
Return resourceMan
End Get
End Property
'''<summary>
''' Overrides the current thread's CurrentUICulture property for all
''' resource lookups using this strongly typed resource class.
'''</summary>
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
Friend Property Culture() As Global.System.Globalization.CultureInfo
Get
Return resourceCulture
End Get
Set(ByVal value As Global.System.Globalization.CultureInfo)
resourceCulture = value
End Set
End Property
End Module
End Namespace

@ -0,0 +1,117 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>

@ -0,0 +1,73 @@
'------------------------------------------------------------------------------
' <auto-generated>
' This code was generated by a tool.
' Runtime Version:4.0.30319.42000
'
' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated.
' </auto-generated>
'------------------------------------------------------------------------------
Option Strict On
Option Explicit On
Namespace My
<Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0"), _
Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
Partial Friend NotInheritable Class MySettings
Inherits Global.System.Configuration.ApplicationSettingsBase
Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings), MySettings)
#Region "My.Settings Auto-Save Functionality"
#If _MyType = "WindowsForms" Then
Private Shared addedHandler As Boolean
Private Shared addedHandlerLockObject As New Object
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
Private Shared Sub AutoSaveSettings(ByVal sender As Global.System.Object, ByVal e As Global.System.EventArgs)
If My.Application.SaveMySettingsOnExit Then
My.Settings.Save()
End If
End Sub
#End If
#End Region
Public Shared ReadOnly Property [Default]() As MySettings
Get
#If _MyType = "WindowsForms" Then
If Not addedHandler Then
SyncLock addedHandlerLockObject
If Not addedHandler Then
AddHandler My.Application.Shutdown, AddressOf AutoSaveSettings
addedHandler = True
End If
End SyncLock
End If
#End If
Return defaultInstance
End Get
End Property
End Class
End Namespace
Namespace My
<Global.Microsoft.VisualBasic.HideModuleNameAttribute(), _
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute()> _
Friend Module MySettingsProperty
<Global.System.ComponentModel.Design.HelpKeywordAttribute("My.Settings")> _
Friend ReadOnly Property Settings() As Global.test.My.MySettings
Get
Return Global.test.My.MySettings.Default
End Get
End Property
End Module
End Namespace

@ -0,0 +1,7 @@
<?xml version='1.0' encoding='utf-8'?>
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" UseMySettingsClassName="true">
<Profiles>
<Profile Name="(Default)" />
</Profiles>
<Settings />
</SettingsFile>

@ -0,0 +1,143 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{90F9045B-CF2E-44F1-81E3-0751B08A72E3}</ProjectGuid>
<OutputType>Exe</OutputType>
<StartupObject>test.Module1</StartupObject>
<RootNamespace>test</RootNamespace>
<AssemblyName>test</AssemblyName>
<FileAlignment>512</FileAlignment>
<MyType>Console</MyType>
<TargetFrameworkVersion>v4.7</TargetFrameworkVersion>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<DefineDebug>true</DefineDebug>
<DefineTrace>true</DefineTrace>
<OutputPath>bin\Debug\</OutputPath>
<DocumentationFile>test.xml</DocumentationFile>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<DefineDebug>false</DefineDebug>
<DefineTrace>true</DefineTrace>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DocumentationFile>test.xml</DocumentationFile>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
</PropertyGroup>
<PropertyGroup>
<OptionExplicit>On</OptionExplicit>
</PropertyGroup>
<PropertyGroup>
<OptionCompare>Binary</OptionCompare>
</PropertyGroup>
<PropertyGroup>
<OptionStrict>Off</OptionStrict>
</PropertyGroup>
<PropertyGroup>
<OptionInfer>On</OptionInfer>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<DebugSymbols>true</DebugSymbols>
<DefineDebug>true</DefineDebug>
<DefineTrace>true</DefineTrace>
<OutputPath>bin\x64\Debug\</OutputPath>
<DocumentationFile>test.xml</DocumentationFile>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
<DebugType>full</DebugType>
<PlatformTarget>x64</PlatformTarget>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<DefineTrace>true</DefineTrace>
<OutputPath>bin\x64\Release\</OutputPath>
<DocumentationFile>test.xml</DocumentationFile>
<Optimize>true</Optimize>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x64</PlatformTarget>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Deployment" />
<Reference Include="System.Xml" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Net.Http" />
</ItemGroup>
<ItemGroup>
<Import Include="Microsoft.VisualBasic" />
<Import Include="System" />
<Import Include="System.Collections" />
<Import Include="System.Collections.Generic" />
<Import Include="System.Data" />
<Import Include="System.Diagnostics" />
<Import Include="System.Linq" />
<Import Include="System.Xml.Linq" />
<Import Include="System.Threading.Tasks" />
</ItemGroup>
<ItemGroup>
<Compile Include="Module1.vb" />
<Compile Include="My Project\AssemblyInfo.vb" />
<Compile Include="My Project\Application.Designer.vb">
<AutoGen>True</AutoGen>
<DependentUpon>Application.myapp</DependentUpon>
</Compile>
<Compile Include="My Project\Resources.Designer.vb">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="My Project\Settings.Designer.vb">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="My Project\Resources.resx">
<Generator>VbMyResourcesResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.vb</LastGenOutput>
<CustomToolNamespace>My.Resources</CustomToolNamespace>
<SubType>Designer</SubType>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Include="My Project\Application.myapp">
<Generator>MyApplicationCodeGenerator</Generator>
<LastGenOutput>Application.Designer.vb</LastGenOutput>
</None>
<None Include="My Project\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<CustomToolNamespace>My</CustomToolNamespace>
<LastGenOutput>Settings.Designer.vb</LastGenOutput>
</None>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\sciBASIC#\Microsoft.VisualBasic.Core\47-dotnet_Microsoft.VisualBasic.vbproj">
<Project>{fecce1fd-e1d4-49e3-a668-60bb5e7aed99}</Project>
<Name>47-dotnet_Microsoft.VisualBasic</Name>
</ProjectReference>
<ProjectReference Include="..\Docker.vbproj">
<Project>{b028826a-e615-4f26-b192-b9b0a997696a}</Project>
<Name>Docker</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
</Project>

@ -15,6 +15,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "runtime", "runtime", "{5CB4
EndProject
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "Docker", "Docker\Docker.vbproj", "{B028826A-E615-4F26-B192-B9B0A997696A}"
EndProject
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "test", "Docker\test\test.vbproj", "{90F9045B-CF2E-44F1-81E3-0751B08A72E3}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Biodeep_UNIX_x64|Any CPU = Biodeep_UNIX_x64|Any CPU
@ -531,8 +533,8 @@ Global
{B028826A-E615-4F26-B192-B9B0A997696A}.Biostack-Debug|x86.Build.0 = Debug|Any CPU
{B028826A-E615-4F26-B192-B9B0A997696A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B028826A-E615-4F26-B192-B9B0A997696A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B028826A-E615-4F26-B192-B9B0A997696A}.Debug|x64.ActiveCfg = Debug|Any CPU
{B028826A-E615-4F26-B192-B9B0A997696A}.Debug|x64.Build.0 = Debug|Any CPU
{B028826A-E615-4F26-B192-B9B0A997696A}.Debug|x64.ActiveCfg = Debug|x64
{B028826A-E615-4F26-B192-B9B0A997696A}.Debug|x64.Build.0 = Debug|x64
{B028826A-E615-4F26-B192-B9B0A997696A}.Debug|x86.ActiveCfg = Debug|Any CPU
{B028826A-E615-4F26-B192-B9B0A997696A}.Debug|x86.Build.0 = Debug|Any CPU
{B028826A-E615-4F26-B192-B9B0A997696A}.DEMO|Any CPU.ActiveCfg = Debug|Any CPU
@ -613,6 +615,114 @@ Global
{B028826A-E615-4F26-B192-B9B0A997696A}.Yilia-Release_x64|x64.Build.0 = Release|Any CPU
{B028826A-E615-4F26-B192-B9B0A997696A}.Yilia-Release_x64|x86.ActiveCfg = Release|Any CPU
{B028826A-E615-4F26-B192-B9B0A997696A}.Yilia-Release_x64|x86.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Biodeep_UNIX_x64|Any CPU.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Biodeep_UNIX_x64|Any CPU.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Biodeep_UNIX_x64|x64.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Biodeep_UNIX_x64|x64.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Biodeep_UNIX_x64|x86.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Biodeep_UNIX_x64|x86.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Biodeep|Any CPU.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Biodeep|Any CPU.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Biodeep|x64.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Biodeep|x64.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Biodeep|x86.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Biodeep|x86.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Biostack|Any CPU.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Biostack|Any CPU.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Biostack|x64.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Biostack|x64.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Biostack|x86.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Biostack|x86.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Biostack-Debug|Any CPU.ActiveCfg = Debug|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Biostack-Debug|Any CPU.Build.0 = Debug|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Biostack-Debug|x64.ActiveCfg = Debug|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Biostack-Debug|x64.Build.0 = Debug|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Biostack-Debug|x86.ActiveCfg = Debug|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Biostack-Debug|x86.Build.0 = Debug|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Debug|x64.ActiveCfg = Debug|x64
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Debug|x64.Build.0 = Debug|x64
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Debug|x86.ActiveCfg = Debug|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Debug|x86.Build.0 = Debug|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.DEMO|Any CPU.ActiveCfg = Debug|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.DEMO|Any CPU.Build.0 = Debug|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.DEMO|x64.ActiveCfg = Debug|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.DEMO|x64.Build.0 = Debug|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.DEMO|x86.ActiveCfg = Debug|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.DEMO|x86.Build.0 = Debug|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.docs|Any CPU.ActiveCfg = Debug|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.docs|Any CPU.Build.0 = Debug|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.docs|x64.ActiveCfg = Debug|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.docs|x64.Build.0 = Debug|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.docs|x86.ActiveCfg = Debug|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.docs|x86.Build.0 = Debug|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.GCModeller(Release_X64)|Any CPU.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.GCModeller(Release_X64)|Any CPU.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.GCModeller(Release_X64)|x64.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.GCModeller(Release_X64)|x64.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.GCModeller(Release_X64)|x86.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.GCModeller(Release_X64)|x86.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.GCModeller(UNIX-Release_X64)|Any CPU.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.GCModeller(UNIX-Release_X64)|Any CPU.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.GCModeller(UNIX-Release_X64)|x64.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.GCModeller(UNIX-Release_X64)|x64.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.GCModeller(UNIX-Release_X64)|x86.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.GCModeller(UNIX-Release_X64)|x86.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.GTA5-game-test|Any CPU.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.GTA5-game-test|Any CPU.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.GTA5-game-test|x64.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.GTA5-game-test|x64.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.GTA5-game-test|x86.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.GTA5-game-test|x86.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.installer_x64|Any CPU.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.installer_x64|Any CPU.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.installer_x64|x64.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.installer_x64|x64.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.installer_x64|x86.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.installer_x64|x86.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.mysqli_X64_release|Any CPU.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.mysqli_X64_release|Any CPU.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.mysqli_X64_release|x64.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.mysqli_X64_release|x64.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.mysqli_X64_release|x86.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.mysqli_X64_release|x86.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.ProteoWizard.d|Any CPU.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.ProteoWizard.d|Any CPU.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.ProteoWizard.d|x64.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.ProteoWizard.d|x64.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.ProteoWizard.d|x86.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.ProteoWizard.d|x86.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Publish|Any CPU.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Publish|Any CPU.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Publish|x64.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Publish|x64.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Publish|x86.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Publish|x86.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Release|Any CPU.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Release|x64.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Release|x64.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Release|x86.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Release|x86.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.sciBASIC.NET-test-release|Any CPU.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.sciBASIC.NET-test-release|Any CPU.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.sciBASIC.NET-test-release|x64.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.sciBASIC.NET-test-release|x64.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.sciBASIC.NET-test-release|x86.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.sciBASIC.NET-test-release|x86.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Surveillance-of-infectious-diseases|Any CPU.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Surveillance-of-infectious-diseases|Any CPU.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Surveillance-of-infectious-diseases|x64.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Surveillance-of-infectious-diseases|x64.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Surveillance-of-infectious-diseases|x86.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Surveillance-of-infectious-diseases|x86.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Yilia-Release_x64|Any CPU.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Yilia-Release_x64|Any CPU.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Yilia-Release_x64|x64.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Yilia-Release_x64|x64.Build.0 = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Yilia-Release_x64|x86.ActiveCfg = Release|Any CPU
{90F9045B-CF2E-44F1-81E3-0751B08A72E3}.Yilia-Release_x64|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE

Loading…
Cancel
Save