324 changed files with 3338 additions and 45027 deletions
Binary file not shown.
Binary file not shown.
@ -0,0 +1,23 @@ |
|||||
|
{ |
||||
|
"loginAccounts": [ |
||||
|
{ |
||||
|
"id": "su", |
||||
|
"password": "su" |
||||
|
} |
||||
|
], |
||||
|
"makers": [ |
||||
|
"AMO", |
||||
|
"ABC" |
||||
|
], |
||||
|
"models": [ |
||||
|
"MODEL-1" |
||||
|
], |
||||
|
"variant1Values": [], |
||||
|
"variant2Values": [], |
||||
|
"lineValues": [ |
||||
|
"LINE-1" |
||||
|
], |
||||
|
"jigNoValues": [ |
||||
|
"JIG-1" |
||||
|
] |
||||
|
} |
||||
@ -0,0 +1,174 @@ |
|||||
|
using System.IO; |
||||
|
using System.Text.Json; |
||||
|
|
||||
|
namespace Housing.Services; |
||||
|
|
||||
|
public sealed class LoginSelectionOptions |
||||
|
{ |
||||
|
private const string DefaultContent = """
|
||||
|
{ |
||||
|
"loginAccounts": [ |
||||
|
{ |
||||
|
"id": "su", |
||||
|
"password": "su" |
||||
|
} |
||||
|
], |
||||
|
"makers": [ |
||||
|
"AMO", |
||||
|
"ABC" |
||||
|
], |
||||
|
"models": [ |
||||
|
"MODEL-1" |
||||
|
], |
||||
|
"variant1Values": [], |
||||
|
"variant2Values": [], |
||||
|
"lineValues": [ |
||||
|
"LINE-1" |
||||
|
], |
||||
|
"jigNoValues": [ |
||||
|
"JIG-1" |
||||
|
] |
||||
|
} |
||||
|
""";
|
||||
|
|
||||
|
public IReadOnlyList<string> Makers { get; init; } = Array.Empty<string>(); |
||||
|
public IReadOnlyList<string> Models { get; init; } = Array.Empty<string>(); |
||||
|
public IReadOnlyList<string> Variant1Values { get; init; } = Array.Empty<string>(); |
||||
|
public IReadOnlyList<string> Variant2Values { get; init; } = Array.Empty<string>(); |
||||
|
public IReadOnlyList<string> LineValues { get; init; } = Array.Empty<string>(); |
||||
|
public IReadOnlyList<string> JigNoValues { get; init; } = Array.Empty<string>(); |
||||
|
public IReadOnlyList<LoginAccountOption> LoginAccounts { get; init; } = Array.Empty<LoginAccountOption>(); |
||||
|
|
||||
|
public static LoginSelectionOptions Load(string filePath) |
||||
|
{ |
||||
|
EnsureFileExists(filePath); |
||||
|
|
||||
|
try |
||||
|
{ |
||||
|
var json = File.ReadAllText(filePath); |
||||
|
var data = JsonSerializer.Deserialize<LoginSelectionOptionsData>( |
||||
|
json, |
||||
|
new JsonSerializerOptions { PropertyNameCaseInsensitive = true }) ?? new LoginSelectionOptionsData(); |
||||
|
|
||||
|
return new LoginSelectionOptions |
||||
|
{ |
||||
|
LoginAccounts = NormalizeLoginAccounts(data.LoginAccounts), |
||||
|
Makers = NormalizeValues(data.Makers), |
||||
|
Models = NormalizeValues(data.Models), |
||||
|
Variant1Values = NormalizeValues(data.Variant1Values, includeBlank: true), |
||||
|
Variant2Values = NormalizeValues(data.Variant2Values, includeBlank: true), |
||||
|
LineValues = NormalizeValues(data.LineValues), |
||||
|
JigNoValues = NormalizeValues(data.JigNoValues) |
||||
|
}; |
||||
|
} |
||||
|
catch |
||||
|
{ |
||||
|
return new LoginSelectionOptions |
||||
|
{ |
||||
|
Variant1Values = new[] { string.Empty }, |
||||
|
Variant2Values = new[] { string.Empty } |
||||
|
}; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
public static void CreateDefaultFile(string filePath) |
||||
|
{ |
||||
|
var directory = Path.GetDirectoryName(filePath); |
||||
|
if (!string.IsNullOrWhiteSpace(directory)) |
||||
|
{ |
||||
|
Directory.CreateDirectory(directory); |
||||
|
} |
||||
|
|
||||
|
File.WriteAllText(filePath, DefaultContent); |
||||
|
} |
||||
|
|
||||
|
private static void EnsureFileExists(string filePath) |
||||
|
{ |
||||
|
if (File.Exists(filePath)) |
||||
|
{ |
||||
|
return; |
||||
|
} |
||||
|
|
||||
|
CreateDefaultFile(filePath); |
||||
|
} |
||||
|
|
||||
|
private static IReadOnlyList<string> NormalizeValues( |
||||
|
IReadOnlyList<string>? source, |
||||
|
bool includeBlank = false) |
||||
|
{ |
||||
|
var values = new List<string>(); |
||||
|
if (includeBlank) |
||||
|
{ |
||||
|
values.Add(string.Empty); |
||||
|
} |
||||
|
|
||||
|
if (source is null) |
||||
|
{ |
||||
|
return values; |
||||
|
} |
||||
|
|
||||
|
foreach (var rawValue in source) |
||||
|
{ |
||||
|
var value = rawValue.Trim(); |
||||
|
if (string.IsNullOrWhiteSpace(value)) |
||||
|
{ |
||||
|
continue; |
||||
|
} |
||||
|
|
||||
|
if (!values.Any(existing => string.Equals(existing, value, StringComparison.OrdinalIgnoreCase))) |
||||
|
{ |
||||
|
values.Add(value); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
return values; |
||||
|
} |
||||
|
|
||||
|
private static IReadOnlyList<LoginAccountOption> NormalizeLoginAccounts( |
||||
|
IReadOnlyList<LoginAccountOptionData>? source) |
||||
|
{ |
||||
|
if (source is null) |
||||
|
{ |
||||
|
return Array.Empty<LoginAccountOption>(); |
||||
|
} |
||||
|
|
||||
|
var accounts = new List<LoginAccountOption>(); |
||||
|
foreach (var account in source) |
||||
|
{ |
||||
|
var id = account.Id?.Trim() ?? string.Empty; |
||||
|
var password = account.Password ?? string.Empty; |
||||
|
if (string.IsNullOrWhiteSpace(id) || string.IsNullOrWhiteSpace(password)) |
||||
|
{ |
||||
|
continue; |
||||
|
} |
||||
|
|
||||
|
if (accounts.Any(existing => string.Equals(existing.Id, id, StringComparison.OrdinalIgnoreCase))) |
||||
|
{ |
||||
|
continue; |
||||
|
} |
||||
|
|
||||
|
accounts.Add(new LoginAccountOption(id, password)); |
||||
|
} |
||||
|
|
||||
|
return accounts; |
||||
|
} |
||||
|
|
||||
|
private sealed class LoginSelectionOptionsData |
||||
|
{ |
||||
|
public List<LoginAccountOptionData>? LoginAccounts { get; set; } |
||||
|
public List<string>? Makers { get; set; } |
||||
|
public List<string>? Models { get; set; } |
||||
|
public List<string>? Variant1Values { get; set; } |
||||
|
public List<string>? Variant2Values { get; set; } |
||||
|
public List<string>? LineValues { get; set; } |
||||
|
public List<string>? JigNoValues { get; set; } |
||||
|
} |
||||
|
|
||||
|
private sealed class LoginAccountOptionData |
||||
|
{ |
||||
|
public string? Id { get; set; } |
||||
|
public string? Password { get; set; } |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
public sealed record LoginAccountOption(string Id, string Password); |
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,733 @@ |
|||||
|
"DeployProject" |
||||
|
{ |
||||
|
"VSVersion" = "3:800" |
||||
|
"ProjectType" = "8:{978C614F-708E-4E1A-B201-565925725DBA}" |
||||
|
"IsWebType" = "8:FALSE" |
||||
|
"ProjectName" = "8:Setup" |
||||
|
"LanguageId" = "3:1042" |
||||
|
"CodePage" = "3:949" |
||||
|
"UILanguageId" = "3:1042" |
||||
|
"SccProjectName" = "8:" |
||||
|
"SccLocalPath" = "8:" |
||||
|
"SccAuxPath" = "8:" |
||||
|
"SccProvider" = "8:" |
||||
|
"Hierarchy" |
||||
|
{ |
||||
|
"Entry" |
||||
|
{ |
||||
|
"MsmKey" = "8:_B05EA6D34BC647ADBF218BE1B8FCDE4D" |
||||
|
"OwnerKey" = "8:_UNDEFINED" |
||||
|
"MsmSig" = "8:_UNDEFINED" |
||||
|
} |
||||
|
"Entry" |
||||
|
{ |
||||
|
"MsmKey" = "8:_E2F37A4BC6354FB28BFCC9A4786246D0" |
||||
|
"OwnerKey" = "8:_UNDEFINED" |
||||
|
"MsmSig" = "8:_UNDEFINED" |
||||
|
} |
||||
|
} |
||||
|
"Configurations" |
||||
|
{ |
||||
|
"Debug" |
||||
|
{ |
||||
|
"DisplayName" = "8:Debug" |
||||
|
"IsDebugOnly" = "11:TRUE" |
||||
|
"IsReleaseOnly" = "11:FALSE" |
||||
|
"OutputFilename" = "8:Debug\\Setup.msi" |
||||
|
"PackageFilesAs" = "3:2" |
||||
|
"PackageFileSize" = "3:-2147483648" |
||||
|
"CabType" = "3:1" |
||||
|
"Compression" = "3:2" |
||||
|
"SignOutput" = "11:FALSE" |
||||
|
"CertificateFile" = "8:" |
||||
|
"PrivateKeyFile" = "8:" |
||||
|
"TimeStampServer" = "8:" |
||||
|
"InstallerBootstrapper" = "3:2" |
||||
|
} |
||||
|
"Release" |
||||
|
{ |
||||
|
"DisplayName" = "8:Release" |
||||
|
"IsDebugOnly" = "11:FALSE" |
||||
|
"IsReleaseOnly" = "11:TRUE" |
||||
|
"OutputFilename" = "8:Release\\Setup.msi" |
||||
|
"PackageFilesAs" = "3:2" |
||||
|
"PackageFileSize" = "3:-2147483648" |
||||
|
"CabType" = "3:1" |
||||
|
"Compression" = "3:2" |
||||
|
"SignOutput" = "11:FALSE" |
||||
|
"CertificateFile" = "8:" |
||||
|
"PrivateKeyFile" = "8:" |
||||
|
"TimeStampServer" = "8:" |
||||
|
"InstallerBootstrapper" = "3:2" |
||||
|
} |
||||
|
} |
||||
|
"Deployable" |
||||
|
{ |
||||
|
"CustomAction" |
||||
|
{ |
||||
|
} |
||||
|
"DefaultFeature" |
||||
|
{ |
||||
|
"Name" = "8:DefaultFeature" |
||||
|
"Title" = "8:" |
||||
|
"Description" = "8:" |
||||
|
} |
||||
|
"ExternalPersistence" |
||||
|
{ |
||||
|
"LaunchCondition" |
||||
|
{ |
||||
|
"{A06ECF26-33A3-4562-8140-9B0E340D4F24}:_1EA44D4AD7B64DECBEC398188D1A8E86" |
||||
|
{ |
||||
|
"Name" = "8:.NET Core" |
||||
|
"Message" = "8:[VSDNETCOREMSG]" |
||||
|
"AllowLaterVersions" = "11:FALSE" |
||||
|
"InstallUrl" = "8:https://dotnet.microsoft.com/download/dotnet-core/[NetCoreVerMajorDotMinor]" |
||||
|
"IsNETCore" = "11:TRUE" |
||||
|
"Architecture" = "2:0" |
||||
|
"Runtime" = "2:0" |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"File" |
||||
|
{ |
||||
|
"{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E2F37A4BC6354FB28BFCC9A4786246D0" |
||||
|
{ |
||||
|
"SourcePath" = "8:..\\Resources\\Housing_voltage_current_icon_msi_noborder.ico" |
||||
|
"TargetName" = "8:Housing_voltage_current_icon_msi_noborder.ico" |
||||
|
"Tag" = "8:" |
||||
|
"Folder" = "8:_D1B18B734F744E38AAC1B814D1609120" |
||||
|
"Condition" = "8:" |
||||
|
"Transitive" = "11:FALSE" |
||||
|
"Vital" = "11:TRUE" |
||||
|
"ReadOnly" = "11:FALSE" |
||||
|
"Hidden" = "11:FALSE" |
||||
|
"System" = "11:FALSE" |
||||
|
"Permanent" = "11:FALSE" |
||||
|
"SharedLegacy" = "11:FALSE" |
||||
|
"PackageAs" = "3:1" |
||||
|
"Register" = "3:1" |
||||
|
"Exclude" = "11:FALSE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"IsolateTo" = "8:" |
||||
|
} |
||||
|
} |
||||
|
"FileType" |
||||
|
{ |
||||
|
} |
||||
|
"Folder" |
||||
|
{ |
||||
|
"{1525181F-901A-416C-8A58-119130FE478E}:_7AA32E0E3C454FC5AE5D2F20D5E9A9BE" |
||||
|
{ |
||||
|
"Name" = "8:#1919" |
||||
|
"AlwaysCreate" = "11:FALSE" |
||||
|
"Condition" = "8:" |
||||
|
"Transitive" = "11:FALSE" |
||||
|
"Property" = "8:ProgramMenuFolder" |
||||
|
"Folders" |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
"{1525181F-901A-416C-8A58-119130FE478E}:_AB97DCF656734884A73E483FB1F98088" |
||||
|
{ |
||||
|
"Name" = "8:#1916" |
||||
|
"AlwaysCreate" = "11:FALSE" |
||||
|
"Condition" = "8:" |
||||
|
"Transitive" = "11:FALSE" |
||||
|
"Property" = "8:DesktopFolder" |
||||
|
"Folders" |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
"{3C67513D-01DD-4637-8A68-80971EB9504F}:_D1B18B734F744E38AAC1B814D1609120" |
||||
|
{ |
||||
|
"DefaultLocation" = "8:[ProgramFiles64Folder][Manufacturer]\\[ProductName]" |
||||
|
"Name" = "8:#1925" |
||||
|
"AlwaysCreate" = "11:FALSE" |
||||
|
"Condition" = "8:" |
||||
|
"Transitive" = "11:FALSE" |
||||
|
"Property" = "8:TARGETDIR" |
||||
|
"Folders" |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"LaunchCondition" |
||||
|
{ |
||||
|
} |
||||
|
"Locator" |
||||
|
{ |
||||
|
} |
||||
|
"MsiBootstrapper" |
||||
|
{ |
||||
|
"LangId" = "3:1042" |
||||
|
"RequiresElevation" = "11:FALSE" |
||||
|
} |
||||
|
"Product" |
||||
|
{ |
||||
|
"Name" = "8:Microsoft Visual Studio" |
||||
|
"ProductName" = "8:Setup" |
||||
|
"ProductCode" = "8:{59CFE036-FC7A-432D-88B0-DE253B9D4022}" |
||||
|
"PackageCode" = "8:{D60BF56F-7CF2-4A4F-87FE-0BB29FB58ECC}" |
||||
|
"UpgradeCode" = "8:{65BCDEBD-E3E8-40A9-A181-EA41129C1134}" |
||||
|
"AspNetVersion" = "8:" |
||||
|
"RestartWWWService" = "11:FALSE" |
||||
|
"RemovePreviousVersions" = "11:FALSE" |
||||
|
"DetectNewerInstalledVersion" = "11:TRUE" |
||||
|
"InstallAllUsers" = "11:FALSE" |
||||
|
"ProductVersion" = "8:1.0.0" |
||||
|
"Manufacturer" = "8:temp" |
||||
|
"ARPHELPTELEPHONE" = "8:" |
||||
|
"ARPHELPLINK" = "8:" |
||||
|
"Title" = "8:Setup" |
||||
|
"Subject" = "8:" |
||||
|
"ARPCONTACT" = "8:temp" |
||||
|
"Keywords" = "8:" |
||||
|
"ARPCOMMENTS" = "8:" |
||||
|
"ARPURLINFOABOUT" = "8:" |
||||
|
"ARPPRODUCTICON" = "8:" |
||||
|
"ARPIconIndex" = "3:0" |
||||
|
"SearchPath" = "8:" |
||||
|
"UseSystemSearchPath" = "11:TRUE" |
||||
|
"TargetPlatform" = "3:1" |
||||
|
"PreBuildEvent" = "8:" |
||||
|
"PostBuildEvent" = "8:" |
||||
|
"RunPostBuildEvent" = "3:0" |
||||
|
} |
||||
|
"Registry" |
||||
|
{ |
||||
|
"HKLM" |
||||
|
{ |
||||
|
"Keys" |
||||
|
{ |
||||
|
"{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_EE45E62DF5B84D4A93E5255661DB5D0E" |
||||
|
{ |
||||
|
"Name" = "8:Software" |
||||
|
"Condition" = "8:" |
||||
|
"AlwaysCreate" = "11:FALSE" |
||||
|
"DeleteAtUninstall" = "11:FALSE" |
||||
|
"Transitive" = "11:FALSE" |
||||
|
"Keys" |
||||
|
{ |
||||
|
"{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_D4657C5E58B84999857BFBADE1752F69" |
||||
|
{ |
||||
|
"Name" = "8:[Manufacturer]" |
||||
|
"Condition" = "8:" |
||||
|
"AlwaysCreate" = "11:FALSE" |
||||
|
"DeleteAtUninstall" = "11:FALSE" |
||||
|
"Transitive" = "11:FALSE" |
||||
|
"Keys" |
||||
|
{ |
||||
|
} |
||||
|
"Values" |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"Values" |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"HKCU" |
||||
|
{ |
||||
|
"Keys" |
||||
|
{ |
||||
|
"{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_48E03E6D1A3F416BB3747EF1B122433D" |
||||
|
{ |
||||
|
"Name" = "8:Software" |
||||
|
"Condition" = "8:" |
||||
|
"AlwaysCreate" = "11:FALSE" |
||||
|
"DeleteAtUninstall" = "11:FALSE" |
||||
|
"Transitive" = "11:FALSE" |
||||
|
"Keys" |
||||
|
{ |
||||
|
"{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_5F1C850494C2414598950A3C6B9B16B8" |
||||
|
{ |
||||
|
"Name" = "8:[Manufacturer]" |
||||
|
"Condition" = "8:" |
||||
|
"AlwaysCreate" = "11:FALSE" |
||||
|
"DeleteAtUninstall" = "11:FALSE" |
||||
|
"Transitive" = "11:FALSE" |
||||
|
"Keys" |
||||
|
{ |
||||
|
} |
||||
|
"Values" |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"Values" |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"HKCR" |
||||
|
{ |
||||
|
"Keys" |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
"HKU" |
||||
|
{ |
||||
|
"Keys" |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
"HKPU" |
||||
|
{ |
||||
|
"Keys" |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"Sequences" |
||||
|
{ |
||||
|
} |
||||
|
"Shortcut" |
||||
|
{ |
||||
|
"{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_FDF6144C1D234CE7AA0AE2D35F31D2A7" |
||||
|
{ |
||||
|
"Name" = "8:Housing" |
||||
|
"Arguments" = "8:" |
||||
|
"Description" = "8:" |
||||
|
"ShowCmd" = "3:1" |
||||
|
"IconIndex" = "3:0" |
||||
|
"Transitive" = "11:FALSE" |
||||
|
"Target" = "8:_B05EA6D34BC647ADBF218BE1B8FCDE4D" |
||||
|
"Folder" = "8:_AB97DCF656734884A73E483FB1F98088" |
||||
|
"WorkingFolder" = "8:_D1B18B734F744E38AAC1B814D1609120" |
||||
|
"Icon" = "8:_E2F37A4BC6354FB28BFCC9A4786246D0" |
||||
|
"Feature" = "8:" |
||||
|
} |
||||
|
} |
||||
|
"UserInterface" |
||||
|
{ |
||||
|
"{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_2CE267B0AF6D4709AC2464E025F6D332" |
||||
|
{ |
||||
|
"UseDynamicProperties" = "11:FALSE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"SourcePath" = "8:<VsdDialogDir>\\VsdBasicDialogs.wim" |
||||
|
} |
||||
|
"{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_52CE5C290ADF4814A6DC85143B2E6689" |
||||
|
{ |
||||
|
"UseDynamicProperties" = "11:FALSE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"SourcePath" = "8:<VsdDialogDir>\\VsdUserInterface.wim" |
||||
|
} |
||||
|
"{DF760B10-853B-4699-99F2-AFF7185B4A62}:_5627981C096E45A29905FC82514AC401" |
||||
|
{ |
||||
|
"Name" = "8:#1901" |
||||
|
"Sequence" = "3:1" |
||||
|
"Attributes" = "3:2" |
||||
|
"Dialogs" |
||||
|
{ |
||||
|
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_E4E1E3479A6140B19497DA05ACC9EF64" |
||||
|
{ |
||||
|
"Sequence" = "3:100" |
||||
|
"DisplayName" = "8:진행률" |
||||
|
"UseDynamicProperties" = "11:TRUE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"SourcePath" = "8:<VsdDialogDir>\\VsdProgressDlg.wid" |
||||
|
"Properties" |
||||
|
{ |
||||
|
"BannerBitmap" |
||||
|
{ |
||||
|
"Name" = "8:BannerBitmap" |
||||
|
"DisplayName" = "8:#1001" |
||||
|
"Description" = "8:#1101" |
||||
|
"Type" = "3:8" |
||||
|
"ContextData" = "8:Bitmap" |
||||
|
"Attributes" = "3:4" |
||||
|
"Setting" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
"ShowProgress" |
||||
|
{ |
||||
|
"Name" = "8:ShowProgress" |
||||
|
"DisplayName" = "8:#1009" |
||||
|
"Description" = "8:#1109" |
||||
|
"Type" = "3:5" |
||||
|
"ContextData" = "8:1;True=1;False=0" |
||||
|
"Attributes" = "3:0" |
||||
|
"Setting" = "3:0" |
||||
|
"Value" = "3:1" |
||||
|
"DefaultValue" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"{DF760B10-853B-4699-99F2-AFF7185B4A62}:_686E2C35485646398A6B2D9F70EA18ED" |
||||
|
{ |
||||
|
"Name" = "8:#1902" |
||||
|
"Sequence" = "3:1" |
||||
|
"Attributes" = "3:3" |
||||
|
"Dialogs" |
||||
|
{ |
||||
|
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_54A9BE10EBC54476A2F5615C385EB1F2" |
||||
|
{ |
||||
|
"Sequence" = "3:100" |
||||
|
"DisplayName" = "8:마침" |
||||
|
"UseDynamicProperties" = "11:TRUE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"SourcePath" = "8:<VsdDialogDir>\\VsdFinishedDlg.wid" |
||||
|
"Properties" |
||||
|
{ |
||||
|
"BannerBitmap" |
||||
|
{ |
||||
|
"Name" = "8:BannerBitmap" |
||||
|
"DisplayName" = "8:#1001" |
||||
|
"Description" = "8:#1101" |
||||
|
"Type" = "3:8" |
||||
|
"ContextData" = "8:Bitmap" |
||||
|
"Attributes" = "3:4" |
||||
|
"Setting" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
"UpdateText" |
||||
|
{ |
||||
|
"Name" = "8:UpdateText" |
||||
|
"DisplayName" = "8:#1058" |
||||
|
"Description" = "8:#1158" |
||||
|
"Type" = "3:15" |
||||
|
"ContextData" = "8:" |
||||
|
"Attributes" = "3:0" |
||||
|
"Setting" = "3:1" |
||||
|
"Value" = "8:#1258" |
||||
|
"DefaultValue" = "8:#1258" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"{DF760B10-853B-4699-99F2-AFF7185B4A62}:_7EE41D7AF3BA4607BA0E7CACF93E4EC7" |
||||
|
{ |
||||
|
"Name" = "8:#1900" |
||||
|
"Sequence" = "3:2" |
||||
|
"Attributes" = "3:1" |
||||
|
"Dialogs" |
||||
|
{ |
||||
|
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_6FB8A21AAC2E4784989448AA82667ACC" |
||||
|
{ |
||||
|
"Sequence" = "3:100" |
||||
|
"DisplayName" = "8:환영" |
||||
|
"UseDynamicProperties" = "11:TRUE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"SourcePath" = "8:<VsdDialogDir>\\VsdAdminWelcomeDlg.wid" |
||||
|
"Properties" |
||||
|
{ |
||||
|
"BannerBitmap" |
||||
|
{ |
||||
|
"Name" = "8:BannerBitmap" |
||||
|
"DisplayName" = "8:#1001" |
||||
|
"Description" = "8:#1101" |
||||
|
"Type" = "3:8" |
||||
|
"ContextData" = "8:Bitmap" |
||||
|
"Attributes" = "3:4" |
||||
|
"Setting" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
"CopyrightWarning" |
||||
|
{ |
||||
|
"Name" = "8:CopyrightWarning" |
||||
|
"DisplayName" = "8:#1002" |
||||
|
"Description" = "8:#1102" |
||||
|
"Type" = "3:3" |
||||
|
"ContextData" = "8:" |
||||
|
"Attributes" = "3:0" |
||||
|
"Setting" = "3:1" |
||||
|
"Value" = "8:#1202" |
||||
|
"DefaultValue" = "8:#1202" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
"Welcome" |
||||
|
{ |
||||
|
"Name" = "8:Welcome" |
||||
|
"DisplayName" = "8:#1003" |
||||
|
"Description" = "8:#1103" |
||||
|
"Type" = "3:3" |
||||
|
"ContextData" = "8:" |
||||
|
"Attributes" = "3:0" |
||||
|
"Setting" = "3:1" |
||||
|
"Value" = "8:#1203" |
||||
|
"DefaultValue" = "8:#1203" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_73318FE50646462C9CBC5BF7BA540039" |
||||
|
{ |
||||
|
"Sequence" = "3:200" |
||||
|
"DisplayName" = "8:설치 폴더" |
||||
|
"UseDynamicProperties" = "11:TRUE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"SourcePath" = "8:<VsdDialogDir>\\VsdAdminFolderDlg.wid" |
||||
|
"Properties" |
||||
|
{ |
||||
|
"BannerBitmap" |
||||
|
{ |
||||
|
"Name" = "8:BannerBitmap" |
||||
|
"DisplayName" = "8:#1001" |
||||
|
"Description" = "8:#1101" |
||||
|
"Type" = "3:8" |
||||
|
"ContextData" = "8:Bitmap" |
||||
|
"Attributes" = "3:4" |
||||
|
"Setting" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_E99396E69C664EFC946B8ECD2FB6F6F6" |
||||
|
{ |
||||
|
"Sequence" = "3:300" |
||||
|
"DisplayName" = "8:설치 확인" |
||||
|
"UseDynamicProperties" = "11:TRUE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"SourcePath" = "8:<VsdDialogDir>\\VsdAdminConfirmDlg.wid" |
||||
|
"Properties" |
||||
|
{ |
||||
|
"BannerBitmap" |
||||
|
{ |
||||
|
"Name" = "8:BannerBitmap" |
||||
|
"DisplayName" = "8:#1001" |
||||
|
"Description" = "8:#1101" |
||||
|
"Type" = "3:8" |
||||
|
"ContextData" = "8:Bitmap" |
||||
|
"Attributes" = "3:4" |
||||
|
"Setting" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"{DF760B10-853B-4699-99F2-AFF7185B4A62}:_B25DC8F29DE9440FBE4BD4CAA9767FD5" |
||||
|
{ |
||||
|
"Name" = "8:#1901" |
||||
|
"Sequence" = "3:2" |
||||
|
"Attributes" = "3:2" |
||||
|
"Dialogs" |
||||
|
{ |
||||
|
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_9C8888B785AA4761BF124F8606D31E6C" |
||||
|
{ |
||||
|
"Sequence" = "3:100" |
||||
|
"DisplayName" = "8:진행률" |
||||
|
"UseDynamicProperties" = "11:TRUE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"SourcePath" = "8:<VsdDialogDir>\\VsdAdminProgressDlg.wid" |
||||
|
"Properties" |
||||
|
{ |
||||
|
"BannerBitmap" |
||||
|
{ |
||||
|
"Name" = "8:BannerBitmap" |
||||
|
"DisplayName" = "8:#1001" |
||||
|
"Description" = "8:#1101" |
||||
|
"Type" = "3:8" |
||||
|
"ContextData" = "8:Bitmap" |
||||
|
"Attributes" = "3:4" |
||||
|
"Setting" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
"ShowProgress" |
||||
|
{ |
||||
|
"Name" = "8:ShowProgress" |
||||
|
"DisplayName" = "8:#1009" |
||||
|
"Description" = "8:#1109" |
||||
|
"Type" = "3:5" |
||||
|
"ContextData" = "8:1;True=1;False=0" |
||||
|
"Attributes" = "3:0" |
||||
|
"Setting" = "3:0" |
||||
|
"Value" = "3:1" |
||||
|
"DefaultValue" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"{DF760B10-853B-4699-99F2-AFF7185B4A62}:_D0A972F52A4A4DE8933FA8538FA5DC4B" |
||||
|
{ |
||||
|
"Name" = "8:#1902" |
||||
|
"Sequence" = "3:2" |
||||
|
"Attributes" = "3:3" |
||||
|
"Dialogs" |
||||
|
{ |
||||
|
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_1C340B9D1004471B925E3D52F341771A" |
||||
|
{ |
||||
|
"Sequence" = "3:100" |
||||
|
"DisplayName" = "8:마침" |
||||
|
"UseDynamicProperties" = "11:TRUE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"SourcePath" = "8:<VsdDialogDir>\\VsdAdminFinishedDlg.wid" |
||||
|
"Properties" |
||||
|
{ |
||||
|
"BannerBitmap" |
||||
|
{ |
||||
|
"Name" = "8:BannerBitmap" |
||||
|
"DisplayName" = "8:#1001" |
||||
|
"Description" = "8:#1101" |
||||
|
"Type" = "3:8" |
||||
|
"ContextData" = "8:Bitmap" |
||||
|
"Attributes" = "3:4" |
||||
|
"Setting" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"{DF760B10-853B-4699-99F2-AFF7185B4A62}:_EC390C86553A4343B0B40839C1787ED1" |
||||
|
{ |
||||
|
"Name" = "8:#1900" |
||||
|
"Sequence" = "3:1" |
||||
|
"Attributes" = "3:1" |
||||
|
"Dialogs" |
||||
|
{ |
||||
|
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_038130C95F4C4D1E9488A9C607D2CCE0" |
||||
|
{ |
||||
|
"Sequence" = "3:300" |
||||
|
"DisplayName" = "8:설치 확인" |
||||
|
"UseDynamicProperties" = "11:TRUE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"SourcePath" = "8:<VsdDialogDir>\\VsdConfirmDlg.wid" |
||||
|
"Properties" |
||||
|
{ |
||||
|
"BannerBitmap" |
||||
|
{ |
||||
|
"Name" = "8:BannerBitmap" |
||||
|
"DisplayName" = "8:#1001" |
||||
|
"Description" = "8:#1101" |
||||
|
"Type" = "3:8" |
||||
|
"ContextData" = "8:Bitmap" |
||||
|
"Attributes" = "3:4" |
||||
|
"Setting" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_266A6388DE9E414892BAFF9C9D7BFB0E" |
||||
|
{ |
||||
|
"Sequence" = "3:200" |
||||
|
"DisplayName" = "8:설치 폴더" |
||||
|
"UseDynamicProperties" = "11:TRUE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"SourcePath" = "8:<VsdDialogDir>\\VsdFolderDlg.wid" |
||||
|
"Properties" |
||||
|
{ |
||||
|
"BannerBitmap" |
||||
|
{ |
||||
|
"Name" = "8:BannerBitmap" |
||||
|
"DisplayName" = "8:#1001" |
||||
|
"Description" = "8:#1101" |
||||
|
"Type" = "3:8" |
||||
|
"ContextData" = "8:Bitmap" |
||||
|
"Attributes" = "3:4" |
||||
|
"Setting" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
"InstallAllUsersVisible" |
||||
|
{ |
||||
|
"Name" = "8:InstallAllUsersVisible" |
||||
|
"DisplayName" = "8:#1059" |
||||
|
"Description" = "8:#1159" |
||||
|
"Type" = "3:5" |
||||
|
"ContextData" = "8:1;True=1;False=0" |
||||
|
"Attributes" = "3:0" |
||||
|
"Setting" = "3:0" |
||||
|
"Value" = "3:1" |
||||
|
"DefaultValue" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_F33F56913EA4489584DD5B4324093F32" |
||||
|
{ |
||||
|
"Sequence" = "3:100" |
||||
|
"DisplayName" = "8:환영" |
||||
|
"UseDynamicProperties" = "11:TRUE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"SourcePath" = "8:<VsdDialogDir>\\VsdWelcomeDlg.wid" |
||||
|
"Properties" |
||||
|
{ |
||||
|
"BannerBitmap" |
||||
|
{ |
||||
|
"Name" = "8:BannerBitmap" |
||||
|
"DisplayName" = "8:#1001" |
||||
|
"Description" = "8:#1101" |
||||
|
"Type" = "3:8" |
||||
|
"ContextData" = "8:Bitmap" |
||||
|
"Attributes" = "3:4" |
||||
|
"Setting" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
"CopyrightWarning" |
||||
|
{ |
||||
|
"Name" = "8:CopyrightWarning" |
||||
|
"DisplayName" = "8:#1002" |
||||
|
"Description" = "8:#1102" |
||||
|
"Type" = "3:3" |
||||
|
"ContextData" = "8:" |
||||
|
"Attributes" = "3:0" |
||||
|
"Setting" = "3:1" |
||||
|
"Value" = "8:#1202" |
||||
|
"DefaultValue" = "8:#1202" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
"Welcome" |
||||
|
{ |
||||
|
"Name" = "8:Welcome" |
||||
|
"DisplayName" = "8:#1003" |
||||
|
"Description" = "8:#1103" |
||||
|
"Type" = "3:3" |
||||
|
"ContextData" = "8:" |
||||
|
"Attributes" = "3:0" |
||||
|
"Setting" = "3:1" |
||||
|
"Value" = "8:#1203" |
||||
|
"DefaultValue" = "8:#1203" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"MergeModule" |
||||
|
{ |
||||
|
} |
||||
|
"ProjectOutput" |
||||
|
{ |
||||
|
"{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_B05EA6D34BC647ADBF218BE1B8FCDE4D" |
||||
|
{ |
||||
|
"SourcePath" = "8:..\\obj\\Release\\net9.0-windows\\apphost.exe" |
||||
|
"TargetName" = "8:" |
||||
|
"Tag" = "8:" |
||||
|
"Folder" = "8:_D1B18B734F744E38AAC1B814D1609120" |
||||
|
"Condition" = "8:" |
||||
|
"Transitive" = "11:FALSE" |
||||
|
"Vital" = "11:TRUE" |
||||
|
"ReadOnly" = "11:FALSE" |
||||
|
"Hidden" = "11:FALSE" |
||||
|
"System" = "11:FALSE" |
||||
|
"Permanent" = "11:FALSE" |
||||
|
"SharedLegacy" = "11:FALSE" |
||||
|
"PackageAs" = "3:1" |
||||
|
"Register" = "3:1" |
||||
|
"Exclude" = "11:FALSE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"IsolateTo" = "8:" |
||||
|
"ProjectOutputGroupRegister" = "3:1" |
||||
|
"OutputConfiguration" = "8:" |
||||
|
"OutputGroupCanonicalName" = "8:PublishItemsOutputGroup" |
||||
|
"OutputProjectGuid" = "8:{7364A567-F115-4ACE-9207-C6FDEEF0A394}" |
||||
|
"ShowKeyOutput" = "11:TRUE" |
||||
|
"ExcludeFilters" |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
Binary file not shown.
Binary file not shown.
@ -0,0 +1,749 @@ |
|||||
|
"DeployProject" |
||||
|
{ |
||||
|
"VSVersion" = "3:800" |
||||
|
"ProjectType" = "8:{978C614F-708E-4E1A-B201-565925725DBA}" |
||||
|
"IsWebType" = "8:FALSE" |
||||
|
"ProjectName" = "8:Setup0" |
||||
|
"LanguageId" = "3:1042" |
||||
|
"CodePage" = "3:949" |
||||
|
"UILanguageId" = "3:1042" |
||||
|
"SccProjectName" = "8:" |
||||
|
"SccLocalPath" = "8:" |
||||
|
"SccAuxPath" = "8:" |
||||
|
"SccProvider" = "8:" |
||||
|
"Hierarchy" |
||||
|
{ |
||||
|
"Entry" |
||||
|
{ |
||||
|
"MsmKey" = "8:_0356B9E189FC48958DB6A71E03326AF3" |
||||
|
"OwnerKey" = "8:_UNDEFINED" |
||||
|
"MsmSig" = "8:_UNDEFINED" |
||||
|
} |
||||
|
"Entry" |
||||
|
{ |
||||
|
"MsmKey" = "8:_8F52211F237449009A75530A338B4CB0" |
||||
|
"OwnerKey" = "8:_UNDEFINED" |
||||
|
"MsmSig" = "8:_UNDEFINED" |
||||
|
} |
||||
|
} |
||||
|
"Configurations" |
||||
|
{ |
||||
|
"Debug" |
||||
|
{ |
||||
|
"DisplayName" = "8:Debug" |
||||
|
"IsDebugOnly" = "11:TRUE" |
||||
|
"IsReleaseOnly" = "11:FALSE" |
||||
|
"OutputFilename" = "8:Debug\\Setup0.msi" |
||||
|
"PackageFilesAs" = "3:2" |
||||
|
"PackageFileSize" = "3:-2147483648" |
||||
|
"CabType" = "3:1" |
||||
|
"Compression" = "3:2" |
||||
|
"SignOutput" = "11:FALSE" |
||||
|
"CertificateFile" = "8:" |
||||
|
"PrivateKeyFile" = "8:" |
||||
|
"TimeStampServer" = "8:" |
||||
|
"InstallerBootstrapper" = "3:2" |
||||
|
} |
||||
|
"Release" |
||||
|
{ |
||||
|
"DisplayName" = "8:Release" |
||||
|
"IsDebugOnly" = "11:FALSE" |
||||
|
"IsReleaseOnly" = "11:TRUE" |
||||
|
"OutputFilename" = "8:Release\\Setup0.msi" |
||||
|
"PackageFilesAs" = "3:2" |
||||
|
"PackageFileSize" = "3:-2147483648" |
||||
|
"CabType" = "3:1" |
||||
|
"Compression" = "3:2" |
||||
|
"SignOutput" = "11:FALSE" |
||||
|
"CertificateFile" = "8:" |
||||
|
"PrivateKeyFile" = "8:" |
||||
|
"TimeStampServer" = "8:" |
||||
|
"InstallerBootstrapper" = "3:2" |
||||
|
"BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" |
||||
|
{ |
||||
|
"Enabled" = "11:TRUE" |
||||
|
"PromptEnabled" = "11:TRUE" |
||||
|
"PrerequisitesLocation" = "2:1" |
||||
|
"Url" = "8:" |
||||
|
"ComponentsUrl" = "8:" |
||||
|
"Items" |
||||
|
{ |
||||
|
"{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:Microsoft.NetCore.DesktopRuntime.9.0.x64" |
||||
|
{ |
||||
|
"Name" = "8:.NET 데스크톱 런타임 9.0.17 (x64)" |
||||
|
"ProductCode" = "8:Microsoft.NetCore.DesktopRuntime.9.0.x64" |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"Deployable" |
||||
|
{ |
||||
|
"CustomAction" |
||||
|
{ |
||||
|
} |
||||
|
"DefaultFeature" |
||||
|
{ |
||||
|
"Name" = "8:DefaultFeature" |
||||
|
"Title" = "8:" |
||||
|
"Description" = "8:" |
||||
|
} |
||||
|
"ExternalPersistence" |
||||
|
{ |
||||
|
"LaunchCondition" |
||||
|
{ |
||||
|
"{A06ECF26-33A3-4562-8140-9B0E340D4F24}:_F3D35B98B3DB4A58B0692C9FD539F0A0" |
||||
|
{ |
||||
|
"Name" = "8:.NET Core" |
||||
|
"Message" = "8:[VSDNETCOREMSG]" |
||||
|
"AllowLaterVersions" = "11:FALSE" |
||||
|
"InstallUrl" = "8:https://dotnet.microsoft.com/download/dotnet-core/[NetCoreVerMajorDotMinor]" |
||||
|
"IsNETCore" = "11:TRUE" |
||||
|
"Architecture" = "2:0" |
||||
|
"Runtime" = "2:0" |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"File" |
||||
|
{ |
||||
|
"{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_8F52211F237449009A75530A338B4CB0" |
||||
|
{ |
||||
|
"SourcePath" = "8:..\\Resources\\Housing_voltage_current_icon_msi_noborder.ico" |
||||
|
"TargetName" = "8:Housing_voltage_current_icon_msi_noborder.ico" |
||||
|
"Tag" = "8:" |
||||
|
"Folder" = "8:_013D33A454C9466FB82296324DBB53B8" |
||||
|
"Condition" = "8:" |
||||
|
"Transitive" = "11:FALSE" |
||||
|
"Vital" = "11:TRUE" |
||||
|
"ReadOnly" = "11:FALSE" |
||||
|
"Hidden" = "11:FALSE" |
||||
|
"System" = "11:FALSE" |
||||
|
"Permanent" = "11:FALSE" |
||||
|
"SharedLegacy" = "11:FALSE" |
||||
|
"PackageAs" = "3:1" |
||||
|
"Register" = "3:1" |
||||
|
"Exclude" = "11:FALSE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"IsolateTo" = "8:" |
||||
|
} |
||||
|
} |
||||
|
"FileType" |
||||
|
{ |
||||
|
} |
||||
|
"Folder" |
||||
|
{ |
||||
|
"{3C67513D-01DD-4637-8A68-80971EB9504F}:_013D33A454C9466FB82296324DBB53B8" |
||||
|
{ |
||||
|
"DefaultLocation" = "8:[ProgramFiles64Folder][Manufacturer]\\[ProductName]" |
||||
|
"Name" = "8:#1925" |
||||
|
"AlwaysCreate" = "11:FALSE" |
||||
|
"Condition" = "8:" |
||||
|
"Transitive" = "11:FALSE" |
||||
|
"Property" = "8:TARGETDIR" |
||||
|
"Folders" |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
"{1525181F-901A-416C-8A58-119130FE478E}:_091DD05DD8644FA1BA44E2300981BE58" |
||||
|
{ |
||||
|
"Name" = "8:#1916" |
||||
|
"AlwaysCreate" = "11:FALSE" |
||||
|
"Condition" = "8:" |
||||
|
"Transitive" = "11:FALSE" |
||||
|
"Property" = "8:DesktopFolder" |
||||
|
"Folders" |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
"{1525181F-901A-416C-8A58-119130FE478E}:_26C078B1B70540838549456AC7CE8155" |
||||
|
{ |
||||
|
"Name" = "8:#1919" |
||||
|
"AlwaysCreate" = "11:FALSE" |
||||
|
"Condition" = "8:" |
||||
|
"Transitive" = "11:FALSE" |
||||
|
"Property" = "8:ProgramMenuFolder" |
||||
|
"Folders" |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"LaunchCondition" |
||||
|
{ |
||||
|
} |
||||
|
"Locator" |
||||
|
{ |
||||
|
} |
||||
|
"MsiBootstrapper" |
||||
|
{ |
||||
|
"LangId" = "3:1042" |
||||
|
"RequiresElevation" = "11:FALSE" |
||||
|
} |
||||
|
"Product" |
||||
|
{ |
||||
|
"Name" = "8:Microsoft Visual Studio" |
||||
|
"ProductName" = "8:Setup0" |
||||
|
"ProductCode" = "8:{60609614-BCCD-43FB-8C48-9BADBB63C426}" |
||||
|
"PackageCode" = "8:{9ACA7875-C1EC-4578-9613-C3CD9D21F360}" |
||||
|
"UpgradeCode" = "8:{64F83A71-ED9B-404A-A410-ED7575DA0155}" |
||||
|
"AspNetVersion" = "8:" |
||||
|
"RestartWWWService" = "11:FALSE" |
||||
|
"RemovePreviousVersions" = "11:FALSE" |
||||
|
"DetectNewerInstalledVersion" = "11:TRUE" |
||||
|
"InstallAllUsers" = "11:FALSE" |
||||
|
"ProductVersion" = "8:1.0.0" |
||||
|
"Manufacturer" = "8:temp" |
||||
|
"ARPHELPTELEPHONE" = "8:" |
||||
|
"ARPHELPLINK" = "8:" |
||||
|
"Title" = "8:Setup0" |
||||
|
"Subject" = "8:" |
||||
|
"ARPCONTACT" = "8:temp" |
||||
|
"Keywords" = "8:" |
||||
|
"ARPCOMMENTS" = "8:" |
||||
|
"ARPURLINFOABOUT" = "8:" |
||||
|
"ARPPRODUCTICON" = "8:" |
||||
|
"ARPIconIndex" = "3:0" |
||||
|
"SearchPath" = "8:" |
||||
|
"UseSystemSearchPath" = "11:TRUE" |
||||
|
"TargetPlatform" = "3:1" |
||||
|
"PreBuildEvent" = "8:" |
||||
|
"PostBuildEvent" = "8:" |
||||
|
"RunPostBuildEvent" = "3:0" |
||||
|
} |
||||
|
"Registry" |
||||
|
{ |
||||
|
"HKLM" |
||||
|
{ |
||||
|
"Keys" |
||||
|
{ |
||||
|
"{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_9A0354E9A602418DA91297D6BFB3D8D0" |
||||
|
{ |
||||
|
"Name" = "8:Software" |
||||
|
"Condition" = "8:" |
||||
|
"AlwaysCreate" = "11:FALSE" |
||||
|
"DeleteAtUninstall" = "11:FALSE" |
||||
|
"Transitive" = "11:FALSE" |
||||
|
"Keys" |
||||
|
{ |
||||
|
"{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_BABE07CCC9A14A4BBDB2F14725E75E61" |
||||
|
{ |
||||
|
"Name" = "8:[Manufacturer]" |
||||
|
"Condition" = "8:" |
||||
|
"AlwaysCreate" = "11:FALSE" |
||||
|
"DeleteAtUninstall" = "11:FALSE" |
||||
|
"Transitive" = "11:FALSE" |
||||
|
"Keys" |
||||
|
{ |
||||
|
} |
||||
|
"Values" |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"Values" |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"HKCU" |
||||
|
{ |
||||
|
"Keys" |
||||
|
{ |
||||
|
"{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_897CD2C4666B40DCB3D8DFBA883F0BC1" |
||||
|
{ |
||||
|
"Name" = "8:Software" |
||||
|
"Condition" = "8:" |
||||
|
"AlwaysCreate" = "11:FALSE" |
||||
|
"DeleteAtUninstall" = "11:FALSE" |
||||
|
"Transitive" = "11:FALSE" |
||||
|
"Keys" |
||||
|
{ |
||||
|
"{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_72C979E796D84C5BA33B45B041079E6F" |
||||
|
{ |
||||
|
"Name" = "8:[Manufacturer]" |
||||
|
"Condition" = "8:" |
||||
|
"AlwaysCreate" = "11:FALSE" |
||||
|
"DeleteAtUninstall" = "11:FALSE" |
||||
|
"Transitive" = "11:FALSE" |
||||
|
"Keys" |
||||
|
{ |
||||
|
} |
||||
|
"Values" |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"Values" |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"HKCR" |
||||
|
{ |
||||
|
"Keys" |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
"HKU" |
||||
|
{ |
||||
|
"Keys" |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
"HKPU" |
||||
|
{ |
||||
|
"Keys" |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"Sequences" |
||||
|
{ |
||||
|
} |
||||
|
"Shortcut" |
||||
|
{ |
||||
|
"{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_54B2F4640F744238B5D2D06E339EC3EB" |
||||
|
{ |
||||
|
"Name" = "8:Housing" |
||||
|
"Arguments" = "8:" |
||||
|
"Description" = "8:" |
||||
|
"ShowCmd" = "3:1" |
||||
|
"IconIndex" = "3:0" |
||||
|
"Transitive" = "11:FALSE" |
||||
|
"Target" = "8:_0356B9E189FC48958DB6A71E03326AF3" |
||||
|
"Folder" = "8:_091DD05DD8644FA1BA44E2300981BE58" |
||||
|
"WorkingFolder" = "8:_013D33A454C9466FB82296324DBB53B8" |
||||
|
"Icon" = "8:_8F52211F237449009A75530A338B4CB0" |
||||
|
"Feature" = "8:" |
||||
|
} |
||||
|
} |
||||
|
"UserInterface" |
||||
|
{ |
||||
|
"{DF760B10-853B-4699-99F2-AFF7185B4A62}:_0128DBAB7D05422D8ADED2AF3F04D398" |
||||
|
{ |
||||
|
"Name" = "8:#1902" |
||||
|
"Sequence" = "3:1" |
||||
|
"Attributes" = "3:3" |
||||
|
"Dialogs" |
||||
|
{ |
||||
|
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_234C4C12660940C6904E8B89E89C6F27" |
||||
|
{ |
||||
|
"Sequence" = "3:100" |
||||
|
"DisplayName" = "8:마침" |
||||
|
"UseDynamicProperties" = "11:TRUE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"SourcePath" = "8:<VsdDialogDir>\\VsdFinishedDlg.wid" |
||||
|
"Properties" |
||||
|
{ |
||||
|
"BannerBitmap" |
||||
|
{ |
||||
|
"Name" = "8:BannerBitmap" |
||||
|
"DisplayName" = "8:#1001" |
||||
|
"Description" = "8:#1101" |
||||
|
"Type" = "3:8" |
||||
|
"ContextData" = "8:Bitmap" |
||||
|
"Attributes" = "3:4" |
||||
|
"Setting" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
"UpdateText" |
||||
|
{ |
||||
|
"Name" = "8:UpdateText" |
||||
|
"DisplayName" = "8:#1058" |
||||
|
"Description" = "8:#1158" |
||||
|
"Type" = "3:15" |
||||
|
"ContextData" = "8:" |
||||
|
"Attributes" = "3:0" |
||||
|
"Setting" = "3:1" |
||||
|
"Value" = "8:#1258" |
||||
|
"DefaultValue" = "8:#1258" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_1E77A9D2BDDB4160B20D8C8F3379900D" |
||||
|
{ |
||||
|
"UseDynamicProperties" = "11:FALSE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"SourcePath" = "8:<VsdDialogDir>\\VsdBasicDialogs.wim" |
||||
|
} |
||||
|
"{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_202D3DE4863D450BA52E86E13E7489C8" |
||||
|
{ |
||||
|
"UseDynamicProperties" = "11:FALSE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"SourcePath" = "8:<VsdDialogDir>\\VsdUserInterface.wim" |
||||
|
} |
||||
|
"{DF760B10-853B-4699-99F2-AFF7185B4A62}:_7E1B5B42BB494FA39690EED72E5308FA" |
||||
|
{ |
||||
|
"Name" = "8:#1901" |
||||
|
"Sequence" = "3:2" |
||||
|
"Attributes" = "3:2" |
||||
|
"Dialogs" |
||||
|
{ |
||||
|
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_73B6C02C18AF41B7AE9F84F6FF55EF62" |
||||
|
{ |
||||
|
"Sequence" = "3:100" |
||||
|
"DisplayName" = "8:진행률" |
||||
|
"UseDynamicProperties" = "11:TRUE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"SourcePath" = "8:<VsdDialogDir>\\VsdAdminProgressDlg.wid" |
||||
|
"Properties" |
||||
|
{ |
||||
|
"BannerBitmap" |
||||
|
{ |
||||
|
"Name" = "8:BannerBitmap" |
||||
|
"DisplayName" = "8:#1001" |
||||
|
"Description" = "8:#1101" |
||||
|
"Type" = "3:8" |
||||
|
"ContextData" = "8:Bitmap" |
||||
|
"Attributes" = "3:4" |
||||
|
"Setting" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
"ShowProgress" |
||||
|
{ |
||||
|
"Name" = "8:ShowProgress" |
||||
|
"DisplayName" = "8:#1009" |
||||
|
"Description" = "8:#1109" |
||||
|
"Type" = "3:5" |
||||
|
"ContextData" = "8:1;True=1;False=0" |
||||
|
"Attributes" = "3:0" |
||||
|
"Setting" = "3:0" |
||||
|
"Value" = "3:1" |
||||
|
"DefaultValue" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"{DF760B10-853B-4699-99F2-AFF7185B4A62}:_961C63DE87ED4BC9BC2FF5BE3F2E7B16" |
||||
|
{ |
||||
|
"Name" = "8:#1900" |
||||
|
"Sequence" = "3:2" |
||||
|
"Attributes" = "3:1" |
||||
|
"Dialogs" |
||||
|
{ |
||||
|
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_019C3C3AA22C4232B19B01973DBE521B" |
||||
|
{ |
||||
|
"Sequence" = "3:200" |
||||
|
"DisplayName" = "8:설치 폴더" |
||||
|
"UseDynamicProperties" = "11:TRUE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"SourcePath" = "8:<VsdDialogDir>\\VsdAdminFolderDlg.wid" |
||||
|
"Properties" |
||||
|
{ |
||||
|
"BannerBitmap" |
||||
|
{ |
||||
|
"Name" = "8:BannerBitmap" |
||||
|
"DisplayName" = "8:#1001" |
||||
|
"Description" = "8:#1101" |
||||
|
"Type" = "3:8" |
||||
|
"ContextData" = "8:Bitmap" |
||||
|
"Attributes" = "3:4" |
||||
|
"Setting" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_5FC09D47977C4B109E34E99901A5E102" |
||||
|
{ |
||||
|
"Sequence" = "3:300" |
||||
|
"DisplayName" = "8:설치 확인" |
||||
|
"UseDynamicProperties" = "11:TRUE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"SourcePath" = "8:<VsdDialogDir>\\VsdAdminConfirmDlg.wid" |
||||
|
"Properties" |
||||
|
{ |
||||
|
"BannerBitmap" |
||||
|
{ |
||||
|
"Name" = "8:BannerBitmap" |
||||
|
"DisplayName" = "8:#1001" |
||||
|
"Description" = "8:#1101" |
||||
|
"Type" = "3:8" |
||||
|
"ContextData" = "8:Bitmap" |
||||
|
"Attributes" = "3:4" |
||||
|
"Setting" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_D2B56A8FA8B448DF958CF92ABC704EDB" |
||||
|
{ |
||||
|
"Sequence" = "3:100" |
||||
|
"DisplayName" = "8:환영" |
||||
|
"UseDynamicProperties" = "11:TRUE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"SourcePath" = "8:<VsdDialogDir>\\VsdAdminWelcomeDlg.wid" |
||||
|
"Properties" |
||||
|
{ |
||||
|
"BannerBitmap" |
||||
|
{ |
||||
|
"Name" = "8:BannerBitmap" |
||||
|
"DisplayName" = "8:#1001" |
||||
|
"Description" = "8:#1101" |
||||
|
"Type" = "3:8" |
||||
|
"ContextData" = "8:Bitmap" |
||||
|
"Attributes" = "3:4" |
||||
|
"Setting" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
"CopyrightWarning" |
||||
|
{ |
||||
|
"Name" = "8:CopyrightWarning" |
||||
|
"DisplayName" = "8:#1002" |
||||
|
"Description" = "8:#1102" |
||||
|
"Type" = "3:3" |
||||
|
"ContextData" = "8:" |
||||
|
"Attributes" = "3:0" |
||||
|
"Setting" = "3:1" |
||||
|
"Value" = "8:#1202" |
||||
|
"DefaultValue" = "8:#1202" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
"Welcome" |
||||
|
{ |
||||
|
"Name" = "8:Welcome" |
||||
|
"DisplayName" = "8:#1003" |
||||
|
"Description" = "8:#1103" |
||||
|
"Type" = "3:3" |
||||
|
"ContextData" = "8:" |
||||
|
"Attributes" = "3:0" |
||||
|
"Setting" = "3:1" |
||||
|
"Value" = "8:#1203" |
||||
|
"DefaultValue" = "8:#1203" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"{DF760B10-853B-4699-99F2-AFF7185B4A62}:_9979D02AD45042B5B2D7B4D208732090" |
||||
|
{ |
||||
|
"Name" = "8:#1902" |
||||
|
"Sequence" = "3:2" |
||||
|
"Attributes" = "3:3" |
||||
|
"Dialogs" |
||||
|
{ |
||||
|
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_8EE4502C484C47AAA4F99A3A6830C628" |
||||
|
{ |
||||
|
"Sequence" = "3:100" |
||||
|
"DisplayName" = "8:마침" |
||||
|
"UseDynamicProperties" = "11:TRUE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"SourcePath" = "8:<VsdDialogDir>\\VsdAdminFinishedDlg.wid" |
||||
|
"Properties" |
||||
|
{ |
||||
|
"BannerBitmap" |
||||
|
{ |
||||
|
"Name" = "8:BannerBitmap" |
||||
|
"DisplayName" = "8:#1001" |
||||
|
"Description" = "8:#1101" |
||||
|
"Type" = "3:8" |
||||
|
"ContextData" = "8:Bitmap" |
||||
|
"Attributes" = "3:4" |
||||
|
"Setting" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"{DF760B10-853B-4699-99F2-AFF7185B4A62}:_C4D7376B12CD45D28C400452A3092C02" |
||||
|
{ |
||||
|
"Name" = "8:#1901" |
||||
|
"Sequence" = "3:1" |
||||
|
"Attributes" = "3:2" |
||||
|
"Dialogs" |
||||
|
{ |
||||
|
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_FECE2B90E23A420494E6AAD73A4EF9CD" |
||||
|
{ |
||||
|
"Sequence" = "3:100" |
||||
|
"DisplayName" = "8:진행률" |
||||
|
"UseDynamicProperties" = "11:TRUE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"SourcePath" = "8:<VsdDialogDir>\\VsdProgressDlg.wid" |
||||
|
"Properties" |
||||
|
{ |
||||
|
"BannerBitmap" |
||||
|
{ |
||||
|
"Name" = "8:BannerBitmap" |
||||
|
"DisplayName" = "8:#1001" |
||||
|
"Description" = "8:#1101" |
||||
|
"Type" = "3:8" |
||||
|
"ContextData" = "8:Bitmap" |
||||
|
"Attributes" = "3:4" |
||||
|
"Setting" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
"ShowProgress" |
||||
|
{ |
||||
|
"Name" = "8:ShowProgress" |
||||
|
"DisplayName" = "8:#1009" |
||||
|
"Description" = "8:#1109" |
||||
|
"Type" = "3:5" |
||||
|
"ContextData" = "8:1;True=1;False=0" |
||||
|
"Attributes" = "3:0" |
||||
|
"Setting" = "3:0" |
||||
|
"Value" = "3:1" |
||||
|
"DefaultValue" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"{DF760B10-853B-4699-99F2-AFF7185B4A62}:_F0FBD58D6604406DB74448C1F830B940" |
||||
|
{ |
||||
|
"Name" = "8:#1900" |
||||
|
"Sequence" = "3:1" |
||||
|
"Attributes" = "3:1" |
||||
|
"Dialogs" |
||||
|
{ |
||||
|
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_1701D9ADDAC9447D812C1E8C7E2F568B" |
||||
|
{ |
||||
|
"Sequence" = "3:200" |
||||
|
"DisplayName" = "8:설치 폴더" |
||||
|
"UseDynamicProperties" = "11:TRUE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"SourcePath" = "8:<VsdDialogDir>\\VsdFolderDlg.wid" |
||||
|
"Properties" |
||||
|
{ |
||||
|
"BannerBitmap" |
||||
|
{ |
||||
|
"Name" = "8:BannerBitmap" |
||||
|
"DisplayName" = "8:#1001" |
||||
|
"Description" = "8:#1101" |
||||
|
"Type" = "3:8" |
||||
|
"ContextData" = "8:Bitmap" |
||||
|
"Attributes" = "3:4" |
||||
|
"Setting" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
"InstallAllUsersVisible" |
||||
|
{ |
||||
|
"Name" = "8:InstallAllUsersVisible" |
||||
|
"DisplayName" = "8:#1059" |
||||
|
"Description" = "8:#1159" |
||||
|
"Type" = "3:5" |
||||
|
"ContextData" = "8:1;True=1;False=0" |
||||
|
"Attributes" = "3:0" |
||||
|
"Setting" = "3:0" |
||||
|
"Value" = "3:1" |
||||
|
"DefaultValue" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_1D5A294B9EBC472EA8B0C7E760914B72" |
||||
|
{ |
||||
|
"Sequence" = "3:300" |
||||
|
"DisplayName" = "8:설치 확인" |
||||
|
"UseDynamicProperties" = "11:TRUE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"SourcePath" = "8:<VsdDialogDir>\\VsdConfirmDlg.wid" |
||||
|
"Properties" |
||||
|
{ |
||||
|
"BannerBitmap" |
||||
|
{ |
||||
|
"Name" = "8:BannerBitmap" |
||||
|
"DisplayName" = "8:#1001" |
||||
|
"Description" = "8:#1101" |
||||
|
"Type" = "3:8" |
||||
|
"ContextData" = "8:Bitmap" |
||||
|
"Attributes" = "3:4" |
||||
|
"Setting" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_A9E745FEFEEC46868D6B0D2776C20697" |
||||
|
{ |
||||
|
"Sequence" = "3:100" |
||||
|
"DisplayName" = "8:환영" |
||||
|
"UseDynamicProperties" = "11:TRUE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"SourcePath" = "8:<VsdDialogDir>\\VsdWelcomeDlg.wid" |
||||
|
"Properties" |
||||
|
{ |
||||
|
"BannerBitmap" |
||||
|
{ |
||||
|
"Name" = "8:BannerBitmap" |
||||
|
"DisplayName" = "8:#1001" |
||||
|
"Description" = "8:#1101" |
||||
|
"Type" = "3:8" |
||||
|
"ContextData" = "8:Bitmap" |
||||
|
"Attributes" = "3:4" |
||||
|
"Setting" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
"CopyrightWarning" |
||||
|
{ |
||||
|
"Name" = "8:CopyrightWarning" |
||||
|
"DisplayName" = "8:#1002" |
||||
|
"Description" = "8:#1102" |
||||
|
"Type" = "3:3" |
||||
|
"ContextData" = "8:" |
||||
|
"Attributes" = "3:0" |
||||
|
"Setting" = "3:1" |
||||
|
"Value" = "8:#1202" |
||||
|
"DefaultValue" = "8:#1202" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
"Welcome" |
||||
|
{ |
||||
|
"Name" = "8:Welcome" |
||||
|
"DisplayName" = "8:#1003" |
||||
|
"Description" = "8:#1103" |
||||
|
"Type" = "3:3" |
||||
|
"ContextData" = "8:" |
||||
|
"Attributes" = "3:0" |
||||
|
"Setting" = "3:1" |
||||
|
"Value" = "8:#1203" |
||||
|
"DefaultValue" = "8:#1203" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"MergeModule" |
||||
|
{ |
||||
|
} |
||||
|
"ProjectOutput" |
||||
|
{ |
||||
|
"{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_0356B9E189FC48958DB6A71E03326AF3" |
||||
|
{ |
||||
|
"SourcePath" = "8:..\\obj\\Release\\net9.0-windows\\apphost.exe" |
||||
|
"TargetName" = "8:" |
||||
|
"Tag" = "8:" |
||||
|
"Folder" = "8:_013D33A454C9466FB82296324DBB53B8" |
||||
|
"Condition" = "8:" |
||||
|
"Transitive" = "11:FALSE" |
||||
|
"Vital" = "11:TRUE" |
||||
|
"ReadOnly" = "11:FALSE" |
||||
|
"Hidden" = "11:FALSE" |
||||
|
"System" = "11:FALSE" |
||||
|
"Permanent" = "11:FALSE" |
||||
|
"SharedLegacy" = "11:FALSE" |
||||
|
"PackageAs" = "3:1" |
||||
|
"Register" = "3:1" |
||||
|
"Exclude" = "11:FALSE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"IsolateTo" = "8:" |
||||
|
"ProjectOutputGroupRegister" = "3:1" |
||||
|
"OutputConfiguration" = "8:" |
||||
|
"OutputGroupCanonicalName" = "8:PublishItemsOutputGroup" |
||||
|
"OutputProjectGuid" = "8:{7364A567-F115-4ACE-9207-C6FDEEF0A394}" |
||||
|
"ShowKeyOutput" = "11:TRUE" |
||||
|
"ExcludeFilters" |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
@ -1,71 +0,0 @@ |
|||||
|
|
||||
잘못된 프로젝트 |
|
||||
|
|
||||
사용법: |
|
||||
devenv [solutionfile | projectfile | folder | anyfile.ext] [switches] |
|
||||
|
|
||||
devenv의 첫 번째 인수는 일반적으로 솔루션 파일, 프로젝트 파일 또는 폴더입니다. |
|
||||
다음을 사용할 수도 있습니다. 다른 파일이 자동으로 열리게 하려면 해당 파일을 첫째 인수로 |
|
||||
사용할 수도 있습니다. 프로젝트 파일을 입력하면 IDE에서 |
|
||||
프로젝트 파일의 부모 디렉터리에서 프로젝트 파일과 |
|
||||
기본 이름이 같은 .sln 파일을 찾습니다. 그러한 .sln 파일이 없으면 |
|
||||
IDE는 프로젝트를 참조하는 단일 .sln 파일을 찾습니다. |
|
||||
단일 .sln 파일도 없으면 IDE는 프로젝트 파일과 기본 이름이 같은 기본 .sln |
|
||||
파일 이름을 사용하여 저장되지 않은 솔루션을 만듭니다. |
|
||||
|
|
||||
명령줄 빌드: |
|
||||
devenv solutionfile.sln /build [ solutionconfig ] [ /project projectnameorfile [ /projectconfig name ] ] |
|
||||
사용 가능한 명령줄 스위치: |
|
||||
|
|
||||
/Build 지정한 솔루션 구성으로 솔루션이나 프로젝트를 |
|
||||
빌드합니다. "Debug"를 예로 들 수 있습니다. 여러 플랫폼을 |
|
||||
사용할 수 있으면 구성 이름에 플랫폼 이름을 명시하고 |
|
||||
따옴표로 묶어야 합니다(예: "Debug|Win32"). |
|
||||
/Clean 빌드 출력을 삭제합니다. |
|
||||
/Command IDE를 시작하고 명령을 실행합니다. |
|
||||
/Deploy 지정한 빌드 구성을 빌드하여 배포합니다. |
|
||||
/DoNotLoadProjects 모든 프로젝트를 로드하지 않고 지정된 솔루션을 엽니다. |
|
||||
/Edit 이 애플리케이션의 실행 중인 인스턴스에서 지정한 파일을 엽니다. |
|
||||
실행 중인 인스턴스가 없으면 단순화된 창 레이아웃을 사용하여 |
|
||||
새 인스턴스를 시작합니다. |
|
||||
/LCID IDE에서 UI에 대한 기본 언어를 설정합니다. |
|
||||
/Log 문제 해결을 위해 IDE 동작을 지정한 파일에 기록합니다. |
|
||||
/NoVSIP VSIP 테스트용 VSIP 개발자 라이선스 키를 사용할 수 없게 합니다. |
|
||||
/Out 빌드 로그를 지정한 파일에 추가합니다. |
|
||||
/Project 빌드, 정리 또는 배포할 프로젝트를 지정합니다. |
|
||||
/Build, /Rebuild, /Clean 또는 /Deploy와 함께 사용해야 합니다. |
|
||||
/ProjectConfig 솔루션 구성에 지정된 프로젝트 구성을 |
|
||||
재정의합니다. "Debug"를 예로 들 수 있습니다. 여러 플랫폼을 |
|
||||
사용할 수 있으면 구성 이름에 플랫폼 이름을 명시하고 |
|
||||
따옴표로 묶어야 합니다(예: "Debug|Win32"). |
|
||||
/Project와 함께 사용해야 합니다. |
|
||||
/Rebuild 지정한 구성으로 솔루션이나 프로젝트를 |
|
||||
정리하고 빌드합니다. |
|
||||
/ResetSettings IDE의 기본 설정을 복원합니다. 필요한 경우 사용자가 지정한 |
|
||||
VSSettings 파일로 다시 설정할 수 있습니다. |
|
||||
/ResetSkipPkgs VSPackages에 추가된 모든 SkipLoading 태그를 지웁니다. |
|
||||
/Run 지정한 솔루션을 컴파일하고 실행합니다. |
|
||||
/RunExit 지정한 솔루션을 컴파일하고 실행한 다음, IDE를 닫습니다. |
|
||||
/SafeMode 최소 창을 로드하는 안전 모드에서 IDE를 시작합니다. |
|
||||
/Upgrade 프로젝트 또는 솔루션과 그 안에 포함된 모든 프로젝트를 업그레이드합니다. |
|
||||
이러한 파일의 백업은 적절히 만들어집니다. |
|
||||
백업 프로세스에 대한 자세한 내용은 'Visual Studio 변환 마법사' |
|
||||
도움말을 참조하세요. |
|
||||
|
|
||||
제품별 스위치: |
|
||||
|
|
||||
/debugexe 지정한 실행 파일을 디버깅하도록 엽니다. 명령줄의 나머지 |
|
||||
가 이 실행 파일에 인수로 전달됩니다. |
|
||||
/diff 두 파일을 비교합니다. 4개의 매개 변수 사용: |
|
||||
SourceFile, TargetFile, SourceDisplayName(선택 사항), |
|
||||
TargetDisplayName(선택 사항) |
|
||||
/TfsLink 팀 탐색기를 열고 입력한 아티팩트 URI에 대해 |
|
||||
뷰어를 시작합니다(등록된 경우). |
|
||||
|
|
||||
명령줄에서 디버거를 연결하려면 다음 명령을 사용하세요. |
|
||||
VsJITDebugger.exe -p <pid> |
|
||||
|
|
||||
오후 8:47에 빌드를 시작함... |
|
||||
========== 빌드: 0 성공 또는 최신 버전, 0 실패, 0 건너뛰기 ========== |
|
||||
========== 빌드이(가) 오후 8:47에 완료되었으며, 00.059 초이(가) 걸림 ========== |
|
||||
|
|
||||
Binary file not shown.
Binary file not shown.
@ -0,0 +1,723 @@ |
|||||
|
"DeployProject" |
||||
|
{ |
||||
|
"VSVersion" = "3:800" |
||||
|
"ProjectType" = "8:{978C614F-708E-4E1A-B201-565925725DBA}" |
||||
|
"IsWebType" = "8:FALSE" |
||||
|
"ProjectName" = "8:Setup2" |
||||
|
"LanguageId" = "3:1042" |
||||
|
"CodePage" = "3:949" |
||||
|
"UILanguageId" = "3:1042" |
||||
|
"SccProjectName" = "8:" |
||||
|
"SccLocalPath" = "8:" |
||||
|
"SccAuxPath" = "8:" |
||||
|
"SccProvider" = "8:" |
||||
|
"Hierarchy" |
||||
|
{ |
||||
|
"Entry" |
||||
|
{ |
||||
|
"MsmKey" = "8:_02533EBA1FAC4DEB9B107EA61601BC14" |
||||
|
"OwnerKey" = "8:_UNDEFINED" |
||||
|
"MsmSig" = "8:_UNDEFINED" |
||||
|
} |
||||
|
"Entry" |
||||
|
{ |
||||
|
"MsmKey" = "8:_D1BD1D2B7BD645FEAEE6F42B6F9A36DB" |
||||
|
"OwnerKey" = "8:_UNDEFINED" |
||||
|
"MsmSig" = "8:_UNDEFINED" |
||||
|
} |
||||
|
} |
||||
|
"Configurations" |
||||
|
{ |
||||
|
"Debug" |
||||
|
{ |
||||
|
"DisplayName" = "8:Debug" |
||||
|
"IsDebugOnly" = "11:TRUE" |
||||
|
"IsReleaseOnly" = "11:FALSE" |
||||
|
"OutputFilename" = "8:Debug\\Setup2.msi" |
||||
|
"PackageFilesAs" = "3:2" |
||||
|
"PackageFileSize" = "3:-2147483648" |
||||
|
"CabType" = "3:1" |
||||
|
"Compression" = "3:2" |
||||
|
"SignOutput" = "11:FALSE" |
||||
|
"CertificateFile" = "8:" |
||||
|
"PrivateKeyFile" = "8:" |
||||
|
"TimeStampServer" = "8:" |
||||
|
"InstallerBootstrapper" = "3:2" |
||||
|
} |
||||
|
"Release" |
||||
|
{ |
||||
|
"DisplayName" = "8:Release" |
||||
|
"IsDebugOnly" = "11:FALSE" |
||||
|
"IsReleaseOnly" = "11:TRUE" |
||||
|
"OutputFilename" = "8:Release\\Setup2.msi" |
||||
|
"PackageFilesAs" = "3:2" |
||||
|
"PackageFileSize" = "3:-2147483648" |
||||
|
"CabType" = "3:1" |
||||
|
"Compression" = "3:2" |
||||
|
"SignOutput" = "11:FALSE" |
||||
|
"CertificateFile" = "8:" |
||||
|
"PrivateKeyFile" = "8:" |
||||
|
"TimeStampServer" = "8:" |
||||
|
"InstallerBootstrapper" = "3:2" |
||||
|
} |
||||
|
} |
||||
|
"Deployable" |
||||
|
{ |
||||
|
"CustomAction" |
||||
|
{ |
||||
|
} |
||||
|
"DefaultFeature" |
||||
|
{ |
||||
|
"Name" = "8:DefaultFeature" |
||||
|
"Title" = "8:" |
||||
|
"Description" = "8:" |
||||
|
} |
||||
|
"ExternalPersistence" |
||||
|
{ |
||||
|
"LaunchCondition" |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
"File" |
||||
|
{ |
||||
|
"{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D1BD1D2B7BD645FEAEE6F42B6F9A36DB" |
||||
|
{ |
||||
|
"SourcePath" = "8:..\\Resources\\Housing_voltage_current_icon_msi_noborder.ico" |
||||
|
"TargetName" = "8:Housing_voltage_current_icon_msi_noborder.ico" |
||||
|
"Tag" = "8:" |
||||
|
"Folder" = "8:_F82D7765A32648BAB39C4326E85541B0" |
||||
|
"Condition" = "8:" |
||||
|
"Transitive" = "11:FALSE" |
||||
|
"Vital" = "11:TRUE" |
||||
|
"ReadOnly" = "11:FALSE" |
||||
|
"Hidden" = "11:FALSE" |
||||
|
"System" = "11:FALSE" |
||||
|
"Permanent" = "11:FALSE" |
||||
|
"SharedLegacy" = "11:FALSE" |
||||
|
"PackageAs" = "3:1" |
||||
|
"Register" = "3:1" |
||||
|
"Exclude" = "11:FALSE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"IsolateTo" = "8:" |
||||
|
} |
||||
|
} |
||||
|
"FileType" |
||||
|
{ |
||||
|
} |
||||
|
"Folder" |
||||
|
{ |
||||
|
"{1525181F-901A-416C-8A58-119130FE478E}:_6EAA3B0EDA49429A95C308384DD1F375" |
||||
|
{ |
||||
|
"Name" = "8:#1919" |
||||
|
"AlwaysCreate" = "11:FALSE" |
||||
|
"Condition" = "8:" |
||||
|
"Transitive" = "11:FALSE" |
||||
|
"Property" = "8:ProgramMenuFolder" |
||||
|
"Folders" |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
"{1525181F-901A-416C-8A58-119130FE478E}:_AEB95872DEDB4E87900A8932BA2CE852" |
||||
|
{ |
||||
|
"Name" = "8:#1916" |
||||
|
"AlwaysCreate" = "11:FALSE" |
||||
|
"Condition" = "8:" |
||||
|
"Transitive" = "11:FALSE" |
||||
|
"Property" = "8:DesktopFolder" |
||||
|
"Folders" |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
"{3C67513D-01DD-4637-8A68-80971EB9504F}:_F82D7765A32648BAB39C4326E85541B0" |
||||
|
{ |
||||
|
"DefaultLocation" = "8:[ProgramFilesFolder][Manufacturer]\\[ProductName]" |
||||
|
"Name" = "8:#1925" |
||||
|
"AlwaysCreate" = "11:FALSE" |
||||
|
"Condition" = "8:" |
||||
|
"Transitive" = "11:FALSE" |
||||
|
"Property" = "8:TARGETDIR" |
||||
|
"Folders" |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"LaunchCondition" |
||||
|
{ |
||||
|
} |
||||
|
"Locator" |
||||
|
{ |
||||
|
} |
||||
|
"MsiBootstrapper" |
||||
|
{ |
||||
|
"LangId" = "3:1042" |
||||
|
"RequiresElevation" = "11:FALSE" |
||||
|
} |
||||
|
"Product" |
||||
|
{ |
||||
|
"Name" = "8:Microsoft Visual Studio" |
||||
|
"ProductName" = "8:Setup2" |
||||
|
"ProductCode" = "8:{15C4FC7E-976D-4684-80EA-8E2140B9A859}" |
||||
|
"PackageCode" = "8:{5299D5E8-DDAD-4326-B37F-53B18D5A8F07}" |
||||
|
"UpgradeCode" = "8:{147A3BAE-A279-4BA7-BE9F-83CC41CAA202}" |
||||
|
"AspNetVersion" = "8:" |
||||
|
"RestartWWWService" = "11:FALSE" |
||||
|
"RemovePreviousVersions" = "11:FALSE" |
||||
|
"DetectNewerInstalledVersion" = "11:TRUE" |
||||
|
"InstallAllUsers" = "11:FALSE" |
||||
|
"ProductVersion" = "8:1.0.0" |
||||
|
"Manufacturer" = "8:temp" |
||||
|
"ARPHELPTELEPHONE" = "8:" |
||||
|
"ARPHELPLINK" = "8:" |
||||
|
"Title" = "8:Setup2" |
||||
|
"Subject" = "8:" |
||||
|
"ARPCONTACT" = "8:temp" |
||||
|
"Keywords" = "8:" |
||||
|
"ARPCOMMENTS" = "8:" |
||||
|
"ARPURLINFOABOUT" = "8:" |
||||
|
"ARPPRODUCTICON" = "8:" |
||||
|
"ARPIconIndex" = "3:0" |
||||
|
"SearchPath" = "8:" |
||||
|
"UseSystemSearchPath" = "11:TRUE" |
||||
|
"TargetPlatform" = "3:0" |
||||
|
"PreBuildEvent" = "8:" |
||||
|
"PostBuildEvent" = "8:" |
||||
|
"RunPostBuildEvent" = "3:0" |
||||
|
} |
||||
|
"Registry" |
||||
|
{ |
||||
|
"HKLM" |
||||
|
{ |
||||
|
"Keys" |
||||
|
{ |
||||
|
"{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_650F554768E54370AD8CAD83DA943E23" |
||||
|
{ |
||||
|
"Name" = "8:Software" |
||||
|
"Condition" = "8:" |
||||
|
"AlwaysCreate" = "11:FALSE" |
||||
|
"DeleteAtUninstall" = "11:FALSE" |
||||
|
"Transitive" = "11:FALSE" |
||||
|
"Keys" |
||||
|
{ |
||||
|
"{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_F45EC95F67EE4456B770CCC67971D294" |
||||
|
{ |
||||
|
"Name" = "8:[Manufacturer]" |
||||
|
"Condition" = "8:" |
||||
|
"AlwaysCreate" = "11:FALSE" |
||||
|
"DeleteAtUninstall" = "11:FALSE" |
||||
|
"Transitive" = "11:FALSE" |
||||
|
"Keys" |
||||
|
{ |
||||
|
} |
||||
|
"Values" |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"Values" |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"HKCU" |
||||
|
{ |
||||
|
"Keys" |
||||
|
{ |
||||
|
"{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_F219A7BE6D6D465CAED0DDA58901D72A" |
||||
|
{ |
||||
|
"Name" = "8:Software" |
||||
|
"Condition" = "8:" |
||||
|
"AlwaysCreate" = "11:FALSE" |
||||
|
"DeleteAtUninstall" = "11:FALSE" |
||||
|
"Transitive" = "11:FALSE" |
||||
|
"Keys" |
||||
|
{ |
||||
|
"{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_98E9B206313243DDB32D4B046B00658A" |
||||
|
{ |
||||
|
"Name" = "8:[Manufacturer]" |
||||
|
"Condition" = "8:" |
||||
|
"AlwaysCreate" = "11:FALSE" |
||||
|
"DeleteAtUninstall" = "11:FALSE" |
||||
|
"Transitive" = "11:FALSE" |
||||
|
"Keys" |
||||
|
{ |
||||
|
} |
||||
|
"Values" |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"Values" |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"HKCR" |
||||
|
{ |
||||
|
"Keys" |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
"HKU" |
||||
|
{ |
||||
|
"Keys" |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
"HKPU" |
||||
|
{ |
||||
|
"Keys" |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"Sequences" |
||||
|
{ |
||||
|
} |
||||
|
"Shortcut" |
||||
|
{ |
||||
|
"{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_CB68EC0F73A042A385D52F688E6162D7" |
||||
|
{ |
||||
|
"Name" = "8:Housing" |
||||
|
"Arguments" = "8:" |
||||
|
"Description" = "8:" |
||||
|
"ShowCmd" = "3:1" |
||||
|
"IconIndex" = "3:0" |
||||
|
"Transitive" = "11:FALSE" |
||||
|
"Target" = "8:_02533EBA1FAC4DEB9B107EA61601BC14" |
||||
|
"Folder" = "8:_AEB95872DEDB4E87900A8932BA2CE852" |
||||
|
"WorkingFolder" = "8:_F82D7765A32648BAB39C4326E85541B0" |
||||
|
"Icon" = "8:_D1BD1D2B7BD645FEAEE6F42B6F9A36DB" |
||||
|
"Feature" = "8:" |
||||
|
} |
||||
|
} |
||||
|
"UserInterface" |
||||
|
{ |
||||
|
"{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_0B308C5E38B142E587684AEB482014EC" |
||||
|
{ |
||||
|
"UseDynamicProperties" = "11:FALSE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"SourcePath" = "8:<VsdDialogDir>\\VsdBasicDialogs.wim" |
||||
|
} |
||||
|
"{DF760B10-853B-4699-99F2-AFF7185B4A62}:_14A4EC7EA7D342C3BC6831E78BD4E435" |
||||
|
{ |
||||
|
"Name" = "8:#1900" |
||||
|
"Sequence" = "3:1" |
||||
|
"Attributes" = "3:1" |
||||
|
"Dialogs" |
||||
|
{ |
||||
|
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_34E38E05FECA465998D5B6F665639996" |
||||
|
{ |
||||
|
"Sequence" = "3:200" |
||||
|
"DisplayName" = "8:설치 폴더" |
||||
|
"UseDynamicProperties" = "11:TRUE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"SourcePath" = "8:<VsdDialogDir>\\VsdFolderDlg.wid" |
||||
|
"Properties" |
||||
|
{ |
||||
|
"BannerBitmap" |
||||
|
{ |
||||
|
"Name" = "8:BannerBitmap" |
||||
|
"DisplayName" = "8:#1001" |
||||
|
"Description" = "8:#1101" |
||||
|
"Type" = "3:8" |
||||
|
"ContextData" = "8:Bitmap" |
||||
|
"Attributes" = "3:4" |
||||
|
"Setting" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
"InstallAllUsersVisible" |
||||
|
{ |
||||
|
"Name" = "8:InstallAllUsersVisible" |
||||
|
"DisplayName" = "8:#1059" |
||||
|
"Description" = "8:#1159" |
||||
|
"Type" = "3:5" |
||||
|
"ContextData" = "8:1;True=1;False=0" |
||||
|
"Attributes" = "3:0" |
||||
|
"Setting" = "3:0" |
||||
|
"Value" = "3:1" |
||||
|
"DefaultValue" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_4342B581903E4629AAD13C053607B2E1" |
||||
|
{ |
||||
|
"Sequence" = "3:300" |
||||
|
"DisplayName" = "8:설치 확인" |
||||
|
"UseDynamicProperties" = "11:TRUE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"SourcePath" = "8:<VsdDialogDir>\\VsdConfirmDlg.wid" |
||||
|
"Properties" |
||||
|
{ |
||||
|
"BannerBitmap" |
||||
|
{ |
||||
|
"Name" = "8:BannerBitmap" |
||||
|
"DisplayName" = "8:#1001" |
||||
|
"Description" = "8:#1101" |
||||
|
"Type" = "3:8" |
||||
|
"ContextData" = "8:Bitmap" |
||||
|
"Attributes" = "3:4" |
||||
|
"Setting" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_F7AB385A6F0C43BB8A2AFEBFED5B4A2D" |
||||
|
{ |
||||
|
"Sequence" = "3:100" |
||||
|
"DisplayName" = "8:환영" |
||||
|
"UseDynamicProperties" = "11:TRUE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"SourcePath" = "8:<VsdDialogDir>\\VsdWelcomeDlg.wid" |
||||
|
"Properties" |
||||
|
{ |
||||
|
"BannerBitmap" |
||||
|
{ |
||||
|
"Name" = "8:BannerBitmap" |
||||
|
"DisplayName" = "8:#1001" |
||||
|
"Description" = "8:#1101" |
||||
|
"Type" = "3:8" |
||||
|
"ContextData" = "8:Bitmap" |
||||
|
"Attributes" = "3:4" |
||||
|
"Setting" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
"CopyrightWarning" |
||||
|
{ |
||||
|
"Name" = "8:CopyrightWarning" |
||||
|
"DisplayName" = "8:#1002" |
||||
|
"Description" = "8:#1102" |
||||
|
"Type" = "3:3" |
||||
|
"ContextData" = "8:" |
||||
|
"Attributes" = "3:0" |
||||
|
"Setting" = "3:1" |
||||
|
"Value" = "8:#1202" |
||||
|
"DefaultValue" = "8:#1202" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
"Welcome" |
||||
|
{ |
||||
|
"Name" = "8:Welcome" |
||||
|
"DisplayName" = "8:#1003" |
||||
|
"Description" = "8:#1103" |
||||
|
"Type" = "3:3" |
||||
|
"ContextData" = "8:" |
||||
|
"Attributes" = "3:0" |
||||
|
"Setting" = "3:1" |
||||
|
"Value" = "8:#1203" |
||||
|
"DefaultValue" = "8:#1203" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"{DF760B10-853B-4699-99F2-AFF7185B4A62}:_2E60A233285B4446BA6CE06913DA816E" |
||||
|
{ |
||||
|
"Name" = "8:#1901" |
||||
|
"Sequence" = "3:1" |
||||
|
"Attributes" = "3:2" |
||||
|
"Dialogs" |
||||
|
{ |
||||
|
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_2CC95F9D59B144F9A708F7B909DE7767" |
||||
|
{ |
||||
|
"Sequence" = "3:100" |
||||
|
"DisplayName" = "8:진행률" |
||||
|
"UseDynamicProperties" = "11:TRUE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"SourcePath" = "8:<VsdDialogDir>\\VsdProgressDlg.wid" |
||||
|
"Properties" |
||||
|
{ |
||||
|
"BannerBitmap" |
||||
|
{ |
||||
|
"Name" = "8:BannerBitmap" |
||||
|
"DisplayName" = "8:#1001" |
||||
|
"Description" = "8:#1101" |
||||
|
"Type" = "3:8" |
||||
|
"ContextData" = "8:Bitmap" |
||||
|
"Attributes" = "3:4" |
||||
|
"Setting" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
"ShowProgress" |
||||
|
{ |
||||
|
"Name" = "8:ShowProgress" |
||||
|
"DisplayName" = "8:#1009" |
||||
|
"Description" = "8:#1109" |
||||
|
"Type" = "3:5" |
||||
|
"ContextData" = "8:1;True=1;False=0" |
||||
|
"Attributes" = "3:0" |
||||
|
"Setting" = "3:0" |
||||
|
"Value" = "3:1" |
||||
|
"DefaultValue" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"{DF760B10-853B-4699-99F2-AFF7185B4A62}:_67523E01A08C451CB71F5637D9BE5A80" |
||||
|
{ |
||||
|
"Name" = "8:#1901" |
||||
|
"Sequence" = "3:2" |
||||
|
"Attributes" = "3:2" |
||||
|
"Dialogs" |
||||
|
{ |
||||
|
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_DD92AE63ACC9474C985852554FADD227" |
||||
|
{ |
||||
|
"Sequence" = "3:100" |
||||
|
"DisplayName" = "8:진행률" |
||||
|
"UseDynamicProperties" = "11:TRUE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"SourcePath" = "8:<VsdDialogDir>\\VsdAdminProgressDlg.wid" |
||||
|
"Properties" |
||||
|
{ |
||||
|
"BannerBitmap" |
||||
|
{ |
||||
|
"Name" = "8:BannerBitmap" |
||||
|
"DisplayName" = "8:#1001" |
||||
|
"Description" = "8:#1101" |
||||
|
"Type" = "3:8" |
||||
|
"ContextData" = "8:Bitmap" |
||||
|
"Attributes" = "3:4" |
||||
|
"Setting" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
"ShowProgress" |
||||
|
{ |
||||
|
"Name" = "8:ShowProgress" |
||||
|
"DisplayName" = "8:#1009" |
||||
|
"Description" = "8:#1109" |
||||
|
"Type" = "3:5" |
||||
|
"ContextData" = "8:1;True=1;False=0" |
||||
|
"Attributes" = "3:0" |
||||
|
"Setting" = "3:0" |
||||
|
"Value" = "3:1" |
||||
|
"DefaultValue" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"{DF760B10-853B-4699-99F2-AFF7185B4A62}:_70480CFE59AE447EAEAAE11CEACD8C4C" |
||||
|
{ |
||||
|
"Name" = "8:#1900" |
||||
|
"Sequence" = "3:2" |
||||
|
"Attributes" = "3:1" |
||||
|
"Dialogs" |
||||
|
{ |
||||
|
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_87A39E2855FD405BA7F8B2FA0A93326F" |
||||
|
{ |
||||
|
"Sequence" = "3:300" |
||||
|
"DisplayName" = "8:설치 확인" |
||||
|
"UseDynamicProperties" = "11:TRUE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"SourcePath" = "8:<VsdDialogDir>\\VsdAdminConfirmDlg.wid" |
||||
|
"Properties" |
||||
|
{ |
||||
|
"BannerBitmap" |
||||
|
{ |
||||
|
"Name" = "8:BannerBitmap" |
||||
|
"DisplayName" = "8:#1001" |
||||
|
"Description" = "8:#1101" |
||||
|
"Type" = "3:8" |
||||
|
"ContextData" = "8:Bitmap" |
||||
|
"Attributes" = "3:4" |
||||
|
"Setting" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_A7AA70FC792A4D3BA6B72ABACEF5456E" |
||||
|
{ |
||||
|
"Sequence" = "3:200" |
||||
|
"DisplayName" = "8:설치 폴더" |
||||
|
"UseDynamicProperties" = "11:TRUE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"SourcePath" = "8:<VsdDialogDir>\\VsdAdminFolderDlg.wid" |
||||
|
"Properties" |
||||
|
{ |
||||
|
"BannerBitmap" |
||||
|
{ |
||||
|
"Name" = "8:BannerBitmap" |
||||
|
"DisplayName" = "8:#1001" |
||||
|
"Description" = "8:#1101" |
||||
|
"Type" = "3:8" |
||||
|
"ContextData" = "8:Bitmap" |
||||
|
"Attributes" = "3:4" |
||||
|
"Setting" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_D842F368CCB04DAD9C7714A50279AC8D" |
||||
|
{ |
||||
|
"Sequence" = "3:100" |
||||
|
"DisplayName" = "8:환영" |
||||
|
"UseDynamicProperties" = "11:TRUE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"SourcePath" = "8:<VsdDialogDir>\\VsdAdminWelcomeDlg.wid" |
||||
|
"Properties" |
||||
|
{ |
||||
|
"BannerBitmap" |
||||
|
{ |
||||
|
"Name" = "8:BannerBitmap" |
||||
|
"DisplayName" = "8:#1001" |
||||
|
"Description" = "8:#1101" |
||||
|
"Type" = "3:8" |
||||
|
"ContextData" = "8:Bitmap" |
||||
|
"Attributes" = "3:4" |
||||
|
"Setting" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
"CopyrightWarning" |
||||
|
{ |
||||
|
"Name" = "8:CopyrightWarning" |
||||
|
"DisplayName" = "8:#1002" |
||||
|
"Description" = "8:#1102" |
||||
|
"Type" = "3:3" |
||||
|
"ContextData" = "8:" |
||||
|
"Attributes" = "3:0" |
||||
|
"Setting" = "3:1" |
||||
|
"Value" = "8:#1202" |
||||
|
"DefaultValue" = "8:#1202" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
"Welcome" |
||||
|
{ |
||||
|
"Name" = "8:Welcome" |
||||
|
"DisplayName" = "8:#1003" |
||||
|
"Description" = "8:#1103" |
||||
|
"Type" = "3:3" |
||||
|
"ContextData" = "8:" |
||||
|
"Attributes" = "3:0" |
||||
|
"Setting" = "3:1" |
||||
|
"Value" = "8:#1203" |
||||
|
"DefaultValue" = "8:#1203" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"{DF760B10-853B-4699-99F2-AFF7185B4A62}:_B264422F16F64C4FA6522010FA79020E" |
||||
|
{ |
||||
|
"Name" = "8:#1902" |
||||
|
"Sequence" = "3:2" |
||||
|
"Attributes" = "3:3" |
||||
|
"Dialogs" |
||||
|
{ |
||||
|
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_D94354F2E87E40138E5EFD6E59235372" |
||||
|
{ |
||||
|
"Sequence" = "3:100" |
||||
|
"DisplayName" = "8:마침" |
||||
|
"UseDynamicProperties" = "11:TRUE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"SourcePath" = "8:<VsdDialogDir>\\VsdAdminFinishedDlg.wid" |
||||
|
"Properties" |
||||
|
{ |
||||
|
"BannerBitmap" |
||||
|
{ |
||||
|
"Name" = "8:BannerBitmap" |
||||
|
"DisplayName" = "8:#1001" |
||||
|
"Description" = "8:#1101" |
||||
|
"Type" = "3:8" |
||||
|
"ContextData" = "8:Bitmap" |
||||
|
"Attributes" = "3:4" |
||||
|
"Setting" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_BACE15851713489DBEE682AFD3118C00" |
||||
|
{ |
||||
|
"UseDynamicProperties" = "11:FALSE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"SourcePath" = "8:<VsdDialogDir>\\VsdUserInterface.wim" |
||||
|
} |
||||
|
"{DF760B10-853B-4699-99F2-AFF7185B4A62}:_E52EC45DF84545E9AD1463E1C3105822" |
||||
|
{ |
||||
|
"Name" = "8:#1902" |
||||
|
"Sequence" = "3:1" |
||||
|
"Attributes" = "3:3" |
||||
|
"Dialogs" |
||||
|
{ |
||||
|
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_33721C89DAEE4AA3B67B01E45BD0DD0C" |
||||
|
{ |
||||
|
"Sequence" = "3:100" |
||||
|
"DisplayName" = "8:마침" |
||||
|
"UseDynamicProperties" = "11:TRUE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"SourcePath" = "8:<VsdDialogDir>\\VsdFinishedDlg.wid" |
||||
|
"Properties" |
||||
|
{ |
||||
|
"BannerBitmap" |
||||
|
{ |
||||
|
"Name" = "8:BannerBitmap" |
||||
|
"DisplayName" = "8:#1001" |
||||
|
"Description" = "8:#1101" |
||||
|
"Type" = "3:8" |
||||
|
"ContextData" = "8:Bitmap" |
||||
|
"Attributes" = "3:4" |
||||
|
"Setting" = "3:1" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
"UpdateText" |
||||
|
{ |
||||
|
"Name" = "8:UpdateText" |
||||
|
"DisplayName" = "8:#1058" |
||||
|
"Description" = "8:#1158" |
||||
|
"Type" = "3:15" |
||||
|
"ContextData" = "8:" |
||||
|
"Attributes" = "3:0" |
||||
|
"Setting" = "3:1" |
||||
|
"Value" = "8:#1258" |
||||
|
"DefaultValue" = "8:#1258" |
||||
|
"UsePlugInResources" = "11:TRUE" |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
"MergeModule" |
||||
|
{ |
||||
|
} |
||||
|
"ProjectOutput" |
||||
|
{ |
||||
|
"{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_02533EBA1FAC4DEB9B107EA61601BC14" |
||||
|
{ |
||||
|
"SourcePath" = "8:..\\obj\\Release\\net9.0-windows\\apphost.exe" |
||||
|
"TargetName" = "8:" |
||||
|
"Tag" = "8:" |
||||
|
"Folder" = "8:_F82D7765A32648BAB39C4326E85541B0" |
||||
|
"Condition" = "8:" |
||||
|
"Transitive" = "11:FALSE" |
||||
|
"Vital" = "11:TRUE" |
||||
|
"ReadOnly" = "11:FALSE" |
||||
|
"Hidden" = "11:FALSE" |
||||
|
"System" = "11:FALSE" |
||||
|
"Permanent" = "11:FALSE" |
||||
|
"SharedLegacy" = "11:FALSE" |
||||
|
"PackageAs" = "3:1" |
||||
|
"Register" = "3:1" |
||||
|
"Exclude" = "11:FALSE" |
||||
|
"IsDependency" = "11:FALSE" |
||||
|
"IsolateTo" = "8:" |
||||
|
"ProjectOutputGroupRegister" = "3:1" |
||||
|
"OutputConfiguration" = "8:" |
||||
|
"OutputGroupCanonicalName" = "8:PublishItemsOutputGroup" |
||||
|
"OutputProjectGuid" = "8:{7364A567-F115-4ACE-9207-C6FDEEF0A394}" |
||||
|
"ShowKeyOutput" = "11:TRUE" |
||||
|
"ExcludeFilters" |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
@ -1,274 +0,0 @@ |
|||||
<!DOCTYPE html> |
|
||||
<!-- saved from url=(0014)about:internet --> |
|
||||
<html xmlns:msxsl="urn:schemas-microsoft-com:xslt"><head><meta content="en-us" http-equiv="Content-Language" /><meta content="text/html; charset=utf-16" http-equiv="Content-Type" /><title _locID="ConversionReport0"> |
|
||||
마이그레이션 보고서 |
|
||||
</title><style> |
|
||||
/* Body style, for the entire document */ |
|
||||
body |
|
||||
{ |
|
||||
background: #F3F3F4; |
|
||||
color: #1E1E1F; |
|
||||
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; |
|
||||
padding: 0; |
|
||||
margin: 0; |
|
||||
} |
|
||||
|
|
||||
/* Header1 style, used for the main title */ |
|
||||
h1 |
|
||||
{ |
|
||||
padding: 10px 0px 10px 10px; |
|
||||
font-size: 21pt; |
|
||||
background-color: #E2E2E2; |
|
||||
border-bottom: 1px #C1C1C2 solid; |
|
||||
color: #201F20; |
|
||||
margin: 0; |
|
||||
font-weight: normal; |
|
||||
} |
|
||||
|
|
||||
/* Header2 style, used for "Overview" and other sections */ |
|
||||
h2 |
|
||||
{ |
|
||||
font-size: 18pt; |
|
||||
font-weight: normal; |
|
||||
padding: 15px 0 5px 0; |
|
||||
margin: 0; |
|
||||
} |
|
||||
|
|
||||
/* Header3 style, used for sub-sections, such as project name */ |
|
||||
h3 |
|
||||
{ |
|
||||
font-weight: normal; |
|
||||
font-size: 15pt; |
|
||||
margin: 0; |
|
||||
padding: 15px 0 5px 0; |
|
||||
background-color: transparent; |
|
||||
} |
|
||||
|
|
||||
/* Color all hyperlinks one color */ |
|
||||
a |
|
||||
{ |
|
||||
color: #1382CE; |
|
||||
} |
|
||||
|
|
||||
/* Table styles */ |
|
||||
table |
|
||||
{ |
|
||||
border-spacing: 0 0; |
|
||||
border-collapse: collapse; |
|
||||
font-size: 10pt; |
|
||||
} |
|
||||
|
|
||||
table th |
|
||||
{ |
|
||||
background: #E7E7E8; |
|
||||
text-align: left; |
|
||||
text-decoration: none; |
|
||||
font-weight: normal; |
|
||||
padding: 3px 6px 3px 6px; |
|
||||
} |
|
||||
|
|
||||
table td |
|
||||
{ |
|
||||
vertical-align: top; |
|
||||
padding: 3px 6px 5px 5px; |
|
||||
margin: 0px; |
|
||||
border: 1px solid #E7E7E8; |
|
||||
background: #F7F7F8; |
|
||||
} |
|
||||
|
|
||||
/* Local link is a style for hyperlinks that link to file:/// content, there are lots so color them as 'normal' text until the user mouse overs */ |
|
||||
.localLink |
|
||||
{ |
|
||||
color: #1E1E1F; |
|
||||
background: #EEEEED; |
|
||||
text-decoration: none; |
|
||||
} |
|
||||
|
|
||||
.localLink:hover |
|
||||
{ |
|
||||
color: #1382CE; |
|
||||
background: #FFFF99; |
|
||||
text-decoration: none; |
|
||||
} |
|
||||
|
|
||||
/* Center text, used in the over views cells that contain message level counts */ |
|
||||
.textCentered |
|
||||
{ |
|
||||
text-align: center; |
|
||||
} |
|
||||
|
|
||||
/* The message cells in message tables should take up all avaliable space */ |
|
||||
.messageCell |
|
||||
{ |
|
||||
width: 100%; |
|
||||
} |
|
||||
|
|
||||
/* Padding around the content after the h1 */ |
|
||||
#content |
|
||||
{ |
|
||||
padding: 0px 12px 12px 12px; |
|
||||
} |
|
||||
|
|
||||
/* The overview table expands to width, with a max width of 97% */ |
|
||||
#overview table |
|
||||
{ |
|
||||
width: auto; |
|
||||
max-width: 75%; |
|
||||
} |
|
||||
|
|
||||
/* The messages tables are always 97% width */ |
|
||||
#messages table |
|
||||
{ |
|
||||
width: 97%; |
|
||||
} |
|
||||
|
|
||||
/* All Icons */ |
|
||||
.IconSuccessEncoded, .IconInfoEncoded, .IconWarningEncoded, .IconErrorEncoded |
|
||||
{ |
|
||||
min-width:18px; |
|
||||
min-height:18px; |
|
||||
background-repeat:no-repeat; |
|
||||
background-position:center; |
|
||||
} |
|
||||
|
|
||||
/* Success icon encoded */ |
|
||||
.IconSuccessEncoded |
|
||||
{ |
|
||||
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */ |
|
||||
/* [---XsltValidateInternal-Base64EncodedImage:IconSuccess#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */ |
|
||||
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAA7EAAAOxAGVKw4bAAABcElEQVR4Xq2TsUsCURzHv15g8ZJcBWlyiYYgCIWcb9DFRRwMW5TA2c0/QEFwFkxxUQdxVlBwCYWOi6IhWgQhBLHJUCkhLr/BW8S7gvrAg+N+v8/v+x68Z8MGy+XSCyABQAXgBgHGALoASkIIDWSLeLBetdHryMjd5IxQPWT4rn1c/P7+xxp72Cs9m5SZ0Bq2vPnbPFafK2zDvmNHypdC0BPkLlQhxJsCAhQoZwdZU5mwxh720qGo8MzTxTTKZDPCx2HoVzp6lz0Q9tKhyx0kGs8Ny+TkWRKk8lCROwEduhyg9l/6lunOPSfmH3NUH6uQ0KHLAe7JYvJjevm+DAMGJHToKtigE+vwvIidxLamb8IBY9e+C5LiXREkfho3TSd06HJA13/oh6T51MTsfQbHrsMynQ5dDihFjiK8JJAU9AKIWTp76dCVN7HWHrajmUEGvyF9nkbAE6gLIS7kTUyuf2gscLoJrElZo/Mvj+nPz/kLTmfnEwP3tB0AAAAASUVORK5CYII=); |
|
||||
} |
|
||||
|
|
||||
/* Information icon encoded */ |
|
||||
.IconInfoEncoded |
|
||||
{ |
|
||||
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */ |
|
||||
/* [---XsltValidateInternal-Base64EncodedImage:IconInformation#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */ |
|
||||
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABHElEQVR4Xs2TsUoDQRRF7wwoziokjZUKadInhdhukR9YP8DMX1hYW+QvdsXa/QHBbcXC7W0CamWTQnclFutceIQJwwaWNLlwm5k5d94M76mmaeCrrmsLYOocY12FcxZFUeozCqKqqgYA8uevv1H6VuPxcwlfk5N92KHBxfFeCSAxxswlYAW/Xr989x/mv9gkhtyMDhcAxgzRsp7flj8B/HF1RsMXq+NZMkopaHe7lbKxQUEIGbKsYNoGn969060hZBkQex/W8oRQwsQaW2o3Ago2SVcJUzAgY3N0lTCZZm+zPS8HB51gMmS1DEYyOz9acKO1D8JWTlafKIMxdhvlfdyT94Vv5h7P8Ky7nQzACmhvKq3zk3PjW9asz9D/1oigecsioooAAAAASUVORK5CYII=); |
|
||||
} |
|
||||
|
|
||||
/* Warning icon encoded */ |
|
||||
.IconWarningEncoded |
|
||||
{ |
|
||||
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */ |
|
||||
/* [---XsltValidateInternal-Base64EncodedImage:IconWarning#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */ |
|
||||
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAx0lEQVR4XpWSMQ7CMAxFf4xAyBMLCxMrO8dhaBcuwdCJS3RJBw7SA/QGTCxdWJgiQYWKXJWKIXHIlyw5lqr34tQgEOdcBsCOx5yZK3hCCKdYXneQkh4pEfqzLfu+wVDSyyzFoJjfz9NB+pAF+eizx2Vruts0k15mPgvS6GYvpVtQhB61IB/dk6AF6fS4Ben0uIX5odtFe8Q/eW1KvFeH4e8khT6+gm5B+t3juyDt7n0jpe+CANTd+oTUjN/U3yVaABnSUjFz/gFq44JaVSCXeQAAAABJRU5ErkJggg==); |
|
||||
} |
|
||||
|
|
||||
/* Error icon encoded */ |
|
||||
.IconErrorEncoded |
|
||||
{ |
|
||||
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */ |
|
||||
/* [---XsltValidateInternal-Base64EncodedImage:IconError#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */ |
|
||||
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABQElEQVR4XqWTvUoEQRCE6wYPZUA80AfwAQz23uCMjA7MDRQEIzPBVEyNTQUFIw00vcQTTMzuAh/AxEQQT8HF/3G/oGGnEUGuoNnd6qoZuqltyKEsyzVJq5I6rnUp6SjGeGhESikzzlc1eL7opfuVbrqbU1Zw9NCgtQMaZpY0eNnaaL2fHusvTK5vKu7sjSS1Y4y3QUA6K3e3Mau5UFDyMP7tYF9o8cAHZv68vipoIJg971PZIZ5HiwdvYGGvFVFHmGmZ2MxwmQYPXubPl9Up0tfoMQGetXd6mRbvhBw+boZ6WF7Mbv1+GsHRk0fQmPAH1GfmZirbCfDJ61tw3Px8/8pZsPAG4jlVhcPgZ7adwNWBB68lkRQWFiTgFlbnLY3DGGM7izIJIyT/jjIvEJw6fdJTc6krDzh6aMwMP9bvDH4ADSsa9uSWVJkAAAAASUVORK5CYII=); |
|
||||
} |
|
||||
</style><script type="text/javascript" language="javascript"> |
|
||||
|
|
||||
// Startup |
|
||||
// Hook up the the loaded event for the document/window, to linkify the document content |
|
||||
var startupFunction = function() { linkifyElement("messages"); }; |
|
||||
|
|
||||
if(window.attachEvent) |
|
||||
{ |
|
||||
window.attachEvent('onload', startupFunction); |
|
||||
} |
|
||||
else if (window.addEventListener) |
|
||||
{ |
|
||||
window.addEventListener('load', startupFunction, false); |
|
||||
} |
|
||||
else |
|
||||
{ |
|
||||
document.addEventListener('load', startupFunction, false); |
|
||||
} |
|
||||
|
|
||||
// Toggles the visibility of table rows with the specified name |
|
||||
function toggleTableRowsByName(name) |
|
||||
{ |
|
||||
var allRows = document.getElementsByTagName('tr'); |
|
||||
for (i=0; i < allRows.length; i++) |
|
||||
{ |
|
||||
var currentName = allRows[i].getAttribute('name'); |
|
||||
if(!!currentName && currentName.indexOf(name) == 0) |
|
||||
{ |
|
||||
var isVisible = allRows[i].style.display == ''; |
|
||||
isVisible ? allRows[i].style.display = 'none' : allRows[i].style.display = ''; |
|
||||
} |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
function scrollToFirstVisibleRow(name) |
|
||||
{ |
|
||||
var allRows = document.getElementsByTagName('tr'); |
|
||||
for (i=0; i < allRows.length; i++) |
|
||||
{ |
|
||||
var currentName = allRows[i].getAttribute('name'); |
|
||||
var isVisible = allRows[i].style.display == ''; |
|
||||
if(!!currentName && currentName.indexOf(name) == 0 && isVisible) |
|
||||
{ |
|
||||
allRows[i].scrollIntoView(true); |
|
||||
return true; |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
return false; |
|
||||
} |
|
||||
|
|
||||
// Linkifies the specified text content, replaces candidate links with html links |
|
||||
function linkify(text) |
|
||||
{ |
|
||||
if(!text || 0 === text.length) |
|
||||
{ |
|
||||
return text; |
|
||||
} |
|
||||
|
|
||||
// Find http, https and ftp links and replace them with hyper links |
|
||||
var urlLink = /(http|https|ftp)\:\/\/[a-zA-Z0-9\-\.]+(:[a-zA-Z0-9]*)?\/?([a-zA-Z0-9\-\._\?\,\/\\\+&%\$#\=~;\{\}])*/gi; |
|
||||
|
|
||||
return text.replace(urlLink, '<a href="$&">$&</a>') ; |
|
||||
} |
|
||||
|
|
||||
// Linkifies the specified element by ID |
|
||||
function linkifyElement(id) |
|
||||
{ |
|
||||
var element = document.getElementById(id); |
|
||||
if(!!element) |
|
||||
{ |
|
||||
element.innerHTML = linkify(element.innerHTML); |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
function ToggleMessageVisibility(projectName) |
|
||||
{ |
|
||||
if(!projectName || 0 === projectName.length) |
|
||||
{ |
|
||||
return; |
|
||||
} |
|
||||
|
|
||||
toggleTableRowsByName("MessageRowClass" + projectName); |
|
||||
toggleTableRowsByName('MessageRowHeaderShow' + projectName); |
|
||||
toggleTableRowsByName('MessageRowHeaderHide' + projectName); |
|
||||
} |
|
||||
|
|
||||
function ScrollToFirstVisibleMessage(projectName) |
|
||||
{ |
|
||||
if(!projectName || 0 === projectName.length) |
|
||||
{ |
|
||||
return; |
|
||||
} |
|
||||
|
|
||||
// First try the 'Show messages' row |
|
||||
if(!scrollToFirstVisibleRow('MessageRowHeaderShow' + projectName)) |
|
||||
{ |
|
||||
// Failed to find a visible row for 'Show messages', try an actual message row |
|
||||
scrollToFirstVisibleRow('MessageRowClass' + projectName); |
|
||||
} |
|
||||
} |
|
||||
</script></head><body><h1 _locID="ConversionReport"> |
|
||||
마이그레이션 보고서 - </h1><div id="content"><h2 _locID="OverviewTitle">개요</h2><div id="overview"><table><tr><th></th><th _locID="ProjectTableHeader">프로젝트</th><th _locID="PathTableHeader">경로</th><th _locID="ErrorsTableHeader">오류</th><th _locID="WarningsTableHeader">경고</th><th _locID="MessagesTableHeader">메시지</th></tr><tr><td class="IconErrorEncoded" /><td><strong><a href="#Setup1">Setup1</a></strong></td><td>Setup1\Setup1.vdproj</td><td class="textCentered"><a href="#Setup1Error">1</a></td><td class="textCentered"><a>0</a></td><td class="textCentered"><a href="#">0</a></td></tr><tr><td class="IconSuccessEncoded" /><td><strong><a href="#Housing">Housing</a></strong></td><td>Housing.csproj</td><td class="textCentered"><a>0</a></td><td class="textCentered"><a>0</a></td><td class="textCentered"><a href="#">0</a></td></tr><tr><td class="IconSuccessEncoded" /><td><strong><a href="#Solution"><span _locID="OverviewSolutionSpan">솔루션</span></a></strong></td><td>Housing.sln</td><td class="textCentered"><a>0</a></td><td class="textCentered"><a>0</a></td><td class="textCentered"><a href="#" onclick="ScrollToFirstVisibleMessage('Solution'); return false;">1</a></td></tr></table></div><h2 _locID="SolutionAndProjectsTitle">솔루션 및 프로젝트</h2><div id="messages"><a name="Setup1" /><h3>Setup1</h3><table><tr id="Setup1HeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">메시지</th></tr><tr name="ErrorRowClassSetup1"><td class="IconErrorEncoded"><a name="Setup1Error" /></td><td class="messageCell"><strong>Setup1\Setup1.vdproj: |
|
||||
</strong><span>이 프로젝트 형식을 기반으로 하는 애플리케이션을 찾지 못했습니다. 추가 정보를 보려면 이 링크를 확인하십시오. 54435603-dbb4-11d2-8724-00a0c9a8b90c</span></td></tr></table><a name="Housing" /><h3>Housing</h3><table><tr id="HousingHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">메시지</th></tr><tr><td class="IconInfoEncoded" /><td class="messageCell" _locID="NoMessagesRow">Housing 메시지가 기록되지 않았습니다. |
|
||||
</td></tr></table><a name="Solution" /><h3 _locID="ProjectDisplayNameHeader">솔루션</h3><table><tr id="SolutionHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">메시지</th></tr><tr name="MessageRowHeaderShowSolution"><td class="IconInfoEncoded" /><td class="messageCell"><a _locID="ShowAdditionalMessages" href="#" name="SolutionMessage" onclick="ToggleMessageVisibility('Solution'); return false;"> |
|
||||
표시 1 추가 메시지 |
|
||||
</a></td></tr><tr name="MessageRowClassSolution" style="display: none"><td class="IconInfoEncoded"><a name="SolutionMessage" /></td><td class="messageCell"><strong>Housing.sln: |
|
||||
</strong><span>솔루션 파일은 마이그레이션하지 않아도 됩니다.</span></td></tr><tr style="display: none" name="MessageRowHeaderHideSolution"><td class="IconInfoEncoded" /><td class="messageCell"><a _locID="HideAdditionalMessages" href="#" name="SolutionMessage" onclick="ToggleMessageVisibility('Solution'); return false;"> |
|
||||
숨기기 1 추가 메시지 |
|
||||
</a></td></tr></table></div></div></body></html> |
|
||||
@ -1,274 +0,0 @@ |
|||||
<!DOCTYPE html> |
|
||||
<!-- saved from url=(0014)about:internet --> |
|
||||
<html xmlns:msxsl="urn:schemas-microsoft-com:xslt"><head><meta content="en-us" http-equiv="Content-Language" /><meta content="text/html; charset=utf-16" http-equiv="Content-Type" /><title _locID="ConversionReport0"> |
|
||||
마이그레이션 보고서 |
|
||||
</title><style> |
|
||||
/* Body style, for the entire document */ |
|
||||
body |
|
||||
{ |
|
||||
background: #F3F3F4; |
|
||||
color: #1E1E1F; |
|
||||
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; |
|
||||
padding: 0; |
|
||||
margin: 0; |
|
||||
} |
|
||||
|
|
||||
/* Header1 style, used for the main title */ |
|
||||
h1 |
|
||||
{ |
|
||||
padding: 10px 0px 10px 10px; |
|
||||
font-size: 21pt; |
|
||||
background-color: #E2E2E2; |
|
||||
border-bottom: 1px #C1C1C2 solid; |
|
||||
color: #201F20; |
|
||||
margin: 0; |
|
||||
font-weight: normal; |
|
||||
} |
|
||||
|
|
||||
/* Header2 style, used for "Overview" and other sections */ |
|
||||
h2 |
|
||||
{ |
|
||||
font-size: 18pt; |
|
||||
font-weight: normal; |
|
||||
padding: 15px 0 5px 0; |
|
||||
margin: 0; |
|
||||
} |
|
||||
|
|
||||
/* Header3 style, used for sub-sections, such as project name */ |
|
||||
h3 |
|
||||
{ |
|
||||
font-weight: normal; |
|
||||
font-size: 15pt; |
|
||||
margin: 0; |
|
||||
padding: 15px 0 5px 0; |
|
||||
background-color: transparent; |
|
||||
} |
|
||||
|
|
||||
/* Color all hyperlinks one color */ |
|
||||
a |
|
||||
{ |
|
||||
color: #1382CE; |
|
||||
} |
|
||||
|
|
||||
/* Table styles */ |
|
||||
table |
|
||||
{ |
|
||||
border-spacing: 0 0; |
|
||||
border-collapse: collapse; |
|
||||
font-size: 10pt; |
|
||||
} |
|
||||
|
|
||||
table th |
|
||||
{ |
|
||||
background: #E7E7E8; |
|
||||
text-align: left; |
|
||||
text-decoration: none; |
|
||||
font-weight: normal; |
|
||||
padding: 3px 6px 3px 6px; |
|
||||
} |
|
||||
|
|
||||
table td |
|
||||
{ |
|
||||
vertical-align: top; |
|
||||
padding: 3px 6px 5px 5px; |
|
||||
margin: 0px; |
|
||||
border: 1px solid #E7E7E8; |
|
||||
background: #F7F7F8; |
|
||||
} |
|
||||
|
|
||||
/* Local link is a style for hyperlinks that link to file:/// content, there are lots so color them as 'normal' text until the user mouse overs */ |
|
||||
.localLink |
|
||||
{ |
|
||||
color: #1E1E1F; |
|
||||
background: #EEEEED; |
|
||||
text-decoration: none; |
|
||||
} |
|
||||
|
|
||||
.localLink:hover |
|
||||
{ |
|
||||
color: #1382CE; |
|
||||
background: #FFFF99; |
|
||||
text-decoration: none; |
|
||||
} |
|
||||
|
|
||||
/* Center text, used in the over views cells that contain message level counts */ |
|
||||
.textCentered |
|
||||
{ |
|
||||
text-align: center; |
|
||||
} |
|
||||
|
|
||||
/* The message cells in message tables should take up all avaliable space */ |
|
||||
.messageCell |
|
||||
{ |
|
||||
width: 100%; |
|
||||
} |
|
||||
|
|
||||
/* Padding around the content after the h1 */ |
|
||||
#content |
|
||||
{ |
|
||||
padding: 0px 12px 12px 12px; |
|
||||
} |
|
||||
|
|
||||
/* The overview table expands to width, with a max width of 97% */ |
|
||||
#overview table |
|
||||
{ |
|
||||
width: auto; |
|
||||
max-width: 75%; |
|
||||
} |
|
||||
|
|
||||
/* The messages tables are always 97% width */ |
|
||||
#messages table |
|
||||
{ |
|
||||
width: 97%; |
|
||||
} |
|
||||
|
|
||||
/* All Icons */ |
|
||||
.IconSuccessEncoded, .IconInfoEncoded, .IconWarningEncoded, .IconErrorEncoded |
|
||||
{ |
|
||||
min-width:18px; |
|
||||
min-height:18px; |
|
||||
background-repeat:no-repeat; |
|
||||
background-position:center; |
|
||||
} |
|
||||
|
|
||||
/* Success icon encoded */ |
|
||||
.IconSuccessEncoded |
|
||||
{ |
|
||||
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */ |
|
||||
/* [---XsltValidateInternal-Base64EncodedImage:IconSuccess#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */ |
|
||||
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAA7EAAAOxAGVKw4bAAABcElEQVR4Xq2TsUsCURzHv15g8ZJcBWlyiYYgCIWcb9DFRRwMW5TA2c0/QEFwFkxxUQdxVlBwCYWOi6IhWgQhBLHJUCkhLr/BW8S7gvrAg+N+v8/v+x68Z8MGy+XSCyABQAXgBgHGALoASkIIDWSLeLBetdHryMjd5IxQPWT4rn1c/P7+xxp72Cs9m5SZ0Bq2vPnbPFafK2zDvmNHypdC0BPkLlQhxJsCAhQoZwdZU5mwxh720qGo8MzTxTTKZDPCx2HoVzp6lz0Q9tKhyx0kGs8Ny+TkWRKk8lCROwEduhyg9l/6lunOPSfmH3NUH6uQ0KHLAe7JYvJjevm+DAMGJHToKtigE+vwvIidxLamb8IBY9e+C5LiXREkfho3TSd06HJA13/oh6T51MTsfQbHrsMynQ5dDihFjiK8JJAU9AKIWTp76dCVN7HWHrajmUEGvyF9nkbAE6gLIS7kTUyuf2gscLoJrElZo/Mvj+nPz/kLTmfnEwP3tB0AAAAASUVORK5CYII=); |
|
||||
} |
|
||||
|
|
||||
/* Information icon encoded */ |
|
||||
.IconInfoEncoded |
|
||||
{ |
|
||||
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */ |
|
||||
/* [---XsltValidateInternal-Base64EncodedImage:IconInformation#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */ |
|
||||
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABHElEQVR4Xs2TsUoDQRRF7wwoziokjZUKadInhdhukR9YP8DMX1hYW+QvdsXa/QHBbcXC7W0CamWTQnclFutceIQJwwaWNLlwm5k5d94M76mmaeCrrmsLYOocY12FcxZFUeozCqKqqgYA8uevv1H6VuPxcwlfk5N92KHBxfFeCSAxxswlYAW/Xr989x/mv9gkhtyMDhcAxgzRsp7flj8B/HF1RsMXq+NZMkopaHe7lbKxQUEIGbKsYNoGn969060hZBkQex/W8oRQwsQaW2o3Ago2SVcJUzAgY3N0lTCZZm+zPS8HB51gMmS1DEYyOz9acKO1D8JWTlafKIMxdhvlfdyT94Vv5h7P8Ky7nQzACmhvKq3zk3PjW9asz9D/1oigecsioooAAAAASUVORK5CYII=); |
|
||||
} |
|
||||
|
|
||||
/* Warning icon encoded */ |
|
||||
.IconWarningEncoded |
|
||||
{ |
|
||||
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */ |
|
||||
/* [---XsltValidateInternal-Base64EncodedImage:IconWarning#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */ |
|
||||
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAx0lEQVR4XpWSMQ7CMAxFf4xAyBMLCxMrO8dhaBcuwdCJS3RJBw7SA/QGTCxdWJgiQYWKXJWKIXHIlyw5lqr34tQgEOdcBsCOx5yZK3hCCKdYXneQkh4pEfqzLfu+wVDSyyzFoJjfz9NB+pAF+eizx2Vruts0k15mPgvS6GYvpVtQhB61IB/dk6AF6fS4Ben0uIX5odtFe8Q/eW1KvFeH4e8khT6+gm5B+t3juyDt7n0jpe+CANTd+oTUjN/U3yVaABnSUjFz/gFq44JaVSCXeQAAAABJRU5ErkJggg==); |
|
||||
} |
|
||||
|
|
||||
/* Error icon encoded */ |
|
||||
.IconErrorEncoded |
|
||||
{ |
|
||||
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */ |
|
||||
/* [---XsltValidateInternal-Base64EncodedImage:IconError#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */ |
|
||||
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABQElEQVR4XqWTvUoEQRCE6wYPZUA80AfwAQz23uCMjA7MDRQEIzPBVEyNTQUFIw00vcQTTMzuAh/AxEQQT8HF/3G/oGGnEUGuoNnd6qoZuqltyKEsyzVJq5I6rnUp6SjGeGhESikzzlc1eL7opfuVbrqbU1Zw9NCgtQMaZpY0eNnaaL2fHusvTK5vKu7sjSS1Y4y3QUA6K3e3Mau5UFDyMP7tYF9o8cAHZv68vipoIJg971PZIZ5HiwdvYGGvFVFHmGmZ2MxwmQYPXubPl9Up0tfoMQGetXd6mRbvhBw+boZ6WF7Mbv1+GsHRk0fQmPAH1GfmZirbCfDJ61tw3Px8/8pZsPAG4jlVhcPgZ7adwNWBB68lkRQWFiTgFlbnLY3DGGM7izIJIyT/jjIvEJw6fdJTc6krDzh6aMwMP9bvDH4ADSsa9uSWVJkAAAAASUVORK5CYII=); |
|
||||
} |
|
||||
</style><script type="text/javascript" language="javascript"> |
|
||||
|
|
||||
// Startup |
|
||||
// Hook up the the loaded event for the document/window, to linkify the document content |
|
||||
var startupFunction = function() { linkifyElement("messages"); }; |
|
||||
|
|
||||
if(window.attachEvent) |
|
||||
{ |
|
||||
window.attachEvent('onload', startupFunction); |
|
||||
} |
|
||||
else if (window.addEventListener) |
|
||||
{ |
|
||||
window.addEventListener('load', startupFunction, false); |
|
||||
} |
|
||||
else |
|
||||
{ |
|
||||
document.addEventListener('load', startupFunction, false); |
|
||||
} |
|
||||
|
|
||||
// Toggles the visibility of table rows with the specified name |
|
||||
function toggleTableRowsByName(name) |
|
||||
{ |
|
||||
var allRows = document.getElementsByTagName('tr'); |
|
||||
for (i=0; i < allRows.length; i++) |
|
||||
{ |
|
||||
var currentName = allRows[i].getAttribute('name'); |
|
||||
if(!!currentName && currentName.indexOf(name) == 0) |
|
||||
{ |
|
||||
var isVisible = allRows[i].style.display == ''; |
|
||||
isVisible ? allRows[i].style.display = 'none' : allRows[i].style.display = ''; |
|
||||
} |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
function scrollToFirstVisibleRow(name) |
|
||||
{ |
|
||||
var allRows = document.getElementsByTagName('tr'); |
|
||||
for (i=0; i < allRows.length; i++) |
|
||||
{ |
|
||||
var currentName = allRows[i].getAttribute('name'); |
|
||||
var isVisible = allRows[i].style.display == ''; |
|
||||
if(!!currentName && currentName.indexOf(name) == 0 && isVisible) |
|
||||
{ |
|
||||
allRows[i].scrollIntoView(true); |
|
||||
return true; |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
return false; |
|
||||
} |
|
||||
|
|
||||
// Linkifies the specified text content, replaces candidate links with html links |
|
||||
function linkify(text) |
|
||||
{ |
|
||||
if(!text || 0 === text.length) |
|
||||
{ |
|
||||
return text; |
|
||||
} |
|
||||
|
|
||||
// Find http, https and ftp links and replace them with hyper links |
|
||||
var urlLink = /(http|https|ftp)\:\/\/[a-zA-Z0-9\-\.]+(:[a-zA-Z0-9]*)?\/?([a-zA-Z0-9\-\._\?\,\/\\\+&%\$#\=~;\{\}])*/gi; |
|
||||
|
|
||||
return text.replace(urlLink, '<a href="$&">$&</a>') ; |
|
||||
} |
|
||||
|
|
||||
// Linkifies the specified element by ID |
|
||||
function linkifyElement(id) |
|
||||
{ |
|
||||
var element = document.getElementById(id); |
|
||||
if(!!element) |
|
||||
{ |
|
||||
element.innerHTML = linkify(element.innerHTML); |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
function ToggleMessageVisibility(projectName) |
|
||||
{ |
|
||||
if(!projectName || 0 === projectName.length) |
|
||||
{ |
|
||||
return; |
|
||||
} |
|
||||
|
|
||||
toggleTableRowsByName("MessageRowClass" + projectName); |
|
||||
toggleTableRowsByName('MessageRowHeaderShow' + projectName); |
|
||||
toggleTableRowsByName('MessageRowHeaderHide' + projectName); |
|
||||
} |
|
||||
|
|
||||
function ScrollToFirstVisibleMessage(projectName) |
|
||||
{ |
|
||||
if(!projectName || 0 === projectName.length) |
|
||||
{ |
|
||||
return; |
|
||||
} |
|
||||
|
|
||||
// First try the 'Show messages' row |
|
||||
if(!scrollToFirstVisibleRow('MessageRowHeaderShow' + projectName)) |
|
||||
{ |
|
||||
// Failed to find a visible row for 'Show messages', try an actual message row |
|
||||
scrollToFirstVisibleRow('MessageRowClass' + projectName); |
|
||||
} |
|
||||
} |
|
||||
</script></head><body><h1 _locID="ConversionReport"> |
|
||||
마이그레이션 보고서 - </h1><div id="content"><h2 _locID="OverviewTitle">개요</h2><div id="overview"><table><tr><th></th><th _locID="ProjectTableHeader">프로젝트</th><th _locID="PathTableHeader">경로</th><th _locID="ErrorsTableHeader">오류</th><th _locID="WarningsTableHeader">경고</th><th _locID="MessagesTableHeader">메시지</th></tr><tr><td class="IconErrorEncoded" /><td><strong><a href="#Setup1">Setup1</a></strong></td><td>Setup1\Setup1.vdproj</td><td class="textCentered"><a href="#Setup1Error">1</a></td><td class="textCentered"><a>0</a></td><td class="textCentered"><a href="#">0</a></td></tr><tr><td class="IconSuccessEncoded" /><td><strong><a href="#Housing">Housing</a></strong></td><td>Housing.csproj</td><td class="textCentered"><a>0</a></td><td class="textCentered"><a>0</a></td><td class="textCentered"><a href="#">0</a></td></tr><tr><td class="IconSuccessEncoded" /><td><strong><a href="#Solution"><span _locID="OverviewSolutionSpan">솔루션</span></a></strong></td><td>Housing.sln</td><td class="textCentered"><a>0</a></td><td class="textCentered"><a>0</a></td><td class="textCentered"><a href="#" onclick="ScrollToFirstVisibleMessage('Solution'); return false;">1</a></td></tr></table></div><h2 _locID="SolutionAndProjectsTitle">솔루션 및 프로젝트</h2><div id="messages"><a name="Setup1" /><h3>Setup1</h3><table><tr id="Setup1HeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">메시지</th></tr><tr name="ErrorRowClassSetup1"><td class="IconErrorEncoded"><a name="Setup1Error" /></td><td class="messageCell"><strong>Setup1\Setup1.vdproj: |
|
||||
</strong><span>이 프로젝트 형식을 기반으로 하는 애플리케이션을 찾지 못했습니다. 추가 정보를 보려면 이 링크를 확인하십시오. 54435603-dbb4-11d2-8724-00a0c9a8b90c</span></td></tr></table><a name="Housing" /><h3>Housing</h3><table><tr id="HousingHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">메시지</th></tr><tr><td class="IconInfoEncoded" /><td class="messageCell" _locID="NoMessagesRow">Housing 메시지가 기록되지 않았습니다. |
|
||||
</td></tr></table><a name="Solution" /><h3 _locID="ProjectDisplayNameHeader">솔루션</h3><table><tr id="SolutionHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">메시지</th></tr><tr name="MessageRowHeaderShowSolution"><td class="IconInfoEncoded" /><td class="messageCell"><a _locID="ShowAdditionalMessages" href="#" name="SolutionMessage" onclick="ToggleMessageVisibility('Solution'); return false;"> |
|
||||
표시 1 추가 메시지 |
|
||||
</a></td></tr><tr name="MessageRowClassSolution" style="display: none"><td class="IconInfoEncoded"><a name="SolutionMessage" /></td><td class="messageCell"><strong>Housing.sln: |
|
||||
</strong><span>솔루션 파일은 마이그레이션하지 않아도 됩니다.</span></td></tr><tr style="display: none" name="MessageRowHeaderHideSolution"><td class="IconInfoEncoded" /><td class="messageCell"><a _locID="HideAdditionalMessages" href="#" name="SolutionMessage" onclick="ToggleMessageVisibility('Solution'); return false;"> |
|
||||
숨기기 1 추가 메시지 |
|
||||
</a></td></tr></table></div></div></body></html> |
|
||||
@ -1,274 +0,0 @@ |
|||||
<!DOCTYPE html> |
|
||||
<!-- saved from url=(0014)about:internet --> |
|
||||
<html xmlns:msxsl="urn:schemas-microsoft-com:xslt"><head><meta content="en-us" http-equiv="Content-Language" /><meta content="text/html; charset=utf-16" http-equiv="Content-Type" /><title _locID="ConversionReport0"> |
|
||||
마이그레이션 보고서 |
|
||||
</title><style> |
|
||||
/* Body style, for the entire document */ |
|
||||
body |
|
||||
{ |
|
||||
background: #F3F3F4; |
|
||||
color: #1E1E1F; |
|
||||
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; |
|
||||
padding: 0; |
|
||||
margin: 0; |
|
||||
} |
|
||||
|
|
||||
/* Header1 style, used for the main title */ |
|
||||
h1 |
|
||||
{ |
|
||||
padding: 10px 0px 10px 10px; |
|
||||
font-size: 21pt; |
|
||||
background-color: #E2E2E2; |
|
||||
border-bottom: 1px #C1C1C2 solid; |
|
||||
color: #201F20; |
|
||||
margin: 0; |
|
||||
font-weight: normal; |
|
||||
} |
|
||||
|
|
||||
/* Header2 style, used for "Overview" and other sections */ |
|
||||
h2 |
|
||||
{ |
|
||||
font-size: 18pt; |
|
||||
font-weight: normal; |
|
||||
padding: 15px 0 5px 0; |
|
||||
margin: 0; |
|
||||
} |
|
||||
|
|
||||
/* Header3 style, used for sub-sections, such as project name */ |
|
||||
h3 |
|
||||
{ |
|
||||
font-weight: normal; |
|
||||
font-size: 15pt; |
|
||||
margin: 0; |
|
||||
padding: 15px 0 5px 0; |
|
||||
background-color: transparent; |
|
||||
} |
|
||||
|
|
||||
/* Color all hyperlinks one color */ |
|
||||
a |
|
||||
{ |
|
||||
color: #1382CE; |
|
||||
} |
|
||||
|
|
||||
/* Table styles */ |
|
||||
table |
|
||||
{ |
|
||||
border-spacing: 0 0; |
|
||||
border-collapse: collapse; |
|
||||
font-size: 10pt; |
|
||||
} |
|
||||
|
|
||||
table th |
|
||||
{ |
|
||||
background: #E7E7E8; |
|
||||
text-align: left; |
|
||||
text-decoration: none; |
|
||||
font-weight: normal; |
|
||||
padding: 3px 6px 3px 6px; |
|
||||
} |
|
||||
|
|
||||
table td |
|
||||
{ |
|
||||
vertical-align: top; |
|
||||
padding: 3px 6px 5px 5px; |
|
||||
margin: 0px; |
|
||||
border: 1px solid #E7E7E8; |
|
||||
background: #F7F7F8; |
|
||||
} |
|
||||
|
|
||||
/* Local link is a style for hyperlinks that link to file:/// content, there are lots so color them as 'normal' text until the user mouse overs */ |
|
||||
.localLink |
|
||||
{ |
|
||||
color: #1E1E1F; |
|
||||
background: #EEEEED; |
|
||||
text-decoration: none; |
|
||||
} |
|
||||
|
|
||||
.localLink:hover |
|
||||
{ |
|
||||
color: #1382CE; |
|
||||
background: #FFFF99; |
|
||||
text-decoration: none; |
|
||||
} |
|
||||
|
|
||||
/* Center text, used in the over views cells that contain message level counts */ |
|
||||
.textCentered |
|
||||
{ |
|
||||
text-align: center; |
|
||||
} |
|
||||
|
|
||||
/* The message cells in message tables should take up all avaliable space */ |
|
||||
.messageCell |
|
||||
{ |
|
||||
width: 100%; |
|
||||
} |
|
||||
|
|
||||
/* Padding around the content after the h1 */ |
|
||||
#content |
|
||||
{ |
|
||||
padding: 0px 12px 12px 12px; |
|
||||
} |
|
||||
|
|
||||
/* The overview table expands to width, with a max width of 97% */ |
|
||||
#overview table |
|
||||
{ |
|
||||
width: auto; |
|
||||
max-width: 75%; |
|
||||
} |
|
||||
|
|
||||
/* The messages tables are always 97% width */ |
|
||||
#messages table |
|
||||
{ |
|
||||
width: 97%; |
|
||||
} |
|
||||
|
|
||||
/* All Icons */ |
|
||||
.IconSuccessEncoded, .IconInfoEncoded, .IconWarningEncoded, .IconErrorEncoded |
|
||||
{ |
|
||||
min-width:18px; |
|
||||
min-height:18px; |
|
||||
background-repeat:no-repeat; |
|
||||
background-position:center; |
|
||||
} |
|
||||
|
|
||||
/* Success icon encoded */ |
|
||||
.IconSuccessEncoded |
|
||||
{ |
|
||||
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */ |
|
||||
/* [---XsltValidateInternal-Base64EncodedImage:IconSuccess#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */ |
|
||||
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAA7EAAAOxAGVKw4bAAABcElEQVR4Xq2TsUsCURzHv15g8ZJcBWlyiYYgCIWcb9DFRRwMW5TA2c0/QEFwFkxxUQdxVlBwCYWOi6IhWgQhBLHJUCkhLr/BW8S7gvrAg+N+v8/v+x68Z8MGy+XSCyABQAXgBgHGALoASkIIDWSLeLBetdHryMjd5IxQPWT4rn1c/P7+xxp72Cs9m5SZ0Bq2vPnbPFafK2zDvmNHypdC0BPkLlQhxJsCAhQoZwdZU5mwxh720qGo8MzTxTTKZDPCx2HoVzp6lz0Q9tKhyx0kGs8Ny+TkWRKk8lCROwEduhyg9l/6lunOPSfmH3NUH6uQ0KHLAe7JYvJjevm+DAMGJHToKtigE+vwvIidxLamb8IBY9e+C5LiXREkfho3TSd06HJA13/oh6T51MTsfQbHrsMynQ5dDihFjiK8JJAU9AKIWTp76dCVN7HWHrajmUEGvyF9nkbAE6gLIS7kTUyuf2gscLoJrElZo/Mvj+nPz/kLTmfnEwP3tB0AAAAASUVORK5CYII=); |
|
||||
} |
|
||||
|
|
||||
/* Information icon encoded */ |
|
||||
.IconInfoEncoded |
|
||||
{ |
|
||||
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */ |
|
||||
/* [---XsltValidateInternal-Base64EncodedImage:IconInformation#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */ |
|
||||
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABHElEQVR4Xs2TsUoDQRRF7wwoziokjZUKadInhdhukR9YP8DMX1hYW+QvdsXa/QHBbcXC7W0CamWTQnclFutceIQJwwaWNLlwm5k5d94M76mmaeCrrmsLYOocY12FcxZFUeozCqKqqgYA8uevv1H6VuPxcwlfk5N92KHBxfFeCSAxxswlYAW/Xr989x/mv9gkhtyMDhcAxgzRsp7flj8B/HF1RsMXq+NZMkopaHe7lbKxQUEIGbKsYNoGn969060hZBkQex/W8oRQwsQaW2o3Ago2SVcJUzAgY3N0lTCZZm+zPS8HB51gMmS1DEYyOz9acKO1D8JWTlafKIMxdhvlfdyT94Vv5h7P8Ky7nQzACmhvKq3zk3PjW9asz9D/1oigecsioooAAAAASUVORK5CYII=); |
|
||||
} |
|
||||
|
|
||||
/* Warning icon encoded */ |
|
||||
.IconWarningEncoded |
|
||||
{ |
|
||||
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */ |
|
||||
/* [---XsltValidateInternal-Base64EncodedImage:IconWarning#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */ |
|
||||
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAx0lEQVR4XpWSMQ7CMAxFf4xAyBMLCxMrO8dhaBcuwdCJS3RJBw7SA/QGTCxdWJgiQYWKXJWKIXHIlyw5lqr34tQgEOdcBsCOx5yZK3hCCKdYXneQkh4pEfqzLfu+wVDSyyzFoJjfz9NB+pAF+eizx2Vruts0k15mPgvS6GYvpVtQhB61IB/dk6AF6fS4Ben0uIX5odtFe8Q/eW1KvFeH4e8khT6+gm5B+t3juyDt7n0jpe+CANTd+oTUjN/U3yVaABnSUjFz/gFq44JaVSCXeQAAAABJRU5ErkJggg==); |
|
||||
} |
|
||||
|
|
||||
/* Error icon encoded */ |
|
||||
.IconErrorEncoded |
|
||||
{ |
|
||||
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */ |
|
||||
/* [---XsltValidateInternal-Base64EncodedImage:IconError#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */ |
|
||||
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABQElEQVR4XqWTvUoEQRCE6wYPZUA80AfwAQz23uCMjA7MDRQEIzPBVEyNTQUFIw00vcQTTMzuAh/AxEQQT8HF/3G/oGGnEUGuoNnd6qoZuqltyKEsyzVJq5I6rnUp6SjGeGhESikzzlc1eL7opfuVbrqbU1Zw9NCgtQMaZpY0eNnaaL2fHusvTK5vKu7sjSS1Y4y3QUA6K3e3Mau5UFDyMP7tYF9o8cAHZv68vipoIJg971PZIZ5HiwdvYGGvFVFHmGmZ2MxwmQYPXubPl9Up0tfoMQGetXd6mRbvhBw+boZ6WF7Mbv1+GsHRk0fQmPAH1GfmZirbCfDJ61tw3Px8/8pZsPAG4jlVhcPgZ7adwNWBB68lkRQWFiTgFlbnLY3DGGM7izIJIyT/jjIvEJw6fdJTc6krDzh6aMwMP9bvDH4ADSsa9uSWVJkAAAAASUVORK5CYII=); |
|
||||
} |
|
||||
</style><script type="text/javascript" language="javascript"> |
|
||||
|
|
||||
// Startup |
|
||||
// Hook up the the loaded event for the document/window, to linkify the document content |
|
||||
var startupFunction = function() { linkifyElement("messages"); }; |
|
||||
|
|
||||
if(window.attachEvent) |
|
||||
{ |
|
||||
window.attachEvent('onload', startupFunction); |
|
||||
} |
|
||||
else if (window.addEventListener) |
|
||||
{ |
|
||||
window.addEventListener('load', startupFunction, false); |
|
||||
} |
|
||||
else |
|
||||
{ |
|
||||
document.addEventListener('load', startupFunction, false); |
|
||||
} |
|
||||
|
|
||||
// Toggles the visibility of table rows with the specified name |
|
||||
function toggleTableRowsByName(name) |
|
||||
{ |
|
||||
var allRows = document.getElementsByTagName('tr'); |
|
||||
for (i=0; i < allRows.length; i++) |
|
||||
{ |
|
||||
var currentName = allRows[i].getAttribute('name'); |
|
||||
if(!!currentName && currentName.indexOf(name) == 0) |
|
||||
{ |
|
||||
var isVisible = allRows[i].style.display == ''; |
|
||||
isVisible ? allRows[i].style.display = 'none' : allRows[i].style.display = ''; |
|
||||
} |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
function scrollToFirstVisibleRow(name) |
|
||||
{ |
|
||||
var allRows = document.getElementsByTagName('tr'); |
|
||||
for (i=0; i < allRows.length; i++) |
|
||||
{ |
|
||||
var currentName = allRows[i].getAttribute('name'); |
|
||||
var isVisible = allRows[i].style.display == ''; |
|
||||
if(!!currentName && currentName.indexOf(name) == 0 && isVisible) |
|
||||
{ |
|
||||
allRows[i].scrollIntoView(true); |
|
||||
return true; |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
return false; |
|
||||
} |
|
||||
|
|
||||
// Linkifies the specified text content, replaces candidate links with html links |
|
||||
function linkify(text) |
|
||||
{ |
|
||||
if(!text || 0 === text.length) |
|
||||
{ |
|
||||
return text; |
|
||||
} |
|
||||
|
|
||||
// Find http, https and ftp links and replace them with hyper links |
|
||||
var urlLink = /(http|https|ftp)\:\/\/[a-zA-Z0-9\-\.]+(:[a-zA-Z0-9]*)?\/?([a-zA-Z0-9\-\._\?\,\/\\\+&%\$#\=~;\{\}])*/gi; |
|
||||
|
|
||||
return text.replace(urlLink, '<a href="$&">$&</a>') ; |
|
||||
} |
|
||||
|
|
||||
// Linkifies the specified element by ID |
|
||||
function linkifyElement(id) |
|
||||
{ |
|
||||
var element = document.getElementById(id); |
|
||||
if(!!element) |
|
||||
{ |
|
||||
element.innerHTML = linkify(element.innerHTML); |
|
||||
} |
|
||||
} |
|
||||
|
|
||||
function ToggleMessageVisibility(projectName) |
|
||||
{ |
|
||||
if(!projectName || 0 === projectName.length) |
|
||||
{ |
|
||||
return; |
|
||||
} |
|
||||
|
|
||||
toggleTableRowsByName("MessageRowClass" + projectName); |
|
||||
toggleTableRowsByName('MessageRowHeaderShow' + projectName); |
|
||||
toggleTableRowsByName('MessageRowHeaderHide' + projectName); |
|
||||
} |
|
||||
|
|
||||
function ScrollToFirstVisibleMessage(projectName) |
|
||||
{ |
|
||||
if(!projectName || 0 === projectName.length) |
|
||||
{ |
|
||||
return; |
|
||||
} |
|
||||
|
|
||||
// First try the 'Show messages' row |
|
||||
if(!scrollToFirstVisibleRow('MessageRowHeaderShow' + projectName)) |
|
||||
{ |
|
||||
// Failed to find a visible row for 'Show messages', try an actual message row |
|
||||
scrollToFirstVisibleRow('MessageRowClass' + projectName); |
|
||||
} |
|
||||
} |
|
||||
</script></head><body><h1 _locID="ConversionReport"> |
|
||||
마이그레이션 보고서 - </h1><div id="content"><h2 _locID="OverviewTitle">개요</h2><div id="overview"><table><tr><th></th><th _locID="ProjectTableHeader">프로젝트</th><th _locID="PathTableHeader">경로</th><th _locID="ErrorsTableHeader">오류</th><th _locID="WarningsTableHeader">경고</th><th _locID="MessagesTableHeader">메시지</th></tr><tr><td class="IconErrorEncoded" /><td><strong><a href="#Setup1">Setup1</a></strong></td><td>Setup1\Setup1.vdproj</td><td class="textCentered"><a href="#Setup1Error">1</a></td><td class="textCentered"><a>0</a></td><td class="textCentered"><a href="#">0</a></td></tr><tr><td class="IconSuccessEncoded" /><td><strong><a href="#Housing">Housing</a></strong></td><td>Housing.csproj</td><td class="textCentered"><a>0</a></td><td class="textCentered"><a>0</a></td><td class="textCentered"><a href="#">0</a></td></tr><tr><td class="IconSuccessEncoded" /><td><strong><a href="#Solution"><span _locID="OverviewSolutionSpan">솔루션</span></a></strong></td><td>Housing.sln</td><td class="textCentered"><a>0</a></td><td class="textCentered"><a>0</a></td><td class="textCentered"><a href="#" onclick="ScrollToFirstVisibleMessage('Solution'); return false;">1</a></td></tr></table></div><h2 _locID="SolutionAndProjectsTitle">솔루션 및 프로젝트</h2><div id="messages"><a name="Setup1" /><h3>Setup1</h3><table><tr id="Setup1HeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">메시지</th></tr><tr name="ErrorRowClassSetup1"><td class="IconErrorEncoded"><a name="Setup1Error" /></td><td class="messageCell"><strong>Setup1\Setup1.vdproj: |
|
||||
</strong><span>이 프로젝트 형식을 기반으로 하는 애플리케이션을 찾지 못했습니다. 추가 정보를 보려면 이 링크를 확인하십시오. 54435603-dbb4-11d2-8724-00a0c9a8b90c</span></td></tr></table><a name="Housing" /><h3>Housing</h3><table><tr id="HousingHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">메시지</th></tr><tr><td class="IconInfoEncoded" /><td class="messageCell" _locID="NoMessagesRow">Housing 메시지가 기록되지 않았습니다. |
|
||||
</td></tr></table><a name="Solution" /><h3 _locID="ProjectDisplayNameHeader">솔루션</h3><table><tr id="SolutionHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">메시지</th></tr><tr name="MessageRowHeaderShowSolution"><td class="IconInfoEncoded" /><td class="messageCell"><a _locID="ShowAdditionalMessages" href="#" name="SolutionMessage" onclick="ToggleMessageVisibility('Solution'); return false;"> |
|
||||
표시 1 추가 메시지 |
|
||||
</a></td></tr><tr name="MessageRowClassSolution" style="display: none"><td class="IconInfoEncoded"><a name="SolutionMessage" /></td><td class="messageCell"><strong>Housing.sln: |
|
||||
</strong><span>솔루션 파일은 마이그레이션하지 않아도 됩니다.</span></td></tr><tr style="display: none" name="MessageRowHeaderHideSolution"><td class="IconInfoEncoded" /><td class="messageCell"><a _locID="HideAdditionalMessages" href="#" name="SolutionMessage" onclick="ToggleMessageVisibility('Solution'); return false;"> |
|
||||
숨기기 1 추가 메시지 |
|
||||
</a></td></tr></table></div></div></body></html> |
|
||||
@ -1,575 +0,0 @@ |
|||||
[Version] |
|
||||
Class=IEXPRESS |
|
||||
SEDVersion=3 |
|
||||
[Options] |
|
||||
PackagePurpose=InstallApp |
|
||||
ShowInstallProgramWindow=0 |
|
||||
HideExtractAnimation=1 |
|
||||
UseLongFileName=1 |
|
||||
InsideCompressed=0 |
|
||||
CAB_FixedSize=0 |
|
||||
CAB_ResvCodeSigning=0 |
|
||||
RebootMode=N |
|
||||
InstallPrompt=%InstallPrompt% |
|
||||
DisplayLicense=%DisplayLicense% |
|
||||
FinishMessage=%FinishMessage% |
|
||||
TargetName=%TargetName% |
|
||||
FriendlyName=%FriendlyName% |
|
||||
AppLaunched=%AppLaunched% |
|
||||
PostInstallCmd=%PostInstallCmd% |
|
||||
AdminQuietInstCmd=%AdminQuietInstCmd% |
|
||||
UserQuietInstCmd=%UserQuietInstCmd% |
|
||||
SourceFiles=SourceFiles |
|
||||
[Strings] |
|
||||
InstallPrompt= |
|
||||
DisplayLicense= |
|
||||
FinishMessage=AMO Housing setup completed. |
|
||||
TargetName=C:\Users\guseo\Desktop\AMO_Housing\installer\output\HousingSetup.exe |
|
||||
FriendlyName=AMO Housing Setup |
|
||||
AppLaunched=install.cmd |
|
||||
PostInstallCmd=<None> |
|
||||
AdminQuietInstCmd=install.cmd |
|
||||
UserQuietInstCmd=install.cmd |
|
||||
FILE0="Accessibility.dll" |
|
||||
FILE1="Azure.Core.dll" |
|
||||
FILE2="Azure.Identity.dll" |
|
||||
FILE3="clretwrc.dll" |
|
||||
FILE4="clrgc.dll" |
|
||||
FILE5="clrgcexp.dll" |
|
||||
FILE6="clrjit.dll" |
|
||||
FILE7="coreclr.dll" |
|
||||
FILE8="createdump.exe" |
|
||||
FILE9="D3DCompiler_47_cor3.dll" |
|
||||
FILE10="Database.ini" |
|
||||
FILE11="DirectWriteForwarder.dll" |
|
||||
FILE12="Hardware.ini" |
|
||||
FILE13="hostfxr.dll" |
|
||||
FILE14="hostpolicy.dll" |
|
||||
FILE15="Housing.deps.json" |
|
||||
FILE16="Housing.dll" |
|
||||
FILE17="Housing.exe" |
|
||||
FILE18="Housing.pdb" |
|
||||
FILE19="Housing.runtimeconfig.json" |
|
||||
FILE20="Housing_voltage_current_icon.ico" |
|
||||
FILE21="init.sql" |
|
||||
FILE22="InspectionSettings.ini" |
|
||||
FILE23="install.cmd" |
|
||||
FILE24="install.ps1" |
|
||||
FILE25="Microsoft.Bcl.AsyncInterfaces.dll" |
|
||||
FILE26="Microsoft.Bcl.Cryptography.dll" |
|
||||
FILE27="Microsoft.CSharp.dll" |
|
||||
FILE28="Microsoft.Data.SqlClient.dll" |
|
||||
FILE29="Microsoft.Data.SqlClient.SNI.dll" |
|
||||
FILE30="Microsoft.DiaSymReader.Native.amd64.dll" |
|
||||
FILE31="Microsoft.Extensions.Caching.Abstractions.dll" |
|
||||
FILE32="Microsoft.Extensions.Caching.Memory.dll" |
|
||||
FILE33="Microsoft.Extensions.DependencyInjection.Abstractions.dll" |
|
||||
FILE34="Microsoft.Extensions.Logging.Abstractions.dll" |
|
||||
FILE35="Microsoft.Extensions.Options.dll" |
|
||||
FILE36="Microsoft.Extensions.Primitives.dll" |
|
||||
FILE37="Microsoft.Identity.Client.dll" |
|
||||
FILE38="Microsoft.Identity.Client.Extensions.Msal.dll" |
|
||||
FILE39="Microsoft.IdentityModel.Abstractions.dll" |
|
||||
FILE40="Microsoft.IdentityModel.JsonWebTokens.dll" |
|
||||
FILE41="Microsoft.IdentityModel.Logging.dll" |
|
||||
FILE42="Microsoft.IdentityModel.Protocols.dll" |
|
||||
FILE43="Microsoft.IdentityModel.Protocols.OpenIdConnect.dll" |
|
||||
FILE44="Microsoft.IdentityModel.Tokens.dll" |
|
||||
FILE45="Microsoft.SqlServer.Server.dll" |
|
||||
FILE46="Microsoft.VisualBasic.Core.dll" |
|
||||
FILE47="Microsoft.VisualBasic.dll" |
|
||||
FILE48="Microsoft.Win32.Primitives.dll" |
|
||||
FILE49="Microsoft.Win32.Registry.AccessControl.dll" |
|
||||
FILE50="Microsoft.Win32.Registry.dll" |
|
||||
FILE51="Microsoft.Win32.SystemEvents.dll" |
|
||||
FILE52="mscordaccore.dll" |
|
||||
FILE53="mscordaccore_amd64_amd64_9.0.1726.26416.dll" |
|
||||
FILE54="mscordbi.dll" |
|
||||
FILE55="mscorlib.dll" |
|
||||
FILE56="mscorrc.dll" |
|
||||
FILE57="msquic.dll" |
|
||||
FILE58="netstandard.dll" |
|
||||
FILE59="PenImc_cor3.dll" |
|
||||
FILE60="PresentationCore.dll" |
|
||||
FILE61="PresentationFramework.Aero.dll" |
|
||||
FILE62="PresentationFramework.Aero2.dll" |
|
||||
FILE63="PresentationFramework.AeroLite.dll" |
|
||||
FILE64="PresentationFramework.Classic.dll" |
|
||||
FILE65="PresentationFramework.dll" |
|
||||
FILE66="PresentationFramework.Fluent.dll" |
|
||||
FILE67="PresentationFramework.Luna.dll" |
|
||||
FILE68="PresentationFramework.Royale.dll" |
|
||||
FILE69="PresentationFramework-SystemCore.dll" |
|
||||
FILE70="PresentationFramework-SystemData.dll" |
|
||||
FILE71="PresentationFramework-SystemDrawing.dll" |
|
||||
FILE72="PresentationFramework-SystemXml.dll" |
|
||||
FILE73="PresentationFramework-SystemXmlLinq.dll" |
|
||||
FILE74="PresentationNative_cor3.dll" |
|
||||
FILE75="PresentationUI.dll" |
|
||||
FILE76="ReachFramework.dll" |
|
||||
FILE77="System.AppContext.dll" |
|
||||
FILE78="System.Buffers.dll" |
|
||||
FILE79="System.ClientModel.dll" |
|
||||
FILE80="System.CodeDom.dll" |
|
||||
FILE81="System.Collections.Concurrent.dll" |
|
||||
FILE82="System.Collections.dll" |
|
||||
FILE83="System.Collections.Immutable.dll" |
|
||||
FILE84="System.Collections.NonGeneric.dll" |
|
||||
FILE85="System.Collections.Specialized.dll" |
|
||||
FILE86="System.ComponentModel.Annotations.dll" |
|
||||
FILE87="System.ComponentModel.DataAnnotations.dll" |
|
||||
FILE88="System.ComponentModel.dll" |
|
||||
FILE89="System.ComponentModel.EventBasedAsync.dll" |
|
||||
FILE90="System.ComponentModel.Primitives.dll" |
|
||||
FILE91="System.ComponentModel.TypeConverter.dll" |
|
||||
FILE92="System.Configuration.ConfigurationManager.dll" |
|
||||
FILE93="System.Configuration.dll" |
|
||||
FILE94="System.Console.dll" |
|
||||
FILE95="System.Core.dll" |
|
||||
FILE96="System.Data.Common.dll" |
|
||||
FILE97="System.Data.DataSetExtensions.dll" |
|
||||
FILE98="System.Data.dll" |
|
||||
FILE99="System.Diagnostics.Contracts.dll" |
|
||||
FILE100="System.Diagnostics.Debug.dll" |
|
||||
FILE101="System.Diagnostics.DiagnosticSource.dll" |
|
||||
FILE102="System.Diagnostics.EventLog.dll" |
|
||||
FILE103="System.Diagnostics.EventLog.Messages.dll" |
|
||||
FILE104="System.Diagnostics.FileVersionInfo.dll" |
|
||||
FILE105="System.Diagnostics.PerformanceCounter.dll" |
|
||||
FILE106="System.Diagnostics.Process.dll" |
|
||||
FILE107="System.Diagnostics.StackTrace.dll" |
|
||||
FILE108="System.Diagnostics.TextWriterTraceListener.dll" |
|
||||
FILE109="System.Diagnostics.Tools.dll" |
|
||||
FILE110="System.Diagnostics.TraceSource.dll" |
|
||||
FILE111="System.Diagnostics.Tracing.dll" |
|
||||
FILE112="System.DirectoryServices.dll" |
|
||||
FILE113="System.dll" |
|
||||
FILE114="System.Drawing.dll" |
|
||||
FILE115="System.Drawing.Primitives.dll" |
|
||||
FILE116="System.Dynamic.Runtime.dll" |
|
||||
FILE117="System.Formats.Asn1.dll" |
|
||||
FILE118="System.Formats.Nrbf.dll" |
|
||||
FILE119="System.Formats.Tar.dll" |
|
||||
FILE120="System.Globalization.Calendars.dll" |
|
||||
FILE121="System.Globalization.dll" |
|
||||
FILE122="System.Globalization.Extensions.dll" |
|
||||
FILE123="System.IdentityModel.Tokens.Jwt.dll" |
|
||||
FILE124="System.IO.Compression.Brotli.dll" |
|
||||
FILE125="System.IO.Compression.dll" |
|
||||
FILE126="System.IO.Compression.FileSystem.dll" |
|
||||
FILE127="System.IO.Compression.Native.dll" |
|
||||
FILE128="System.IO.Compression.ZipFile.dll" |
|
||||
FILE129="System.IO.dll" |
|
||||
FILE130="System.IO.FileSystem.AccessControl.dll" |
|
||||
FILE131="System.IO.FileSystem.dll" |
|
||||
FILE132="System.IO.FileSystem.DriveInfo.dll" |
|
||||
FILE133="System.IO.FileSystem.Primitives.dll" |
|
||||
FILE134="System.IO.FileSystem.Watcher.dll" |
|
||||
FILE135="System.IO.IsolatedStorage.dll" |
|
||||
FILE136="System.IO.MemoryMappedFiles.dll" |
|
||||
FILE137="System.IO.Packaging.dll" |
|
||||
FILE138="System.IO.Pipelines.dll" |
|
||||
FILE139="System.IO.Pipes.AccessControl.dll" |
|
||||
FILE140="System.IO.Pipes.dll" |
|
||||
FILE141="System.IO.Ports.dll" |
|
||||
FILE142="System.IO.UnmanagedMemoryStream.dll" |
|
||||
FILE143="System.Linq.dll" |
|
||||
FILE144="System.Linq.Expressions.dll" |
|
||||
FILE145="System.Linq.Parallel.dll" |
|
||||
FILE146="System.Linq.Queryable.dll" |
|
||||
FILE147="System.Memory.Data.dll" |
|
||||
FILE148="System.Memory.dll" |
|
||||
FILE149="System.Net.dll" |
|
||||
FILE150="System.Net.Http.dll" |
|
||||
FILE151="System.Net.Http.Json.dll" |
|
||||
FILE152="System.Net.HttpListener.dll" |
|
||||
FILE153="System.Net.Mail.dll" |
|
||||
FILE154="System.Net.NameResolution.dll" |
|
||||
FILE155="System.Net.NetworkInformation.dll" |
|
||||
FILE156="System.Net.Ping.dll" |
|
||||
FILE157="System.Net.Primitives.dll" |
|
||||
FILE158="System.Net.Quic.dll" |
|
||||
FILE159="System.Net.Requests.dll" |
|
||||
FILE160="System.Net.Security.dll" |
|
||||
FILE161="System.Net.ServicePoint.dll" |
|
||||
FILE162="System.Net.Sockets.dll" |
|
||||
FILE163="System.Net.WebClient.dll" |
|
||||
FILE164="System.Net.WebHeaderCollection.dll" |
|
||||
FILE165="System.Net.WebProxy.dll" |
|
||||
FILE166="System.Net.WebSockets.Client.dll" |
|
||||
FILE167="System.Net.WebSockets.dll" |
|
||||
FILE168="System.Numerics.dll" |
|
||||
FILE169="System.Numerics.Vectors.dll" |
|
||||
FILE170="System.ObjectModel.dll" |
|
||||
FILE171="System.Printing.dll" |
|
||||
FILE172="System.Private.CoreLib.dll" |
|
||||
FILE173="System.Private.DataContractSerialization.dll" |
|
||||
FILE174="System.Private.Uri.dll" |
|
||||
FILE175="System.Private.Xml.dll" |
|
||||
FILE176="System.Private.Xml.Linq.dll" |
|
||||
FILE177="System.Reflection.DispatchProxy.dll" |
|
||||
FILE178="System.Reflection.dll" |
|
||||
FILE179="System.Reflection.Emit.dll" |
|
||||
FILE180="System.Reflection.Emit.ILGeneration.dll" |
|
||||
FILE181="System.Reflection.Emit.Lightweight.dll" |
|
||||
FILE182="System.Reflection.Extensions.dll" |
|
||||
FILE183="System.Reflection.Metadata.dll" |
|
||||
FILE184="System.Reflection.Primitives.dll" |
|
||||
FILE185="System.Reflection.TypeExtensions.dll" |
|
||||
FILE186="System.Resources.Extensions.dll" |
|
||||
FILE187="System.Resources.Reader.dll" |
|
||||
FILE188="System.Resources.ResourceManager.dll" |
|
||||
FILE189="System.Resources.Writer.dll" |
|
||||
FILE190="System.Runtime.CompilerServices.Unsafe.dll" |
|
||||
FILE191="System.Runtime.CompilerServices.VisualC.dll" |
|
||||
FILE192="System.Runtime.dll" |
|
||||
FILE193="System.Runtime.Extensions.dll" |
|
||||
FILE194="System.Runtime.Handles.dll" |
|
||||
FILE195="System.Runtime.InteropServices.dll" |
|
||||
FILE196="System.Runtime.InteropServices.JavaScript.dll" |
|
||||
FILE197="System.Runtime.InteropServices.RuntimeInformation.dll" |
|
||||
FILE198="System.Runtime.Intrinsics.dll" |
|
||||
FILE199="System.Runtime.Loader.dll" |
|
||||
FILE200="System.Runtime.Numerics.dll" |
|
||||
FILE201="System.Runtime.Serialization.dll" |
|
||||
FILE202="System.Runtime.Serialization.Formatters.dll" |
|
||||
FILE203="System.Runtime.Serialization.Json.dll" |
|
||||
FILE204="System.Runtime.Serialization.Primitives.dll" |
|
||||
FILE205="System.Runtime.Serialization.Xml.dll" |
|
||||
FILE206="System.Security.AccessControl.dll" |
|
||||
FILE207="System.Security.Claims.dll" |
|
||||
FILE208="System.Security.Cryptography.Algorithms.dll" |
|
||||
FILE209="System.Security.Cryptography.Cng.dll" |
|
||||
FILE210="System.Security.Cryptography.Csp.dll" |
|
||||
FILE211="System.Security.Cryptography.dll" |
|
||||
FILE212="System.Security.Cryptography.Encoding.dll" |
|
||||
FILE213="System.Security.Cryptography.OpenSsl.dll" |
|
||||
FILE214="System.Security.Cryptography.Pkcs.dll" |
|
||||
FILE215="System.Security.Cryptography.Primitives.dll" |
|
||||
FILE216="System.Security.Cryptography.ProtectedData.dll" |
|
||||
FILE217="System.Security.Cryptography.X509Certificates.dll" |
|
||||
FILE218="System.Security.Cryptography.Xml.dll" |
|
||||
FILE219="System.Security.dll" |
|
||||
FILE220="System.Security.Permissions.dll" |
|
||||
FILE221="System.Security.Principal.dll" |
|
||||
FILE222="System.Security.Principal.Windows.dll" |
|
||||
FILE223="System.Security.SecureString.dll" |
|
||||
FILE224="System.ServiceModel.Web.dll" |
|
||||
FILE225="System.ServiceProcess.dll" |
|
||||
FILE226="System.Text.Encoding.CodePages.dll" |
|
||||
FILE227="System.Text.Encoding.dll" |
|
||||
FILE228="System.Text.Encoding.Extensions.dll" |
|
||||
FILE229="System.Text.Encodings.Web.dll" |
|
||||
FILE230="System.Text.Json.dll" |
|
||||
FILE231="System.Text.RegularExpressions.dll" |
|
||||
FILE232="System.Threading.AccessControl.dll" |
|
||||
FILE233="System.Threading.Channels.dll" |
|
||||
FILE234="System.Threading.dll" |
|
||||
FILE235="System.Threading.Overlapped.dll" |
|
||||
FILE236="System.Threading.Tasks.Dataflow.dll" |
|
||||
FILE237="System.Threading.Tasks.dll" |
|
||||
FILE238="System.Threading.Tasks.Extensions.dll" |
|
||||
FILE239="System.Threading.Tasks.Parallel.dll" |
|
||||
FILE240="System.Threading.Thread.dll" |
|
||||
FILE241="System.Threading.ThreadPool.dll" |
|
||||
FILE242="System.Threading.Timer.dll" |
|
||||
FILE243="System.Transactions.dll" |
|
||||
FILE244="System.Transactions.Local.dll" |
|
||||
FILE245="System.ValueTuple.dll" |
|
||||
FILE246="System.Web.dll" |
|
||||
FILE247="System.Web.HttpUtility.dll" |
|
||||
FILE248="System.Windows.Controls.Ribbon.dll" |
|
||||
FILE249="System.Windows.dll" |
|
||||
FILE250="System.Windows.Extensions.dll" |
|
||||
FILE251="System.Windows.Input.Manipulations.dll" |
|
||||
FILE252="System.Windows.Presentation.dll" |
|
||||
FILE253="System.Xaml.dll" |
|
||||
FILE254="System.Xml.dll" |
|
||||
FILE255="System.Xml.Linq.dll" |
|
||||
FILE256="System.Xml.ReaderWriter.dll" |
|
||||
FILE257="System.Xml.Serialization.dll" |
|
||||
FILE258="System.Xml.XDocument.dll" |
|
||||
FILE259="System.Xml.XmlDocument.dll" |
|
||||
FILE260="System.Xml.XmlSerializer.dll" |
|
||||
FILE261="System.Xml.XPath.dll" |
|
||||
FILE262="System.Xml.XPath.XDocument.dll" |
|
||||
FILE263="UIAutomationClient.dll" |
|
||||
FILE264="UIAutomationClientSideProviders.dll" |
|
||||
FILE265="UIAutomationProvider.dll" |
|
||||
FILE266="UIAutomationTypes.dll" |
|
||||
FILE267="vcruntime140_cor3.dll" |
|
||||
FILE268="WindowsBase.dll" |
|
||||
FILE269="wpfgfx_cor3.dll" |
|
||||
[SourceFiles] |
|
||||
SourceFiles0=C:\Users\guseo\Desktop\AMO_Housing\installer\staging\ |
|
||||
[SourceFiles0] |
|
||||
%FILE0%= |
|
||||
%FILE1%= |
|
||||
%FILE2%= |
|
||||
%FILE3%= |
|
||||
%FILE4%= |
|
||||
%FILE5%= |
|
||||
%FILE6%= |
|
||||
%FILE7%= |
|
||||
%FILE8%= |
|
||||
%FILE9%= |
|
||||
%FILE10%= |
|
||||
%FILE11%= |
|
||||
%FILE12%= |
|
||||
%FILE13%= |
|
||||
%FILE14%= |
|
||||
%FILE15%= |
|
||||
%FILE16%= |
|
||||
%FILE17%= |
|
||||
%FILE18%= |
|
||||
%FILE19%= |
|
||||
%FILE20%= |
|
||||
%FILE21%= |
|
||||
%FILE22%= |
|
||||
%FILE23%= |
|
||||
%FILE24%= |
|
||||
%FILE25%= |
|
||||
%FILE26%= |
|
||||
%FILE27%= |
|
||||
%FILE28%= |
|
||||
%FILE29%= |
|
||||
%FILE30%= |
|
||||
%FILE31%= |
|
||||
%FILE32%= |
|
||||
%FILE33%= |
|
||||
%FILE34%= |
|
||||
%FILE35%= |
|
||||
%FILE36%= |
|
||||
%FILE37%= |
|
||||
%FILE38%= |
|
||||
%FILE39%= |
|
||||
%FILE40%= |
|
||||
%FILE41%= |
|
||||
%FILE42%= |
|
||||
%FILE43%= |
|
||||
%FILE44%= |
|
||||
%FILE45%= |
|
||||
%FILE46%= |
|
||||
%FILE47%= |
|
||||
%FILE48%= |
|
||||
%FILE49%= |
|
||||
%FILE50%= |
|
||||
%FILE51%= |
|
||||
%FILE52%= |
|
||||
%FILE53%= |
|
||||
%FILE54%= |
|
||||
%FILE55%= |
|
||||
%FILE56%= |
|
||||
%FILE57%= |
|
||||
%FILE58%= |
|
||||
%FILE59%= |
|
||||
%FILE60%= |
|
||||
%FILE61%= |
|
||||
%FILE62%= |
|
||||
%FILE63%= |
|
||||
%FILE64%= |
|
||||
%FILE65%= |
|
||||
%FILE66%= |
|
||||
%FILE67%= |
|
||||
%FILE68%= |
|
||||
%FILE69%= |
|
||||
%FILE70%= |
|
||||
%FILE71%= |
|
||||
%FILE72%= |
|
||||
%FILE73%= |
|
||||
%FILE74%= |
|
||||
%FILE75%= |
|
||||
%FILE76%= |
|
||||
%FILE77%= |
|
||||
%FILE78%= |
|
||||
%FILE79%= |
|
||||
%FILE80%= |
|
||||
%FILE81%= |
|
||||
%FILE82%= |
|
||||
%FILE83%= |
|
||||
%FILE84%= |
|
||||
%FILE85%= |
|
||||
%FILE86%= |
|
||||
%FILE87%= |
|
||||
%FILE88%= |
|
||||
%FILE89%= |
|
||||
%FILE90%= |
|
||||
%FILE91%= |
|
||||
%FILE92%= |
|
||||
%FILE93%= |
|
||||
%FILE94%= |
|
||||
%FILE95%= |
|
||||
%FILE96%= |
|
||||
%FILE97%= |
|
||||
%FILE98%= |
|
||||
%FILE99%= |
|
||||
%FILE100%= |
|
||||
%FILE101%= |
|
||||
%FILE102%= |
|
||||
%FILE103%= |
|
||||
%FILE104%= |
|
||||
%FILE105%= |
|
||||
%FILE106%= |
|
||||
%FILE107%= |
|
||||
%FILE108%= |
|
||||
%FILE109%= |
|
||||
%FILE110%= |
|
||||
%FILE111%= |
|
||||
%FILE112%= |
|
||||
%FILE113%= |
|
||||
%FILE114%= |
|
||||
%FILE115%= |
|
||||
%FILE116%= |
|
||||
%FILE117%= |
|
||||
%FILE118%= |
|
||||
%FILE119%= |
|
||||
%FILE120%= |
|
||||
%FILE121%= |
|
||||
%FILE122%= |
|
||||
%FILE123%= |
|
||||
%FILE124%= |
|
||||
%FILE125%= |
|
||||
%FILE126%= |
|
||||
%FILE127%= |
|
||||
%FILE128%= |
|
||||
%FILE129%= |
|
||||
%FILE130%= |
|
||||
%FILE131%= |
|
||||
%FILE132%= |
|
||||
%FILE133%= |
|
||||
%FILE134%= |
|
||||
%FILE135%= |
|
||||
%FILE136%= |
|
||||
%FILE137%= |
|
||||
%FILE138%= |
|
||||
%FILE139%= |
|
||||
%FILE140%= |
|
||||
%FILE141%= |
|
||||
%FILE142%= |
|
||||
%FILE143%= |
|
||||
%FILE144%= |
|
||||
%FILE145%= |
|
||||
%FILE146%= |
|
||||
%FILE147%= |
|
||||
%FILE148%= |
|
||||
%FILE149%= |
|
||||
%FILE150%= |
|
||||
%FILE151%= |
|
||||
%FILE152%= |
|
||||
%FILE153%= |
|
||||
%FILE154%= |
|
||||
%FILE155%= |
|
||||
%FILE156%= |
|
||||
%FILE157%= |
|
||||
%FILE158%= |
|
||||
%FILE159%= |
|
||||
%FILE160%= |
|
||||
%FILE161%= |
|
||||
%FILE162%= |
|
||||
%FILE163%= |
|
||||
%FILE164%= |
|
||||
%FILE165%= |
|
||||
%FILE166%= |
|
||||
%FILE167%= |
|
||||
%FILE168%= |
|
||||
%FILE169%= |
|
||||
%FILE170%= |
|
||||
%FILE171%= |
|
||||
%FILE172%= |
|
||||
%FILE173%= |
|
||||
%FILE174%= |
|
||||
%FILE175%= |
|
||||
%FILE176%= |
|
||||
%FILE177%= |
|
||||
%FILE178%= |
|
||||
%FILE179%= |
|
||||
%FILE180%= |
|
||||
%FILE181%= |
|
||||
%FILE182%= |
|
||||
%FILE183%= |
|
||||
%FILE184%= |
|
||||
%FILE185%= |
|
||||
%FILE186%= |
|
||||
%FILE187%= |
|
||||
%FILE188%= |
|
||||
%FILE189%= |
|
||||
%FILE190%= |
|
||||
%FILE191%= |
|
||||
%FILE192%= |
|
||||
%FILE193%= |
|
||||
%FILE194%= |
|
||||
%FILE195%= |
|
||||
%FILE196%= |
|
||||
%FILE197%= |
|
||||
%FILE198%= |
|
||||
%FILE199%= |
|
||||
%FILE200%= |
|
||||
%FILE201%= |
|
||||
%FILE202%= |
|
||||
%FILE203%= |
|
||||
%FILE204%= |
|
||||
%FILE205%= |
|
||||
%FILE206%= |
|
||||
%FILE207%= |
|
||||
%FILE208%= |
|
||||
%FILE209%= |
|
||||
%FILE210%= |
|
||||
%FILE211%= |
|
||||
%FILE212%= |
|
||||
%FILE213%= |
|
||||
%FILE214%= |
|
||||
%FILE215%= |
|
||||
%FILE216%= |
|
||||
%FILE217%= |
|
||||
%FILE218%= |
|
||||
%FILE219%= |
|
||||
%FILE220%= |
|
||||
%FILE221%= |
|
||||
%FILE222%= |
|
||||
%FILE223%= |
|
||||
%FILE224%= |
|
||||
%FILE225%= |
|
||||
%FILE226%= |
|
||||
%FILE227%= |
|
||||
%FILE228%= |
|
||||
%FILE229%= |
|
||||
%FILE230%= |
|
||||
%FILE231%= |
|
||||
%FILE232%= |
|
||||
%FILE233%= |
|
||||
%FILE234%= |
|
||||
%FILE235%= |
|
||||
%FILE236%= |
|
||||
%FILE237%= |
|
||||
%FILE238%= |
|
||||
%FILE239%= |
|
||||
%FILE240%= |
|
||||
%FILE241%= |
|
||||
%FILE242%= |
|
||||
%FILE243%= |
|
||||
%FILE244%= |
|
||||
%FILE245%= |
|
||||
%FILE246%= |
|
||||
%FILE247%= |
|
||||
%FILE248%= |
|
||||
%FILE249%= |
|
||||
%FILE250%= |
|
||||
%FILE251%= |
|
||||
%FILE252%= |
|
||||
%FILE253%= |
|
||||
%FILE254%= |
|
||||
%FILE255%= |
|
||||
%FILE256%= |
|
||||
%FILE257%= |
|
||||
%FILE258%= |
|
||||
%FILE259%= |
|
||||
%FILE260%= |
|
||||
%FILE261%= |
|
||||
%FILE262%= |
|
||||
%FILE263%= |
|
||||
%FILE264%= |
|
||||
%FILE265%= |
|
||||
%FILE266%= |
|
||||
%FILE267%= |
|
||||
%FILE268%= |
|
||||
%FILE269%= |
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,13 +0,0 @@ |
|||||
[Database] |
|
||||
IP=127.0.0.1 |
|
||||
Database=Housing |
|
||||
DbId=sa |
|
||||
DbPw=your_password |
|
||||
Encrypt=True |
|
||||
TrustServerCertificate=True |
|
||||
Timeout=5 |
|
||||
|
|
||||
[Login] |
|
||||
Procedure=dbo.CheckOperator |
|
||||
ProcessName=Housing |
|
||||
OfflinePreview=true |
|
||||
Binary file not shown.
@ -1,78 +0,0 @@ |
|||||
[Board] |
|
||||
PortName=COM5 |
|
||||
BaudRate=115200 |
|
||||
ReadTimeout=5000 |
|
||||
PreConnectCommand=x00o |
|
||||
ConnectCommand=x00c_001101:owt28006727ea97c7801 |
|
||||
ReadIdCommand=x00c_001101:ow2800326003e |
|
||||
PostReadIdCommand=x00o |
|
||||
CalDefaultCommand=x00c_001001:owt28006727ea97c7801 |
|
||||
EndToken=<end> |
|
||||
DtrEnable=false |
|
||||
RtsEnable=false |
|
||||
|
|
||||
[BarcodeScanner] |
|
||||
Enabled=true |
|
||||
PortName=Auto |
|
||||
BaudRate=9600 |
|
||||
ReadTimeout=500 |
|
||||
IdleCommitMilliseconds=250 |
|
||||
DtrEnable=true |
|
||||
RtsEnable=true |
|
||||
|
|
||||
[StartSignal] |
|
||||
; USB-6501 |
|
||||
Enabled=true |
|
||||
Connection=Ni6501 |
|
||||
PhysicalChannel=Dev1/port0/line0 |
|
||||
ActiveState=High |
|
||||
PollIntervalMilliseconds=50 |
|
||||
TimeoutMilliseconds=30000 |
|
||||
PostSignalDelayMilliseconds=2000 |
|
||||
RequireInactiveBeforeStart=true |
|
||||
|
|
||||
[Equipment] |
|
||||
; V 출력: Keysight 34465A DMM 값 |
|
||||
; A 출력: Keysight E36233A Power Supply CH1 Current 값 |
|
||||
; USB 장비는 Keysight Connection Expert 또는 NI MAX에서 보이는 VISA 주소를 Resource |
|
||||
Timeout=5000 |
|
||||
SettleMilliseconds=300 |
|
||||
PreBoardCommand=VOLT 5, (@2);OUTP ON, (@2) |
|
||||
PreBoardDelayMilliseconds=2000 |
|
||||
LogoutCommand=OUTP OFF, (@1);OUTP OFF, (@2) |
|
||||
|
|
||||
; 34465A DMM |
|
||||
VoltageConnection=LAN |
|
||||
VoltageResource= |
|
||||
VoltageIdnMatch=34465A |
|
||||
VoltageHost=192.168.200.3 |
|
||||
VoltagePort=5025 |
|
||||
VoltageSetupCommand= |
|
||||
VoltageReadCommand=MEAS:VOLT:DC? |
|
||||
|
|
||||
; E36233A Power Supply |
|
||||
CurrentConnection=LAN |
|
||||
CurrentResource= |
|
||||
CurrentIdnMatch=E36233A |
|
||||
; Change this to the E36233A LAN IP if the instrument uses a different address. |
|
||||
CurrentHost=192.168.200.111 |
|
||||
CurrentPort=5025 |
|
||||
CurrentPortName= |
|
||||
CurrentBaudRate=9600 |
|
||||
CurrentTerminator=LF |
|
||||
CurrentSetupCommand=OUTP ON, (@1) |
|
||||
CurrentCleanupCommand=OUTP OFF, (@1) |
|
||||
CurrentReadCommand=MEAS:CURR? (@1) |
|
||||
|
|
||||
; COM 포트로 잡히는 장비 예시: |
|
||||
; VoltageConnection=Serial |
|
||||
; VoltagePortName=Auto |
|
||||
; VoltageBaudRate=115200 |
|
||||
|
|
||||
; LAN 장비 예시: |
|
||||
; VoltageConnection=Tcp |
|
||||
; VoltageHost=192.168.0.10 |
|
||||
; VoltagePort=5025 |
|
||||
|
|
||||
; E36233A 파워서플라이에서 CH1 전압까지 읽고 싶을 때 예시: |
|
||||
; VoltageReadCommand=MEAS:VOLT? CH1 |
|
||||
File diff suppressed because it is too large
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,20 +0,0 @@ |
|||||
{ |
|
||||
"runtimeOptions": { |
|
||||
"tfm": "net9.0", |
|
||||
"includedFrameworks": [ |
|
||||
{ |
|
||||
"name": "Microsoft.NETCore.App", |
|
||||
"version": "9.0.17" |
|
||||
}, |
|
||||
{ |
|
||||
"name": "Microsoft.WindowsDesktop.App", |
|
||||
"version": "9.0.17" |
|
||||
} |
|
||||
], |
|
||||
"configProperties": { |
|
||||
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false, |
|
||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false, |
|
||||
"CSWINRT_USE_WINDOWS_UI_XAML_PROJECTIONS": false |
|
||||
} |
|
||||
} |
|
||||
} |
|
||||
|
Before Width: | Height: | Size: 144 KiB |
@ -1,5 +0,0 @@ |
|||||
[Judgement] |
|
||||
VMin=0.00 |
|
||||
VMax=9.99 |
|
||||
AMin=0.00 |
|
||||
AMax=9.99 |
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue