build: 프로젝트 폴더명 변경 후 DLL 참조 경로 업데이트

This commit is contained in:
kje97 2025-06-18 09:40:12 +09:00
parent f280a71488
commit b3ec8eb46d
39 changed files with 206 additions and 108 deletions

View File

@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17 # Visual Studio Version 17
VisualStudioVersion = 17.5.33627.172 VisualStudioVersion = 17.5.33627.172
MinimumVisualStudioVersion = 10.0.40219.1 MinimumVisualStudioVersion = 10.0.40219.1
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "ProductFunctionTester", "MAXIMUM_Multy_Function_Tester\ProductFunctionTester.vbproj", "{B80318B5-EC96-4D7F-9C28-1F4A750B9F0E}" Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "ProductFunctionTester", "ProductFunctionTester\ProductFunctionTester.vbproj", "{B80318B5-EC96-4D7F-9C28-1F4A750B9F0E}"
EndProject EndProject
Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "Setup", "Setup\Setup.vdproj", "{8D2C0790-0984-4826-9AC4-1FD4DD220518}" Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "Setup", "Setup\Setup.vdproj", "{8D2C0790-0984-4826-9AC4-1FD4DD220518}"
EndProject EndProject

File diff suppressed because one or more lines are too long

View File

@ -32,7 +32,13 @@ Namespace My
<Global.System.Diagnostics.DebuggerStepThroughAttribute()> _ <Global.System.Diagnostics.DebuggerStepThroughAttribute()> _
Protected Overrides Sub OnCreateMainForm() Protected Overrides Sub OnCreateMainForm()
Me.MainForm = Global.MAXIMUM_Multy_Function_Tester.Main_Form Me.MainForm = Global.ProductFunctionTester.Main_Form
End Sub End Sub
<Global.System.Diagnostics.DebuggerStepThroughAttribute()> _
Protected Overrides Function OnInitialize(ByVal commandLineArgs As System.Collections.ObjectModel.ReadOnlyCollection(Of String)) As Boolean
Me.MinimumSplashScreenDisplayTime = 0
Return MyBase.OnInitialize(commandLineArgs)
End Function
End Class End Class
End Namespace End Namespace

View File

@ -6,6 +6,7 @@
<ShutdownMode>0</ShutdownMode> <ShutdownMode>0</ShutdownMode>
<EnableVisualStyles>true</EnableVisualStyles> <EnableVisualStyles>true</EnableVisualStyles>
<AuthenticationMode>0</AuthenticationMode> <AuthenticationMode>0</AuthenticationMode>
<MinimumSplashScreenDisplayTime>0</MinimumSplashScreenDisplayTime>
<SaveMySettingsOnExit>true</SaveMySettingsOnExit> <SaveMySettingsOnExit>true</SaveMySettingsOnExit>
<HighDpiMpde>false</HighDpiMpde> <HighDpiMode>0</HighDpiMode>
</MyApplicationData> </MyApplicationData>

View File

@ -8,10 +8,10 @@ Imports System.Runtime.InteropServices
' 어셈블리 특성 값을 검토합니다. ' 어셈블리 특성 값을 검토합니다.
<Assembly: AssemblyTitle("MAXIMUM_Multy_Function_Tester")> <Assembly: AssemblyTitle("ProductFunctionTester")>
<Assembly: AssemblyDescription("")> <Assembly: AssemblyDescription("")>
<Assembly: AssemblyCompany("")> <Assembly: AssemblyCompany("")>
<Assembly: AssemblyProduct("MAXIMUM_Multy_Function_Tester")> <Assembly: AssemblyProduct("ProductFunctionTester")>
<Assembly: AssemblyCopyright("Copyright © 2023")> <Assembly: AssemblyCopyright("Copyright © 2023")>
<Assembly: AssemblyTrademark("")> <Assembly: AssemblyTrademark("")>

View File

@ -39,7 +39,7 @@ Namespace My.Resources
Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager
Get Get
If Object.ReferenceEquals(resourceMan, Nothing) Then If Object.ReferenceEquals(resourceMan, Nothing) Then
Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("MAXIMUM_Multy_Function_Tester.Resources", GetType(Resources).Assembly) Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("ProductFunctionTester.Resources", GetType(Resources).Assembly)
resourceMan = temp resourceMan = temp
End If End If
Return resourceMan Return resourceMan

View File

@ -1,10 +1,10 @@
'------------------------------------------------------------------------------ '------------------------------------------------------------------------------
' <auto-generated> ' <auto-generated>
' This code was generated by a tool. ' 코드는 도구를 사용하여 생성되었습니다.
' Runtime Version:4.0.30319.42000 ' 런타임 버전:4.0.30319.42000
' '
' Changes to this file may cause incorrect behavior and will be lost if ' 파일 내용을 변경하면 잘못된 동작이 발생할 있으며, 코드를 다시 생성하면
' the code is regenerated. ' 이러한 변경 내용이 손실됩니다.
' </auto-generated> ' </auto-generated>
'------------------------------------------------------------------------------ '------------------------------------------------------------------------------
@ -14,26 +14,26 @@ Option Explicit On
Namespace My Namespace My
<Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _ <Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0"), _ Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.14.0.0"), _
Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _ Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
Partial Friend NotInheritable Class MySettings Partial Friend NotInheritable Class MySettings
Inherits Global.System.Configuration.ApplicationSettingsBase Inherits Global.System.Configuration.ApplicationSettingsBase
Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings), MySettings) Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings()),MySettings)
#Region "My.Settings Auto-Save Functionality" #Region "My.Settings 자동 저장 기능"
#If _MyType = "WindowsForms" Then #If _MyType = "WindowsForms" Then
Private Shared addedHandler As Boolean Private Shared addedHandler As Boolean
Private Shared addedHandlerLockObject As New Object Private Shared addedHandlerLockObject As New Object
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _ <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) Private Shared Sub AutoSaveSettings(sender As Global.System.Object, e As Global.System.EventArgs)
If My.Application.SaveMySettingsOnExit Then If My.Application.SaveMySettingsOnExit Then
My.Settings.Save() My.Settings.Save()
End If End If
End Sub End Sub
#End If #End If
#End Region #End Region
@ -41,14 +41,14 @@ Namespace My
Get Get
#If _MyType = "WindowsForms" Then #If _MyType = "WindowsForms" Then
If Not addedHandler Then If Not addedHandler Then
SyncLock addedHandlerLockObject SyncLock addedHandlerLockObject
If Not addedHandler Then If Not addedHandler Then
AddHandler My.Application.Shutdown, AddressOf AutoSaveSettings AddHandler My.Application.Shutdown, AddressOf AutoSaveSettings
addedHandler = True addedHandler = True
End If End If
End SyncLock End SyncLock
End If End If
#End If #End If
Return defaultInstance Return defaultInstance
End Get End Get
@ -58,15 +58,15 @@ End Namespace
Namespace My Namespace My
<Global.Microsoft.VisualBasic.HideModuleNameAttribute(), _ <Global.Microsoft.VisualBasic.HideModuleNameAttribute(), _
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _ Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute()> _ Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute()> _
Friend Module MySettingsProperty Friend Module MySettingsProperty
<Global.System.ComponentModel.Design.HelpKeywordAttribute("My.Settings")> _ <Global.System.ComponentModel.Design.HelpKeywordAttribute("My.Settings")> _
Friend ReadOnly Property Settings() As Global.MAXIMUM_Multy_Function_Tester.My.MySettings Friend ReadOnly Property Settings() As Global.ProductFunctionTester.My.MySettings
Get Get
Return Global.MAXIMUM_Multy_Function_Tester.My.MySettings.Default Return Global.ProductFunctionTester.My.MySettings.Default
End Get End Get
End Property End Property
End Module End Module

View File

@ -6,9 +6,9 @@
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{B80318B5-EC96-4D7F-9C28-1F4A750B9F0E}</ProjectGuid> <ProjectGuid>{B80318B5-EC96-4D7F-9C28-1F4A750B9F0E}</ProjectGuid>
<OutputType>WinExe</OutputType> <OutputType>WinExe</OutputType>
<StartupObject>MAXIMUM_Multy_Function_Tester.My.MyApplication</StartupObject> <StartupObject>ProductFunctionTester.My.MyApplication</StartupObject>
<RootNamespace>MAXIMUM_Multy_Function_Tester</RootNamespace> <RootNamespace>ProductFunctionTester</RootNamespace>
<AssemblyName>MAXIMUM_Multy_Function_Tester</AssemblyName> <AssemblyName>ProductFunctionTester</AssemblyName>
<FileAlignment>512</FileAlignment> <FileAlignment>512</FileAlignment>
<MyType>WindowsForms</MyType> <MyType>WindowsForms</MyType>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion> <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
@ -22,7 +22,7 @@
<DefineDebug>true</DefineDebug> <DefineDebug>true</DefineDebug>
<DefineTrace>true</DefineTrace> <DefineTrace>true</DefineTrace>
<OutputPath>bin\Debug\</OutputPath> <OutputPath>bin\Debug\</OutputPath>
<DocumentationFile>MAXIMUM_Multy_Function_Tester.xml</DocumentationFile> <DocumentationFile>ProductFunctionTester.xml</DocumentationFile>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn> <NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
<Prefer32Bit>false</Prefer32Bit> <Prefer32Bit>false</Prefer32Bit>
</PropertyGroup> </PropertyGroup>
@ -33,7 +33,7 @@
<DefineTrace>true</DefineTrace> <DefineTrace>true</DefineTrace>
<Optimize>true</Optimize> <Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath> <OutputPath>bin\Release\</OutputPath>
<DocumentationFile>MAXIMUM_Multy_Function_Tester.xml</DocumentationFile> <DocumentationFile>ProductFunctionTester.xml</DocumentationFile>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn> <NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
</PropertyGroup> </PropertyGroup>
<PropertyGroup> <PropertyGroup>
@ -56,7 +56,7 @@
<DefineDebug>true</DefineDebug> <DefineDebug>true</DefineDebug>
<DefineTrace>true</DefineTrace> <DefineTrace>true</DefineTrace>
<OutputPath>bin\x64\Debug\</OutputPath> <OutputPath>bin\x64\Debug\</OutputPath>
<DocumentationFile>MAXIMUM_Multy_Function_Tester.xml</DocumentationFile> <DocumentationFile>ProductFunctionTester.xml</DocumentationFile>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn> <NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
<DebugType>full</DebugType> <DebugType>full</DebugType>
<PlatformTarget>x64</PlatformTarget> <PlatformTarget>x64</PlatformTarget>
@ -64,7 +64,7 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<DefineTrace>true</DefineTrace> <DefineTrace>true</DefineTrace>
<OutputPath>bin\x64\Release\</OutputPath> <OutputPath>bin\x64\Release\</OutputPath>
<DocumentationFile>MAXIMUM_Multy_Function_Tester.xml</DocumentationFile> <DocumentationFile>ProductFunctionTester.xml</DocumentationFile>
<Optimize>true</Optimize> <Optimize>true</Optimize>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn> <NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
<DebugType>pdbonly</DebugType> <DebugType>pdbonly</DebugType>
@ -76,7 +76,7 @@
<DefineDebug>true</DefineDebug> <DefineDebug>true</DefineDebug>
<DefineTrace>true</DefineTrace> <DefineTrace>true</DefineTrace>
<OutputPath>bin\x86\Debug\</OutputPath> <OutputPath>bin\x86\Debug\</OutputPath>
<DocumentationFile>MAXIMUM_Multy_Function_Tester.xml</DocumentationFile> <DocumentationFile>ProductFunctionTester.xml</DocumentationFile>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn> <NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
<DebugType>full</DebugType> <DebugType>full</DebugType>
<PlatformTarget>x86</PlatformTarget> <PlatformTarget>x86</PlatformTarget>
@ -84,7 +84,7 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'"> <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
<DefineTrace>true</DefineTrace> <DefineTrace>true</DefineTrace>
<OutputPath>bin\x86\Release\</OutputPath> <OutputPath>bin\x86\Release\</OutputPath>
<DocumentationFile>MAXIMUM_Multy_Function_Tester.xml</DocumentationFile> <DocumentationFile>ProductFunctionTester.xml</DocumentationFile>
<Optimize>true</Optimize> <Optimize>true</Optimize>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn> <NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
<DebugType>pdbonly</DebugType> <DebugType>pdbonly</DebugType>
@ -97,6 +97,9 @@
<PropertyGroup> <PropertyGroup>
<GenerateManifests>true</GenerateManifests> <GenerateManifests>true</GenerateManifests>
</PropertyGroup> </PropertyGroup>
<PropertyGroup>
<ApplicationManifest>My Project\app.manifest</ApplicationManifest>
</PropertyGroup>
<ItemGroup> <ItemGroup>
<Reference Include="AForge, Version=2.2.5.0, Culture=neutral, PublicKeyToken=c1db6ff4eaa06aeb, processorArchitecture=MSIL"> <Reference Include="AForge, Version=2.2.5.0, Culture=neutral, PublicKeyToken=c1db6ff4eaa06aeb, processorArchitecture=MSIL">
<HintPath>..\packages\AForge.2.2.5\lib\AForge.dll</HintPath> <HintPath>..\packages\AForge.2.2.5\lib\AForge.dll</HintPath>
@ -131,7 +134,9 @@
<Reference Include="Microsoft.Extensions.Logging.Abstractions, Version=8.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL"> <Reference Include="Microsoft.Extensions.Logging.Abstractions, Version=8.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.Extensions.Logging.Abstractions.8.0.0\lib\net462\Microsoft.Extensions.Logging.Abstractions.dll</HintPath> <HintPath>..\packages\Microsoft.Extensions.Logging.Abstractions.8.0.0\lib\net462\Microsoft.Extensions.Logging.Abstractions.dll</HintPath>
</Reference> </Reference>
<Reference Include="MySql.Data, Version=8.0.20.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL" /> <Reference Include="MySql.Data, Version=8.0.20.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL">
<HintPath>bin\Debug\MySql.Data.dll</HintPath>
</Reference>
<Reference Include="Npgsql, Version=8.0.2.0, Culture=neutral, PublicKeyToken=5d8b90d52f46fda7, processorArchitecture=MSIL"> <Reference Include="Npgsql, Version=8.0.2.0, Culture=neutral, PublicKeyToken=5d8b90d52f46fda7, processorArchitecture=MSIL">
<HintPath>..\packages\Npgsql.8.0.2\lib\netstandard2.0\Npgsql.dll</HintPath> <HintPath>..\packages\Npgsql.8.0.2\lib\netstandard2.0\Npgsql.dll</HintPath>
</Reference> </Reference>

View File

@ -1,20 +1,20 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2"> <asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<assemblyIdentity name="MAXIMUM_Multy_Function_Tester.application" version="1.0.0.0" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="amd64" xmlns="urn:schemas-microsoft-com:asm.v1" /> <assemblyIdentity name="ProductFunctionTester.application" version="1.0.0.0" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="amd64" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="MAXIMUM_Multy_Function_Tester" asmv2:product="MAXIMUM_Multy_Function_Tester" xmlns="urn:schemas-microsoft-com:asm.v1" /> <description asmv2:publisher="ProductFunctionTester" asmv2:product="ProductFunctionTester" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" /> <deployment install="true" />
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2"> <compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
<framework targetVersion="4.8" profile="Full" supportedRuntime="4.0.30319" /> <framework targetVersion="4.8" profile="Full" supportedRuntime="4.0.30319" />
</compatibleFrameworks> </compatibleFrameworks>
<dependency> <dependency>
<dependentAssembly dependencyType="install" codebase="MAXIMUM_Multy_Function_Tester.exe.manifest" size="27449"> <dependentAssembly dependencyType="install" codebase="ProductFunctionTester.exe.manifest" size="27401">
<assemblyIdentity name="MAXIMUM_Multy_Function_Tester.exe" version="1.0.0.0" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="amd64" type="win32" /> <assemblyIdentity name="ProductFunctionTester.exe" version="1.0.0.0" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="amd64" type="win32" />
<hash> <hash>
<dsig:Transforms> <dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms> </dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>pgONuR2b2rtZM9F7x3vwhpscBabwGr9WrpFMaCo6GxQ=</dsig:DigestValue> <dsig:DigestValue>D6m0b2gRwmZwkUogoBGPb82SgDYdKaX07qHDDJYlHnQ=</dsig:DigestValue>
</hash> </hash>
</dependentAssembly> </dependentAssembly>
</dependency> </dependency>

View File

@ -1,11 +1,11 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2"> <asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<asmv1:assemblyIdentity name="MAXIMUM_Multy_Function_Tester.exe" version="1.0.0.0" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="amd64" type="win32" /> <asmv1:assemblyIdentity name="ProductFunctionTester.exe" version="1.0.0.0" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="amd64" type="win32" />
<description asmv2:iconFile="JOMT 아이콘_ICO.ico" xmlns="urn:schemas-microsoft-com:asm.v1" /> <description asmv2:iconFile="JOMT 아이콘_ICO.ico" xmlns="urn:schemas-microsoft-com:asm.v1" />
<application /> <application />
<entryPoint> <entryPoint>
<assemblyIdentity name="MAXIMUM_Multy_Function_Tester" version="1.0.0.0" language="neutral" processorArchitecture="amd64" /> <assemblyIdentity name="ProductFunctionTester" version="1.0.0.0" language="neutral" processorArchitecture="amd64" />
<commandLine file="MAXIMUM_Multy_Function_Tester.exe" parameters="" /> <commandLine file="ProductFunctionTester.exe" parameters="" />
</entryPoint> </entryPoint>
<trustInfo> <trustInfo>
<security> <security>
@ -150,18 +150,6 @@
</hash> </hash>
</dependentAssembly> </dependentAssembly>
</dependency> </dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="MAXIMUM_Multy_Function_Tester.exe" size="766976">
<assemblyIdentity name="MAXIMUM_Multy_Function_Tester" version="1.0.0.0" language="neutral" processorArchitecture="amd64" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>F1vR1bDnrn5olUoDrop34gdRipUbGlw0jhidGf0uERU=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency> <dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="Microsoft.Bcl.AsyncInterfaces.dll" size="26904"> <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="Microsoft.Bcl.AsyncInterfaces.dll" size="26904">
<assemblyIdentity name="Microsoft.Bcl.AsyncInterfaces" version="8.0.0.0" publicKeyToken="CC7B13FFCD2DDD51" language="neutral" processorArchitecture="msil" /> <assemblyIdentity name="Microsoft.Bcl.AsyncInterfaces" version="8.0.0.0" publicKeyToken="CC7B13FFCD2DDD51" language="neutral" processorArchitecture="msil" />
@ -258,6 +246,18 @@
</hash> </hash>
</dependentAssembly> </dependentAssembly>
</dependency> </dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="ProductFunctionTester.exe" size="766976">
<assemblyIdentity name="ProductFunctionTester" version="1.0.0.0" language="neutral" processorArchitecture="amd64" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>Ja8riguH63+n1oz+hr/BZJhWisn13qpihIvXB9lkWpk=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency> <dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="Renci.SshNet.dll" size="422912"> <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="Renci.SshNet.dll" size="422912">
<assemblyIdentity name="Renci.SshNet" version="2016.1.0.0" publicKeyToken="1CEE9F8BDE3DB106" language="neutral" processorArchitecture="msil" /> <assemblyIdentity name="Renci.SshNet" version="2016.1.0.0" publicKeyToken="1CEE9F8BDE3DB106" language="neutral" processorArchitecture="msil" />
@ -447,7 +447,7 @@
<dsig:DigestValue>uBp+cnb2Pw9GbmiC2LTRcyxV8IqaB6C5sFxVfVKI6H4=</dsig:DigestValue> <dsig:DigestValue>uBp+cnb2Pw9GbmiC2LTRcyxV8IqaB6C5sFxVfVKI6H4=</dsig:DigestValue>
</hash> </hash>
</file> </file>
<file name="MAXIMUM_Multy_Function_Tester.exe.config" size="1114"> <file name="ProductFunctionTester.exe.config" size="1114">
<hash> <hash>
<dsig:Transforms> <dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />

View File

@ -2,32 +2,32 @@
<doc> <doc>
<assembly> <assembly>
<name> <name>
MAXIMUM_Multy_Function_Tester ProductFunctionTester
</name> </name>
</assembly> </assembly>
<members> <members>
<member name="T:MAXIMUM_Multy_Function_Tester.My.Resources.Resources"> <member name="T:ProductFunctionTester.My.Resources.Resources">
<summary> <summary>
지역화된 문자열 등을 찾기 위한 강력한 형식의 리소스 클래스입니다. 지역화된 문자열 등을 찾기 위한 강력한 형식의 리소스 클래스입니다.
</summary> </summary>
</member> </member>
<member name="P:MAXIMUM_Multy_Function_Tester.My.Resources.Resources.ResourceManager"> <member name="P:ProductFunctionTester.My.Resources.Resources.ResourceManager">
<summary> <summary>
이 클래스에서 사용하는 캐시된 ResourceManager 인스턴스를 반환합니다. 이 클래스에서 사용하는 캐시된 ResourceManager 인스턴스를 반환합니다.
</summary> </summary>
</member> </member>
<member name="P:MAXIMUM_Multy_Function_Tester.My.Resources.Resources.Culture"> <member name="P:ProductFunctionTester.My.Resources.Resources.Culture">
<summary> <summary>
이 강력한 형식의 리소스 클래스를 사용하여 모든 리소스 조회에 대해 현재 스레드의 CurrentUICulture 속성을 이 강력한 형식의 리소스 클래스를 사용하여 모든 리소스 조회에 대해 현재 스레드의 CurrentUICulture 속성을
재정의합니다. 재정의합니다.
</summary> </summary>
</member> </member>
<member name="P:MAXIMUM_Multy_Function_Tester.My.Resources.Resources.JOMT_아이콘_PNG"> <member name="P:ProductFunctionTester.My.Resources.Resources.JOMT_아이콘_PNG">
<summary> <summary>
System.Drawing.Bitmap 형식의 지역화된 리소스를 찾습니다. System.Drawing.Bitmap 형식의 지역화된 리소스를 찾습니다.
</summary> </summary>
</member> </member>
<member name="M:MAXIMUM_Multy_Function_Tester.Main_Form.EquipSet"> <member name="M:ProductFunctionTester.Main_Form.EquipSet">
Scope Command------------------------------------------------------------------------------------------------------------------------------ Scope Command------------------------------------------------------------------------------------------------------------------------------
</member> </member>
</members> </members>

View File

@ -1,20 +1,20 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2"> <asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<assemblyIdentity name="MAXIMUM_Multy_Function_Tester.application" version="1.0.0.0" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="amd64" xmlns="urn:schemas-microsoft-com:asm.v1" /> <assemblyIdentity name="ProductFunctionTester.application" version="1.0.0.0" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="amd64" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="MAXIMUM_Multy_Function_Tester" asmv2:product="MAXIMUM_Multy_Function_Tester" xmlns="urn:schemas-microsoft-com:asm.v1" /> <description asmv2:publisher="ProductFunctionTester" asmv2:product="ProductFunctionTester" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" /> <deployment install="true" />
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2"> <compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
<framework targetVersion="4.8" profile="Full" supportedRuntime="4.0.30319" /> <framework targetVersion="4.8" profile="Full" supportedRuntime="4.0.30319" />
</compatibleFrameworks> </compatibleFrameworks>
<dependency> <dependency>
<dependentAssembly dependencyType="install" codebase="MAXIMUM_Multy_Function_Tester.exe.manifest" size="27449"> <dependentAssembly dependencyType="install" codebase="ProductFunctionTester.exe.manifest" size="27401">
<assemblyIdentity name="MAXIMUM_Multy_Function_Tester.exe" version="1.0.0.0" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="amd64" type="win32" /> <assemblyIdentity name="ProductFunctionTester.exe" version="1.0.0.0" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="amd64" type="win32" />
<hash> <hash>
<dsig:Transforms> <dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms> </dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>pgONuR2b2rtZM9F7x3vwhpscBabwGr9WrpFMaCo6GxQ=</dsig:DigestValue> <dsig:DigestValue>D6m0b2gRwmZwkUogoBGPb82SgDYdKaX07qHDDJYlHnQ=</dsig:DigestValue>
</hash> </hash>
</dependentAssembly> </dependentAssembly>
</dependency> </dependency>

View File

@ -1,11 +1,11 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2"> <asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<asmv1:assemblyIdentity name="MAXIMUM_Multy_Function_Tester.exe" version="1.0.0.0" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="amd64" type="win32" /> <asmv1:assemblyIdentity name="ProductFunctionTester.exe" version="1.0.0.0" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="amd64" type="win32" />
<description asmv2:iconFile="JOMT 아이콘_ICO.ico" xmlns="urn:schemas-microsoft-com:asm.v1" /> <description asmv2:iconFile="JOMT 아이콘_ICO.ico" xmlns="urn:schemas-microsoft-com:asm.v1" />
<application /> <application />
<entryPoint> <entryPoint>
<assemblyIdentity name="MAXIMUM_Multy_Function_Tester" version="1.0.0.0" language="neutral" processorArchitecture="amd64" /> <assemblyIdentity name="ProductFunctionTester" version="1.0.0.0" language="neutral" processorArchitecture="amd64" />
<commandLine file="MAXIMUM_Multy_Function_Tester.exe" parameters="" /> <commandLine file="ProductFunctionTester.exe" parameters="" />
</entryPoint> </entryPoint>
<trustInfo> <trustInfo>
<security> <security>
@ -150,18 +150,6 @@
</hash> </hash>
</dependentAssembly> </dependentAssembly>
</dependency> </dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="MAXIMUM_Multy_Function_Tester.exe" size="766976">
<assemblyIdentity name="MAXIMUM_Multy_Function_Tester" version="1.0.0.0" language="neutral" processorArchitecture="amd64" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>F1vR1bDnrn5olUoDrop34gdRipUbGlw0jhidGf0uERU=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency> <dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="Microsoft.Bcl.AsyncInterfaces.dll" size="26904"> <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="Microsoft.Bcl.AsyncInterfaces.dll" size="26904">
<assemblyIdentity name="Microsoft.Bcl.AsyncInterfaces" version="8.0.0.0" publicKeyToken="CC7B13FFCD2DDD51" language="neutral" processorArchitecture="msil" /> <assemblyIdentity name="Microsoft.Bcl.AsyncInterfaces" version="8.0.0.0" publicKeyToken="CC7B13FFCD2DDD51" language="neutral" processorArchitecture="msil" />
@ -258,6 +246,18 @@
</hash> </hash>
</dependentAssembly> </dependentAssembly>
</dependency> </dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="ProductFunctionTester.exe" size="766976">
<assemblyIdentity name="ProductFunctionTester" version="1.0.0.0" language="neutral" processorArchitecture="amd64" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>Ja8riguH63+n1oz+hr/BZJhWisn13qpihIvXB9lkWpk=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency> <dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="Renci.SshNet.dll" size="422912"> <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="Renci.SshNet.dll" size="422912">
<assemblyIdentity name="Renci.SshNet" version="2016.1.0.0" publicKeyToken="1CEE9F8BDE3DB106" language="neutral" processorArchitecture="msil" /> <assemblyIdentity name="Renci.SshNet" version="2016.1.0.0" publicKeyToken="1CEE9F8BDE3DB106" language="neutral" processorArchitecture="msil" />
@ -447,7 +447,7 @@
<dsig:DigestValue>uBp+cnb2Pw9GbmiC2LTRcyxV8IqaB6C5sFxVfVKI6H4=</dsig:DigestValue> <dsig:DigestValue>uBp+cnb2Pw9GbmiC2LTRcyxV8IqaB6C5sFxVfVKI6H4=</dsig:DigestValue>
</hash> </hash>
</file> </file>
<file name="MAXIMUM_Multy_Function_Tester.exe.config" size="1114"> <file name="ProductFunctionTester.exe.config" size="1114">
<hash> <hash>
<dsig:Transforms> <dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />

View File

@ -0,0 +1 @@
73cd2e0d30721c469dbfbc420c418728c101ec822d2191d21c7f614cf3ad363a

View File

@ -0,0 +1,76 @@
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\AForge.dll
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\AForge.Video.DirectShow.dll
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\AForge.Video.dll
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\M2Mqtt.Net.dll
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\Microsoft.Bcl.AsyncInterfaces.dll
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\Microsoft.Bcl.HashCode.dll
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\Microsoft.Extensions.DependencyInjection.Abstractions.dll
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\Microsoft.Extensions.Logging.Abstractions.dll
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\Npgsql.dll
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\OpenCvSharp.dll
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\OpenCvSharp.Extensions.dll
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\System.Buffers.dll
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\System.Collections.Immutable.dll
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\System.Diagnostics.DiagnosticSource.dll
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\System.Drawing.Common.dll
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\System.Memory.dll
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\System.Numerics.Vectors.dll
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\System.Runtime.CompilerServices.Unsafe.dll
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\System.Text.Encodings.Web.dll
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\System.Text.Json.dll
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\System.Threading.Channels.dll
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\System.Threading.Tasks.Extensions.dll
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\System.ValueTuple.dll
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\Google.Protobuf.dll
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\Zstandard.Net.dll
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\K4os.Compression.LZ4.Streams.dll
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\BouncyCastle.Crypto.dll
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\Ubiety.Dns.Core.dll
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\Renci.SshNet.dll
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\K4os.Compression.LZ4.dll
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\K4os.Hash.xxHash.dll
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\AForge.xml
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\AForge.Video.xml
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\AForge.Video.DirectShow.xml
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\M2Mqtt.Net.pdb
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\Microsoft.Bcl.AsyncInterfaces.xml
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\Microsoft.Bcl.HashCode.xml
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\Microsoft.Extensions.DependencyInjection.Abstractions.xml
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\Microsoft.Extensions.Logging.Abstractions.xml
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\MySql.Data.xml
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\Npgsql.xml
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\OpenCvSharp.xml
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\OpenCvSharp.Extensions.xml
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\System.Buffers.xml
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\System.Collections.Immutable.xml
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\System.Diagnostics.DiagnosticSource.xml
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\System.Drawing.Common.pdb
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\System.Drawing.Common.xml
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\System.Memory.xml
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\System.Numerics.Vectors.xml
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\System.Runtime.CompilerServices.Unsafe.xml
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\System.Text.Encodings.Web.xml
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\System.Text.Json.xml
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\System.Threading.Channels.xml
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\System.Threading.Tasks.Extensions.xml
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\System.ValueTuple.xml
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\obj\Debug\ProductFunctionTester.vbproj.AssemblyReference.cache
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\obj\Debug\ProductFunctionTester.vbproj.SuggestedBindingRedirects.cache
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\obj\Debug\ProductFunctionTester.vbproj.GenerateResource.cache
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\obj\Debug\ProductFunctionTester.vbproj.CoreCompileInputs.cache
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\obj\Debug\ProductF.7D183518.Up2Date
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\ProductFunctionTester.exe.config
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\ProductFunctionTester.exe.manifest
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\ProductFunctionTester.application
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\ProductFunctionTester.exe
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\ProductFunctionTester.pdb
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\bin\Debug\ProductFunctionTester.xml
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\obj\Debug\ProductFunctionTester.exe.config
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\obj\Debug\ProductFunctionTester.Main_Form.resources
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\obj\Debug\ProductFunctionTester.Resources.resources
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\obj\Debug\ProductFunctionTester.TrustInfo.xml
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\obj\Debug\ProductFunctionTester.exe.manifest
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\obj\Debug\ProductFunctionTester.application
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\obj\Debug\ProductFunctionTester.exe
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\obj\Debug\ProductFunctionTester.xml
C:\Users\JOMT-NOTE-PC\SECUDRIVE DG\08.jjeongni\04.프로그램\prod-ProductFunctionTester\MAXIMUM_Multy_Function_Tester\obj\Debug\ProductFunctionTester.pdb

View File

@ -0,0 +1 @@
8b7d2b499b0f93cd33d50323e6a60df35448322a26f94eb360c981617efeaf2c

View File

@ -2,32 +2,32 @@
<doc> <doc>
<assembly> <assembly>
<name> <name>
MAXIMUM_Multy_Function_Tester ProductFunctionTester
</name> </name>
</assembly> </assembly>
<members> <members>
<member name="T:MAXIMUM_Multy_Function_Tester.My.Resources.Resources"> <member name="T:ProductFunctionTester.My.Resources.Resources">
<summary> <summary>
지역화된 문자열 등을 찾기 위한 강력한 형식의 리소스 클래스입니다. 지역화된 문자열 등을 찾기 위한 강력한 형식의 리소스 클래스입니다.
</summary> </summary>
</member> </member>
<member name="P:MAXIMUM_Multy_Function_Tester.My.Resources.Resources.ResourceManager"> <member name="P:ProductFunctionTester.My.Resources.Resources.ResourceManager">
<summary> <summary>
이 클래스에서 사용하는 캐시된 ResourceManager 인스턴스를 반환합니다. 이 클래스에서 사용하는 캐시된 ResourceManager 인스턴스를 반환합니다.
</summary> </summary>
</member> </member>
<member name="P:MAXIMUM_Multy_Function_Tester.My.Resources.Resources.Culture"> <member name="P:ProductFunctionTester.My.Resources.Resources.Culture">
<summary> <summary>
이 강력한 형식의 리소스 클래스를 사용하여 모든 리소스 조회에 대해 현재 스레드의 CurrentUICulture 속성을 이 강력한 형식의 리소스 클래스를 사용하여 모든 리소스 조회에 대해 현재 스레드의 CurrentUICulture 속성을
재정의합니다. 재정의합니다.
</summary> </summary>
</member> </member>
<member name="P:MAXIMUM_Multy_Function_Tester.My.Resources.Resources.JOMT_아이콘_PNG"> <member name="P:ProductFunctionTester.My.Resources.Resources.JOMT_아이콘_PNG">
<summary> <summary>
System.Drawing.Bitmap 형식의 지역화된 리소스를 찾습니다. System.Drawing.Bitmap 형식의 지역화된 리소스를 찾습니다.
</summary> </summary>
</member> </member>
<member name="M:MAXIMUM_Multy_Function_Tester.Main_Form.EquipSet"> <member name="M:ProductFunctionTester.Main_Form.EquipSet">
Scope Command------------------------------------------------------------------------------------------------------------------------------ Scope Command------------------------------------------------------------------------------------------------------------------------------
</member> </member>
</members> </members>

View File

@ -0,0 +1,7 @@
' <autogenerated/>
Option Strict Off
Option Explicit On
Imports System
Imports System.Reflection
<Assembly: Global.System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName:=".NET Framework 4.8")>