From e2ceb3aaa2a1346d2097d21dbcd30fb6cb863aaa Mon Sep 17 00:00:00 2001 From: xieguigang Date: Wed, 23 Jan 2019 13:42:35 +0800 Subject: [PATCH] add centos linux helper module --- Centos/Bash.vb | 3 + Centos/Centos.vbproj | 104 +++++++++++++++++++ Centos/My Project/Application.Designer.vb | 13 +++ Centos/My Project/Application.myapp | 10 ++ Centos/My Project/AssemblyInfo.vb | 35 +++++++ Centos/My Project/Resources.Designer.vb | 62 ++++++++++++ Centos/My Project/Resources.resx | 117 ++++++++++++++++++++++ Centos/My Project/Settings.Designer.vb | 73 ++++++++++++++ Centos/My Project/Settings.settings | 7 ++ docker.sln | 110 ++++++++++++++++++++ 10 files changed, 534 insertions(+) create mode 100644 Centos/Bash.vb create mode 100644 Centos/Centos.vbproj create mode 100644 Centos/My Project/Application.Designer.vb create mode 100644 Centos/My Project/Application.myapp create mode 100644 Centos/My Project/AssemblyInfo.vb create mode 100644 Centos/My Project/Resources.Designer.vb create mode 100644 Centos/My Project/Resources.resx create mode 100644 Centos/My Project/Settings.Designer.vb create mode 100644 Centos/My Project/Settings.settings diff --git a/Centos/Bash.vb b/Centos/Bash.vb new file mode 100644 index 0000000..75cc3d5 --- /dev/null +++ b/Centos/Bash.vb @@ -0,0 +1,3 @@ +Public Class Bash + +End Class diff --git a/Centos/Centos.vbproj b/Centos/Centos.vbproj new file mode 100644 index 0000000..e40127f --- /dev/null +++ b/Centos/Centos.vbproj @@ -0,0 +1,104 @@ + + + + + Debug + AnyCPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE} + Library + Centos + Centos + 512 + Windows + v4.7 + true + + + true + full + true + true + bin\Debug\ + Centos.xml + 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 + + + pdbonly + false + true + true + bin\Release\ + Centos.xml + 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 + + + On + + + Binary + + + Off + + + On + + + + + + + + + + + + + + + + + + + + + + + + + + True + Application.myapp + + + True + True + Resources.resx + + + True + Settings.settings + True + + + + + VbMyResourcesResXFileCodeGenerator + Resources.Designer.vb + My.Resources + Designer + + + + + MyApplicationCodeGenerator + Application.Designer.vb + + + SettingsSingleFileGenerator + My + Settings.Designer.vb + + + + \ No newline at end of file diff --git a/Centos/My Project/Application.Designer.vb b/Centos/My Project/Application.Designer.vb new file mode 100644 index 0000000..88dd01c --- /dev/null +++ b/Centos/My Project/Application.Designer.vb @@ -0,0 +1,13 @@ +'------------------------------------------------------------------------------ +' +' 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. +' +'------------------------------------------------------------------------------ + +Option Strict On +Option Explicit On + diff --git a/Centos/My Project/Application.myapp b/Centos/My Project/Application.myapp new file mode 100644 index 0000000..758895d --- /dev/null +++ b/Centos/My Project/Application.myapp @@ -0,0 +1,10 @@ + + + false + false + 0 + true + 0 + 1 + true + diff --git a/Centos/My Project/AssemblyInfo.vb b/Centos/My Project/AssemblyInfo.vb new file mode 100644 index 0000000..b8a9210 --- /dev/null +++ b/Centos/My Project/AssemblyInfo.vb @@ -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 + + + + + + + + + + +'The following GUID is for the ID of the typelib if this project is exposed to COM + + +' 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: +' + + + diff --git a/Centos/My Project/Resources.Designer.vb b/Centos/My Project/Resources.Designer.vb new file mode 100644 index 0000000..988775a --- /dev/null +++ b/Centos/My Project/Resources.Designer.vb @@ -0,0 +1,62 @@ +'------------------------------------------------------------------------------ +' +' 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. +' +'------------------------------------------------------------------------------ + +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. + ''' + ''' A strongly-typed resource class, for looking up localized strings, etc. + ''' + _ + Friend Module Resources + + Private resourceMan As Global.System.Resources.ResourceManager + + Private resourceCulture As Global.System.Globalization.CultureInfo + + ''' + ''' Returns the cached ResourceManager instance used by this class. + ''' + _ + 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("Centos.Resources", GetType(Resources).Assembly) + resourceMan = temp + End If + Return resourceMan + End Get + End Property + + ''' + ''' Overrides the current thread's CurrentUICulture property for all + ''' resource lookups using this strongly typed resource class. + ''' + _ + 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 diff --git a/Centos/My Project/Resources.resx b/Centos/My Project/Resources.resx new file mode 100644 index 0000000..af7dbeb --- /dev/null +++ b/Centos/My Project/Resources.resx @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Centos/My Project/Settings.Designer.vb b/Centos/My Project/Settings.Designer.vb new file mode 100644 index 0000000..8a19bf1 --- /dev/null +++ b/Centos/My Project/Settings.Designer.vb @@ -0,0 +1,73 @@ +'------------------------------------------------------------------------------ +' +' 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. +' +'------------------------------------------------------------------------------ + +Option Strict On +Option Explicit On + + +Namespace My + + _ + 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 + + _ + 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 + + _ + Friend Module MySettingsProperty + + _ + Friend ReadOnly Property Settings() As Global.Centos.My.MySettings + Get + Return Global.Centos.My.MySettings.Default + End Get + End Property + End Module +End Namespace diff --git a/Centos/My Project/Settings.settings b/Centos/My Project/Settings.settings new file mode 100644 index 0000000..85b890b --- /dev/null +++ b/Centos/My Project/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + diff --git a/docker.sln b/docker.sln index 3dc0614..7ad7545 100644 --- a/docker.sln +++ b/docker.sln @@ -11,6 +11,8 @@ Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "Docker", "Docker\Docker.vbp EndProject Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "test", "Docker\test\test.vbproj", "{90F9045B-CF2E-44F1-81E3-0751B08A72E3}" EndProject +Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "Centos", "Centos\Centos.vbproj", "{04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Biodeep_UNIX_x64|Any CPU = Biodeep_UNIX_x64|Any CPU @@ -393,6 +395,114 @@ Global {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 + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Biodeep_UNIX_x64|Any CPU.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Biodeep_UNIX_x64|Any CPU.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Biodeep_UNIX_x64|x64.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Biodeep_UNIX_x64|x64.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Biodeep_UNIX_x64|x86.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Biodeep_UNIX_x64|x86.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Biodeep|Any CPU.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Biodeep|Any CPU.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Biodeep|x64.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Biodeep|x64.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Biodeep|x86.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Biodeep|x86.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Biostack|Any CPU.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Biostack|Any CPU.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Biostack|x64.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Biostack|x64.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Biostack|x86.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Biostack|x86.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Biostack-Debug|Any CPU.ActiveCfg = Debug|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Biostack-Debug|Any CPU.Build.0 = Debug|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Biostack-Debug|x64.ActiveCfg = Debug|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Biostack-Debug|x64.Build.0 = Debug|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Biostack-Debug|x86.ActiveCfg = Debug|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Biostack-Debug|x86.Build.0 = Debug|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Debug|Any CPU.Build.0 = Debug|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Debug|x64.ActiveCfg = Debug|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Debug|x64.Build.0 = Debug|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Debug|x86.ActiveCfg = Debug|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Debug|x86.Build.0 = Debug|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.DEMO|Any CPU.ActiveCfg = Debug|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.DEMO|Any CPU.Build.0 = Debug|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.DEMO|x64.ActiveCfg = Debug|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.DEMO|x64.Build.0 = Debug|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.DEMO|x86.ActiveCfg = Debug|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.DEMO|x86.Build.0 = Debug|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.docs|Any CPU.ActiveCfg = Debug|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.docs|Any CPU.Build.0 = Debug|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.docs|x64.ActiveCfg = Debug|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.docs|x64.Build.0 = Debug|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.docs|x86.ActiveCfg = Debug|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.docs|x86.Build.0 = Debug|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.GCModeller(Release_X64)|Any CPU.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.GCModeller(Release_X64)|Any CPU.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.GCModeller(Release_X64)|x64.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.GCModeller(Release_X64)|x64.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.GCModeller(Release_X64)|x86.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.GCModeller(Release_X64)|x86.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.GCModeller(UNIX-Release_X64)|Any CPU.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.GCModeller(UNIX-Release_X64)|Any CPU.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.GCModeller(UNIX-Release_X64)|x64.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.GCModeller(UNIX-Release_X64)|x64.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.GCModeller(UNIX-Release_X64)|x86.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.GCModeller(UNIX-Release_X64)|x86.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.GTA5-game-test|Any CPU.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.GTA5-game-test|Any CPU.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.GTA5-game-test|x64.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.GTA5-game-test|x64.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.GTA5-game-test|x86.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.GTA5-game-test|x86.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.installer_x64|Any CPU.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.installer_x64|Any CPU.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.installer_x64|x64.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.installer_x64|x64.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.installer_x64|x86.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.installer_x64|x86.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.mysqli_X64_release|Any CPU.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.mysqli_X64_release|Any CPU.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.mysqli_X64_release|x64.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.mysqli_X64_release|x64.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.mysqli_X64_release|x86.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.mysqli_X64_release|x86.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.ProteoWizard.d|Any CPU.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.ProteoWizard.d|Any CPU.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.ProteoWizard.d|x64.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.ProteoWizard.d|x64.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.ProteoWizard.d|x86.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.ProteoWizard.d|x86.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Publish|Any CPU.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Publish|Any CPU.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Publish|x64.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Publish|x64.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Publish|x86.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Publish|x86.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Release|Any CPU.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Release|Any CPU.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Release|x64.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Release|x64.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Release|x86.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Release|x86.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.sciBASIC.NET-test-release|Any CPU.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.sciBASIC.NET-test-release|Any CPU.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.sciBASIC.NET-test-release|x64.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.sciBASIC.NET-test-release|x64.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.sciBASIC.NET-test-release|x86.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.sciBASIC.NET-test-release|x86.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Surveillance-of-infectious-diseases|Any CPU.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Surveillance-of-infectious-diseases|Any CPU.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Surveillance-of-infectious-diseases|x64.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Surveillance-of-infectious-diseases|x64.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Surveillance-of-infectious-diseases|x86.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Surveillance-of-infectious-diseases|x86.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Yilia-Release_x64|Any CPU.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Yilia-Release_x64|Any CPU.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Yilia-Release_x64|x64.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Yilia-Release_x64|x64.Build.0 = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Yilia-Release_x64|x86.ActiveCfg = Release|Any CPU + {04F7D21B-53E8-4107-A5E0-D28E3F70EFDE}.Yilia-Release_x64|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE