개정판 4b5077f0
MarkusAutoUpdate wix Setup 추가
Change-Id: If489ba9421d146e26d0d778f5a35cf8e80e536ba
FinalService/KCOM_FinalService/KCOM_FinalService/KCOM_FinalService.csproj | ||
---|---|---|
5 | 5 |
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
6 | 6 |
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
7 | 7 |
<ProjectGuid>{2BE3F054-D494-4712-927F-47E2FFB52170}</ProjectGuid> |
8 |
<OutputType>Exe</OutputType> |
|
8 |
<OutputType>WinExe</OutputType>
|
|
9 | 9 |
<RootNamespace>KCOM_FinalService</RootNamespace> |
10 | 10 |
<AssemblyName>KCOM_FinalService</AssemblyName> |
11 | 11 |
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion> |
... | ... | |
38 | 38 |
</StartupObject> |
39 | 39 |
</PropertyGroup> |
40 | 40 |
<ItemGroup> |
41 |
<Reference Include="log4net, Version=2.0.8.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
|
|
42 |
<HintPath>..\packages\log4net.2.0.8\lib\net40-full\log4net.dll</HintPath>
|
|
41 |
<Reference Include="log4net, Version=2.0.11.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
|
|
42 |
<HintPath>..\packages\log4net.2.0.11\lib\net45\log4net.dll</HintPath>
|
|
43 | 43 |
</Reference> |
44 | 44 |
<Reference Include="System" /> |
45 |
<Reference Include="System.Configuration" /> |
|
45 | 46 |
<Reference Include="System.Configuration.Install" /> |
46 | 47 |
<Reference Include="System.Core" /> |
47 | 48 |
<Reference Include="System.Data.Entity" /> |
48 | 49 |
<Reference Include="System.Management" /> |
49 | 50 |
<Reference Include="System.Runtime.Remoting" /> |
50 | 51 |
<Reference Include="System.ServiceModel" /> |
52 |
<Reference Include="System.Web" /> |
|
51 | 53 |
<Reference Include="System.Xml.Linq" /> |
52 | 54 |
<Reference Include="System.Data.DataSetExtensions" /> |
53 | 55 |
<Reference Include="Microsoft.CSharp" /> |
FinalService/KCOM_FinalService/KCOM_FinalService/Program.cs | ||
---|---|---|
10 | 10 |
|
11 | 11 |
namespace KCOM_FinalService |
12 | 12 |
{ |
13 |
static class Program |
|
13 |
public static class Program
|
|
14 | 14 |
{ |
15 | 15 |
/// <summary> |
16 | 16 |
/// Application Data Folder |
... | ... | |
33 | 33 |
/// <summary> |
34 | 34 |
/// The main entry point for the application. |
35 | 35 |
/// </summary> |
36 |
static void Main(string[] args) |
|
36 |
public static void Main(string[] args)
|
|
37 | 37 |
{ |
38 | 38 |
AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException); |
39 | 39 |
|
40 | 40 |
log4net.GlobalContext.Properties["LogFilePath"] = Path.Combine(AppDataFolder, "Log", "FinalService.log"); |
41 |
|
|
41 |
|
|
42 | 42 |
/// get legacy interface for upload final pdf file |
43 | 43 |
string UploadFinalDllPath = System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "UploadFinal.dll"); |
44 | 44 |
if (File.Exists(UploadFinalDllPath)) |
... | ... | |
54 | 54 |
} |
55 | 55 |
} |
56 | 56 |
|
57 |
if (Environment.UserInteractive)
|
|
57 |
try
|
|
58 | 58 |
{ |
59 |
try |
|
60 |
{ |
|
61 |
service.TestStartupAndStop(args); |
|
62 |
|
|
63 |
} |
|
64 |
catch (Exception ex) |
|
65 |
{ |
|
66 |
Console.WriteLine(ex); |
|
67 |
} |
|
59 |
service.TestStartupAndStop(args); |
|
68 | 60 |
} |
69 |
else
|
|
61 |
catch (Exception ex)
|
|
70 | 62 |
{ |
71 |
/// up to here |
|
72 |
ServicesToRun = new ServiceBase[] |
|
73 |
{ new MarkusFinalService() |
|
74 |
}; |
|
75 |
ServiceBase.Run(ServicesToRun); |
|
63 |
Console.WriteLine(ex); |
|
76 | 64 |
} |
77 | 65 |
} |
78 | 66 |
|
FinalService/KCOM_FinalService/KCOM_FinalService/packages.config | ||
---|---|---|
1 | 1 |
<?xml version="1.0" encoding="utf-8"?> |
2 | 2 |
<packages> |
3 |
<package id="log4net" version="2.0.8" targetFramework="net40" requireReinstallation="true" />
|
|
3 |
<package id="log4net" version="2.0.11" targetFramework="net461" />
|
|
4 | 4 |
</packages> |
FinalService/KCOM_FinalService/KCOM_FinalServiceConsole/KCOM_FinalServiceConsole.csproj | ||
---|---|---|
6 | 6 |
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
7 | 7 |
<ProjectGuid>{824A4880-EDEA-4F50-9207-F8B9E3096375}</ProjectGuid> |
8 | 8 |
<OutputType>Exe</OutputType> |
9 |
<RootNamespace>KCOM_FinalService</RootNamespace> |
|
10 |
<AssemblyName>KCOM_FinalService</AssemblyName> |
|
9 |
<RootNamespace>KCOM_FinalService.Console</RootNamespace>
|
|
10 |
<AssemblyName>KCOM_FinalService.Console</AssemblyName>
|
|
11 | 11 |
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion> |
12 | 12 |
<FileAlignment>512</FileAlignment> |
13 | 13 |
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> |
... | ... | |
22 | 22 |
<DefineConstants>DEBUG;TRACE</DefineConstants> |
23 | 23 |
<ErrorReport>prompt</ErrorReport> |
24 | 24 |
<WarningLevel>4</WarningLevel> |
25 |
<Prefer32Bit>false</Prefer32Bit> |
|
25 | 26 |
</PropertyGroup> |
26 | 27 |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
27 | 28 |
<PlatformTarget>AnyCPU</PlatformTarget> |
... | ... | |
32 | 33 |
<ErrorReport>prompt</ErrorReport> |
33 | 34 |
<WarningLevel>4</WarningLevel> |
34 | 35 |
</PropertyGroup> |
36 |
<PropertyGroup> |
|
37 |
<StartupObject> |
|
38 |
</StartupObject> |
|
39 |
</PropertyGroup> |
|
35 | 40 |
<ItemGroup> |
36 | 41 |
<None Include="App.config" /> |
42 |
<None Include="packages.config" /> |
|
37 | 43 |
</ItemGroup> |
38 | 44 |
<ItemGroup> |
39 |
<Compile Include="Program.cs" /> |
|
40 |
</ItemGroup> |
|
41 |
<ItemGroup> |
|
45 |
<ProjectReference Include="..\..\..\Markus.Fonts\Markus.Fonts.csproj"> |
|
46 |
<Project>{eb1de04a-d86e-4bf7-b095-f72207923c3b}</Project> |
|
47 |
<Name>Markus.Fonts</Name> |
|
48 |
</ProjectReference> |
|
49 |
<ProjectReference Include="..\KCOMDataModel\KCOMDataModel.csproj"> |
|
50 |
<Project>{629dc8cd-d458-47ef-8f02-cd12c7001c3e}</Project> |
|
51 |
<Name>KCOMDataModel</Name> |
|
52 |
</ProjectReference> |
|
42 | 53 |
<ProjectReference Include="..\KCOM_FinalService\KCOM_FinalService.csproj"> |
43 | 54 |
<Project>{2be3f054-d494-4712-927f-47e2ffb52170}</Project> |
44 | 55 |
<Name>KCOM_FinalService</Name> |
45 | 56 |
</ProjectReference> |
57 |
<ProjectReference Include="..\MarkupToPDF\MarkupToPDF.csproj"> |
|
58 |
<Project>{a714bd67-8aac-4ed8-8ecf-7853c3549a68}</Project> |
|
59 |
<Name>MarkupToPDF</Name> |
|
60 |
</ProjectReference> |
|
61 |
<ProjectReference Include="..\UploadFinal\UploadFinal.csproj"> |
|
62 |
<Project>{9cf3737a-e04d-4a55-924e-c88725dfbec7}</Project> |
|
63 |
<Name>UploadFinal</Name> |
|
64 |
</ProjectReference> |
|
65 |
</ItemGroup> |
|
66 |
<ItemGroup> |
|
67 |
<Reference Include="log4net, Version=2.0.11.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL"> |
|
68 |
<HintPath>..\packages\log4net.2.0.11\lib\net45\log4net.dll</HintPath> |
|
69 |
</Reference> |
|
70 |
<Reference Include="System" /> |
|
71 |
<Reference Include="System.Configuration" /> |
|
72 |
<Reference Include="System.ServiceProcess" /> |
|
73 |
<Reference Include="System.Web" /> |
|
74 |
</ItemGroup> |
|
75 |
<ItemGroup> |
|
76 |
<Compile Include="Program.cs" /> |
|
46 | 77 |
</ItemGroup> |
47 | 78 |
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> |
48 | 79 |
</Project> |
FinalService/KCOM_FinalService/KCOM_FinalServiceConsole/Program.cs | ||
---|---|---|
6 | 6 |
using System.Reflection; |
7 | 7 |
using System.ServiceProcess; |
8 | 8 |
using log4net; |
9 |
using KCOM_FinalService.Common; |
|
9 | 10 |
|
10 |
namespace KCOM_FinalService |
|
11 |
namespace KCOM_FinalService.Console
|
|
11 | 12 |
{ |
12 | 13 |
static class Program |
13 | 14 |
{ |
14 |
/// <summary> |
|
15 |
/// Application Data Folder |
|
16 |
/// </summary> |
|
17 |
public static string AppDataFolder |
|
18 |
{ |
|
19 |
get |
|
20 |
{ |
|
21 |
return Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData), "MARKUS"); |
|
22 |
} |
|
23 |
} |
|
24 |
|
|
25 |
public static ILog FileLogger = null; |
|
26 |
public static ServiceBase[] ServicesToRun = null; |
|
27 |
|
|
28 |
public static MethodInfo UploadFinalPDFMethod { get; set; } |
|
29 |
public static object UploadFinalPDFInst { get; set; } |
|
30 |
|
|
31 |
/// <summary> |
|
32 |
/// The main entry point for the application. |
|
33 |
/// </summary> |
|
15 |
|
|
34 | 16 |
static void Main(string[] args) |
35 | 17 |
{ |
36 |
AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException); |
|
37 |
|
|
38 |
log4net.GlobalContext.Properties["LogFilePath"] = Path.Combine(AppDataFolder, "Log", "FinalService.log"); |
|
39 |
Program.FileLogger = LogManager.GetLogger("EventLogger"); |
|
40 |
|
|
41 |
/// get legacy interface for upload final pdf file |
|
42 |
string UploadFinalDllPath = System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "UploadFinal.dll"); |
|
43 |
if (File.Exists(UploadFinalDllPath)) |
|
44 |
{ |
|
45 |
Assembly asm = Assembly.LoadFrom(UploadFinalDllPath); |
|
46 |
Type _UploadFinalClassType = asm.GetType("UploadFinal.UploadFinal"); |
|
47 |
|
|
48 |
//Legacy IF |
|
49 |
Program.UploadFinalPDFMethod = _UploadFinalClassType.GetMethod("UploadFinalPDF", new Type[] { typeof(string), typeof(string), typeof(KCOMDataModel.DataModel.FINAL_PDF), typeof(string) }); |
|
50 |
if (null != Program.UploadFinalPDFMethod) |
|
51 |
{ |
|
52 |
Program.UploadFinalPDFInst = Activator.CreateInstance(_UploadFinalClassType, null); |
|
53 |
} |
|
54 |
} |
|
55 |
|
|
56 |
if (Environment.UserInteractive) |
|
57 |
{ |
|
58 |
try |
|
59 |
{ |
|
60 |
MarkusFinalService service = new MarkusFinalService(); |
|
61 |
service.TestStartupAndStop(args); |
|
62 |
|
|
63 |
} |
|
64 |
catch (Exception ex) |
|
65 |
{ |
|
66 |
Console.WriteLine(ex); |
|
67 |
} |
|
68 |
} |
|
69 |
else |
|
70 |
{ |
|
71 |
/// up to here |
|
72 |
ServicesToRun = new ServiceBase[] |
|
73 |
{ new MarkusFinalService() |
|
74 |
}; |
|
75 |
ServiceBase.Run(ServicesToRun); |
|
76 |
} |
|
77 |
} |
|
78 |
|
|
79 |
/// <summary> |
|
80 |
/// log unhandled exception |
|
81 |
/// </summary> |
|
82 |
/// <author>humkyung</author> |
|
83 |
/// <date>2019.06.04</date> |
|
84 |
/// <param name="sender"></param> |
|
85 |
/// <param name="e"></param> |
|
86 |
private static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e) |
|
87 |
{ |
|
88 |
try |
|
89 |
{ |
|
90 |
Program.FileLogger.Fatal(e.ExceptionObject as Exception); |
|
91 |
} |
|
92 |
catch (Exception ex) |
|
93 |
{ |
|
94 |
Console.WriteLine(ex.InnerException.ToString()); |
|
95 |
} |
|
96 |
finally |
|
97 |
{ |
|
98 |
} |
|
18 |
KCOM_FinalService.Program.Main(args); |
|
99 | 19 |
} |
100 | 20 |
} |
101 | 21 |
} |
MarkusAutoUpdate/NetSparkleUpdater.sln | ||
---|---|---|
29 | 29 |
EndProject |
30 | 30 |
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MarkusUpdateExtract_Net", "src\MarkusUpdateExtract_Net\MarkusUpdateExtract_Net.csproj", "{4F66792B-F3BA-473B-94CA-1B03B65CB524}" |
31 | 31 |
EndProject |
32 |
Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "Setup", "Setup\Setup.vdproj", "{4576AF47-6E08-4290-9D7D-732F73487F9A}" |
|
33 |
ProjectSection(ProjectDependencies) = postProject |
|
34 |
{74635A21-2BAD-4522-AB95-E3E5703CD301} = {74635A21-2BAD-4522-AB95-E3E5703CD301} |
|
35 |
{4F66792B-F3BA-473B-94CA-1B03B65CB524} = {4F66792B-F3BA-473B-94CA-1B03B65CB524} |
|
36 |
{6915843C-7947-4268-B569-6F5684651DF4} = {6915843C-7947-4268-B569-6F5684651DF4} |
|
37 |
{083A8FB7-BD6C-499C-865F-68DFFCD73019} = {083A8FB7-BD6C-499C-865F-68DFFCD73019} |
|
38 |
EndProjectSection |
|
39 |
EndProject |
|
40 | 32 |
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "INI", "INI", "{C06A256F-ED9E-4F62-8713-EBEFACDABAAC}" |
41 | 33 |
ProjectSection(SolutionItems) = preProject |
42 | 34 |
INI\Markus.AppUpdate_Daelim.ini = INI\Markus.AppUpdate_Daelim.ini |
... | ... | |
53 | 45 |
EndProject |
54 | 46 |
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Kcom", "Kcom\Kcom.csproj", "{8D3750C2-4F3A-420C-9803-9E8A2FEA4CF9}" |
55 | 47 |
EndProject |
48 |
Project("{930C7802-8A8C-48F9-8165-68863BCCD9DD}") = "SetupWix", "SetupWix\SetupWix.wixproj", "{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}" |
|
49 |
EndProject |
|
56 | 50 |
Global |
57 | 51 |
GlobalSection(SolutionConfigurationPlatforms) = preSolution |
58 | 52 |
Debug_Daelim|Any CPU = Debug_Daelim|Any CPU |
... | ... | |
135 | 129 |
{74635A21-2BAD-4522-AB95-E3E5703CD301}.Release_HS|Mixed Platforms.ActiveCfg = Release|Any CPU |
136 | 130 |
{74635A21-2BAD-4522-AB95-E3E5703CD301}.Release_HS|x64.ActiveCfg = Release|Any CPU |
137 | 131 |
{74635A21-2BAD-4522-AB95-E3E5703CD301}.Release_HS|x86.ActiveCfg = Release|Any CPU |
138 |
{74635A21-2BAD-4522-AB95-E3E5703CD301}.Release_SNI|Any CPU.ActiveCfg = Release_Net452|Any CPU
|
|
139 |
{74635A21-2BAD-4522-AB95-E3E5703CD301}.Release_SNI|Any CPU.Build.0 = Release_Net452|Any CPU
|
|
132 |
{74635A21-2BAD-4522-AB95-E3E5703CD301}.Release_SNI|Any CPU.ActiveCfg = Release|Any CPU |
|
133 |
{74635A21-2BAD-4522-AB95-E3E5703CD301}.Release_SNI|Any CPU.Build.0 = Release|Any CPU |
|
140 | 134 |
{74635A21-2BAD-4522-AB95-E3E5703CD301}.Release_SNI|ARM.ActiveCfg = Release|Any CPU |
141 | 135 |
{74635A21-2BAD-4522-AB95-E3E5703CD301}.Release_SNI|ARM.Build.0 = Release|Any CPU |
142 | 136 |
{74635A21-2BAD-4522-AB95-E3E5703CD301}.Release_SNI|Mixed Platforms.ActiveCfg = Release|Any CPU |
... | ... | |
699 | 693 |
{4F66792B-F3BA-473B-94CA-1B03B65CB524}.Setup_Daelim|Mixed Platforms.ActiveCfg = Release|Any CPU |
700 | 694 |
{4F66792B-F3BA-473B-94CA-1B03B65CB524}.Setup_Daelim|x64.ActiveCfg = Release|Any CPU |
701 | 695 |
{4F66792B-F3BA-473B-94CA-1B03B65CB524}.Setup_Daelim|x86.ActiveCfg = Release|Any CPU |
702 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Debug_Daelim|Any CPU.ActiveCfg = Debug |
|
703 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Debug_Daelim|ARM.ActiveCfg = Debug |
|
704 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Debug_Daelim|Mixed Platforms.ActiveCfg = Debug |
|
705 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Debug_Daelim|x64.ActiveCfg = Debug |
|
706 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Debug_Daelim|x86.ActiveCfg = Debug |
|
707 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Debug|Any CPU.ActiveCfg = Debug |
|
708 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Debug|ARM.ActiveCfg = Debug |
|
709 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Debug|Mixed Platforms.ActiveCfg = Debug |
|
710 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Debug|x64.ActiveCfg = Debug |
|
711 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Debug|x86.ActiveCfg = Debug |
|
712 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release_Daelim_Test|Any CPU.ActiveCfg = Release_daelim_test |
|
713 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release_Daelim_Test|Any CPU.Build.0 = Release_daelim_test |
|
714 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release_Daelim_Test|ARM.ActiveCfg = Release_Daelim |
|
715 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release_Daelim_Test|ARM.Build.0 = Release_Daelim |
|
716 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release_Daelim_Test|Mixed Platforms.ActiveCfg = Release_Daelim |
|
717 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release_Daelim_Test|Mixed Platforms.Build.0 = Release_Daelim |
|
718 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release_Daelim_Test|x64.ActiveCfg = Release_Daelim |
|
719 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release_Daelim_Test|x64.Build.0 = Release_Daelim |
|
720 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release_Daelim_Test|x86.ActiveCfg = Release_Daelim |
|
721 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release_Daelim_Test|x86.Build.0 = Release_Daelim |
|
722 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release_Daelim|Any CPU.ActiveCfg = Release_Daelim |
|
723 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release_Daelim|Any CPU.Build.0 = Release_Daelim |
|
724 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release_Daelim|ARM.ActiveCfg = Release_Daelim |
|
725 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release_Daelim|ARM.Build.0 = Release_Daelim |
|
726 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release_Daelim|Mixed Platforms.ActiveCfg = Release_Daelim |
|
727 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release_Daelim|Mixed Platforms.Build.0 = Release_Daelim |
|
728 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release_Daelim|x64.ActiveCfg = Release_Daelim |
|
729 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release_Daelim|x64.Build.0 = Release_Daelim |
|
730 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release_Daelim|x86.ActiveCfg = Release_Daelim |
|
731 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release_Daelim|x86.Build.0 = Release_Daelim |
|
732 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release_HS|Any CPU.ActiveCfg = Release_HS |
|
733 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release_HS|Any CPU.Build.0 = Release_HS |
|
734 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release_HS|ARM.ActiveCfg = Release_Daelim |
|
735 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release_HS|ARM.Build.0 = Release_Daelim |
|
736 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release_HS|Mixed Platforms.ActiveCfg = Release_Daelim |
|
737 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release_HS|Mixed Platforms.Build.0 = Release_Daelim |
|
738 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release_HS|x64.ActiveCfg = Release_Daelim |
|
739 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release_HS|x64.Build.0 = Release_Daelim |
|
740 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release_HS|x86.ActiveCfg = Release_Daelim |
|
741 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release_HS|x86.Build.0 = Release_Daelim |
|
742 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release_SNI|Any CPU.ActiveCfg = Release_SNI |
|
743 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release_SNI|Any CPU.Build.0 = Release_SNI |
|
744 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release_SNI|ARM.ActiveCfg = Release |
|
745 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release_SNI|Mixed Platforms.ActiveCfg = Release |
|
746 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release_SNI|x64.ActiveCfg = Release |
|
747 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release_SNI|x86.ActiveCfg = Release |
|
748 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release|Any CPU.ActiveCfg = Release |
|
749 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release|ARM.ActiveCfg = Release |
|
750 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release|Mixed Platforms.ActiveCfg = Release |
|
751 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release|x64.ActiveCfg = Release |
|
752 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Release|x86.ActiveCfg = Release |
|
753 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Setup_Daelim|Any CPU.ActiveCfg = Release_Daelim |
|
754 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Setup_Daelim|Any CPU.Build.0 = Release_Daelim |
|
755 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Setup_Daelim|ARM.ActiveCfg = Release_Daelim |
|
756 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Setup_Daelim|ARM.Build.0 = Release_Daelim |
|
757 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Setup_Daelim|Mixed Platforms.ActiveCfg = Release_Daelim |
|
758 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Setup_Daelim|Mixed Platforms.Build.0 = Release_Daelim |
|
759 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Setup_Daelim|x64.ActiveCfg = Release_Daelim |
|
760 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Setup_Daelim|x64.Build.0 = Release_Daelim |
|
761 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Setup_Daelim|x86.ActiveCfg = Release_Daelim |
|
762 |
{4576AF47-6E08-4290-9D7D-732F73487F9A}.Setup_Daelim|x86.Build.0 = Release_Daelim |
|
763 | 696 |
{8D3750C2-4F3A-420C-9803-9E8A2FEA4CF9}.Debug_Daelim|Any CPU.ActiveCfg = Debug|Any CPU |
764 | 697 |
{8D3750C2-4F3A-420C-9803-9E8A2FEA4CF9}.Debug_Daelim|Any CPU.Build.0 = Debug|Any CPU |
765 | 698 |
{8D3750C2-4F3A-420C-9803-9E8A2FEA4CF9}.Debug_Daelim|ARM.ActiveCfg = Debug|Any CPU |
... | ... | |
839 | 772 |
{8D3750C2-4F3A-420C-9803-9E8A2FEA4CF9}.Setup_Daelim|x64.Build.0 = Release|Any CPU |
840 | 773 |
{8D3750C2-4F3A-420C-9803-9E8A2FEA4CF9}.Setup_Daelim|x86.ActiveCfg = Release|Any CPU |
841 | 774 |
{8D3750C2-4F3A-420C-9803-9E8A2FEA4CF9}.Setup_Daelim|x86.Build.0 = Release|Any CPU |
775 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Debug_Daelim|Any CPU.ActiveCfg = Release|x86 |
|
776 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Debug_Daelim|Any CPU.Build.0 = Release|x86 |
|
777 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Debug_Daelim|ARM.ActiveCfg = Release|x86 |
|
778 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Debug_Daelim|ARM.Build.0 = Release|x86 |
|
779 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Debug_Daelim|Mixed Platforms.ActiveCfg = Debug|x86 |
|
780 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Debug_Daelim|Mixed Platforms.Build.0 = Debug|x86 |
|
781 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Debug_Daelim|x64.ActiveCfg = Release|x86 |
|
782 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Debug_Daelim|x64.Build.0 = Release|x86 |
|
783 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Debug_Daelim|x86.ActiveCfg = Debug|x86 |
|
784 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Debug_Daelim|x86.Build.0 = Debug|x86 |
|
785 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Debug|Any CPU.ActiveCfg = Debug|x86 |
|
786 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Debug|ARM.ActiveCfg = Debug|x86 |
|
787 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Debug|Mixed Platforms.ActiveCfg = Debug|x86 |
|
788 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Debug|Mixed Platforms.Build.0 = Debug|x86 |
|
789 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Debug|x64.ActiveCfg = Debug|x86 |
|
790 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Debug|x86.ActiveCfg = Debug|x86 |
|
791 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Debug|x86.Build.0 = Debug|x86 |
|
792 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_Daelim_Test|Any CPU.ActiveCfg = Release_Daelim|x86 |
|
793 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_Daelim_Test|Any CPU.Build.0 = Release_Daelim|x86 |
|
794 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_Daelim_Test|ARM.ActiveCfg = Release|x86 |
|
795 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_Daelim_Test|ARM.Build.0 = Release|x86 |
|
796 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_Daelim_Test|Mixed Platforms.ActiveCfg = Release|x86 |
|
797 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_Daelim_Test|Mixed Platforms.Build.0 = Release|x86 |
|
798 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_Daelim_Test|x64.ActiveCfg = Release|x86 |
|
799 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_Daelim_Test|x64.Build.0 = Release|x86 |
|
800 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_Daelim_Test|x86.ActiveCfg = Release|x86 |
|
801 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_Daelim_Test|x86.Build.0 = Release|x86 |
|
802 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_Daelim|Any CPU.ActiveCfg = Release_Daelim|x64 |
|
803 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_Daelim|Any CPU.Build.0 = Release_Daelim|x64 |
|
804 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_Daelim|ARM.ActiveCfg = Release|x86 |
|
805 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_Daelim|ARM.Build.0 = Release|x86 |
|
806 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_Daelim|Mixed Platforms.ActiveCfg = Release|x86 |
|
807 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_Daelim|Mixed Platforms.Build.0 = Release|x86 |
|
808 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_Daelim|x64.ActiveCfg = Release|x86 |
|
809 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_Daelim|x64.Build.0 = Release|x86 |
|
810 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_Daelim|x86.ActiveCfg = Release|x86 |
|
811 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_Daelim|x86.Build.0 = Release|x86 |
|
812 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_HS|Any CPU.ActiveCfg = Release_HS|x64 |
|
813 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_HS|Any CPU.Build.0 = Release_HS|x64 |
|
814 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_HS|ARM.ActiveCfg = Release|x86 |
|
815 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_HS|ARM.Build.0 = Release|x86 |
|
816 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_HS|Mixed Platforms.ActiveCfg = Release|x86 |
|
817 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_HS|Mixed Platforms.Build.0 = Release|x86 |
|
818 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_HS|x64.ActiveCfg = Release|x86 |
|
819 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_HS|x64.Build.0 = Release|x86 |
|
820 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_HS|x86.ActiveCfg = Release|x86 |
|
821 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_HS|x86.Build.0 = Release|x86 |
|
822 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_SNI|Any CPU.ActiveCfg = Release_SNI|x64 |
|
823 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_SNI|Any CPU.Build.0 = Release_SNI|x64 |
|
824 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_SNI|ARM.ActiveCfg = Release|x86 |
|
825 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_SNI|ARM.Build.0 = Release|x86 |
|
826 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_SNI|Mixed Platforms.ActiveCfg = Release|x86 |
|
827 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_SNI|Mixed Platforms.Build.0 = Release|x86 |
|
828 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_SNI|x64.ActiveCfg = Release|x86 |
|
829 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_SNI|x64.Build.0 = Release|x86 |
|
830 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_SNI|x86.ActiveCfg = Release|x86 |
|
831 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release_SNI|x86.Build.0 = Release|x86 |
|
832 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release|Any CPU.ActiveCfg = Release|x86 |
|
833 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release|ARM.ActiveCfg = Release|x86 |
|
834 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release|Mixed Platforms.ActiveCfg = Release|x86 |
|
835 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release|Mixed Platforms.Build.0 = Release|x86 |
|
836 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release|x64.ActiveCfg = Release|x86 |
|
837 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release|x86.ActiveCfg = Release|x86 |
|
838 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Release|x86.Build.0 = Release|x86 |
|
839 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Setup_Daelim|Any CPU.ActiveCfg = Release|x86 |
|
840 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Setup_Daelim|Any CPU.Build.0 = Release|x86 |
|
841 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Setup_Daelim|ARM.ActiveCfg = Release|x86 |
|
842 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Setup_Daelim|ARM.Build.0 = Release|x86 |
|
843 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Setup_Daelim|Mixed Platforms.ActiveCfg = Release|x86 |
|
844 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Setup_Daelim|Mixed Platforms.Build.0 = Release|x86 |
|
845 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Setup_Daelim|x64.ActiveCfg = Release|x86 |
|
846 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Setup_Daelim|x64.Build.0 = Release|x86 |
|
847 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Setup_Daelim|x86.ActiveCfg = Release|x86 |
|
848 |
{FC0A7EB0-D847-47EB-ABA3-BBF0701758C9}.Setup_Daelim|x86.Build.0 = Release|x86 |
|
842 | 849 |
EndGlobalSection |
843 | 850 |
GlobalSection(SolutionProperties) = preSolution |
844 | 851 |
HideSolutionNode = FALSE |
MarkusAutoUpdate/src/NetSparkle.Samples.NetFramework.WPF/MARKUS.ini | ||
---|---|---|
1 | 1 |
[Internal] |
2 |
IP=http://sdms.co.kr:8080/API
|
|
2 |
IP=172.20.120.141
|
|
3 | 3 |
[External] |
4 |
IP=http://sdms.co.kr:8080/API
|
|
4 |
IP=172.20.120.141
|
|
5 | 5 |
[BaseClientAddress] |
6 |
URL=http://sdms.co.kr:8080/API
|
|
6 |
URL=http://172.20.120.141:5978
|
|
7 | 7 |
[HubAddress] |
8 |
URL=http://192.168.0.67:5100/
|
|
8 |
URL=http://172.20.120.141:5100/
|
|
9 | 9 |
[UpdateVer64] |
10 |
URL=http://localhost:8080/TileSource/Version/version_x64.xml
|
|
10 |
URL=http://172.20.120.141:5977/TileSource/Version/version_x64.xml
|
|
11 | 11 |
[UpdateVer86] |
12 |
URL=http://localhost:8080/TileSource/Version/version_x86.xml
|
|
12 |
URL=http://172.20.120.141:5977/TileSource/Version/version_x86.xml
|
|
13 | 13 |
[excelFilePath] |
14 |
URL=http://localhost:8080/TileSource/Check_Test/CheckList_T.xlsx
|
|
14 |
URL=http://172.20.120.141:5977/TileSource/Check_Test/CheckList_T.xlsx
|
|
15 | 15 |
[KCOM_Get_FinalImage_Get_PdfImage] |
16 |
URL=http://localhost:8080/Get_FInalImage/Get_PdfImage.asmx
|
|
16 |
URL=http://172.20.120.141:5977/Get_FInalImage/Get_PdfImage.asmx
|
|
17 | 17 |
[KCOM_kr_co_devdoftech_cloud_FileUpload] |
18 |
URL=http://sdms.co.kr:8080/ImageUpload/FileUpload.asmx
|
|
18 |
URL=http://172.20.120.141:5977/ImageUpload/FileUpload.asmx
|
|
19 | 19 |
[mainServerImageWebPath] |
20 |
URL=http://sdms.co.kr:8080/TileSource/{0}_Tile/{1}/{2}/{3}.png
|
|
20 |
URL=http://172.20.120.141:5977/TileSource/{0}_Tile/{1}/{2}/{3}.png
|
|
21 | 21 |
[subServerImageWebPath] |
22 |
URL=http://sdms.co.kr:8080/TileSource/{0}_Tile/{1}/{2}/{3}.png
|
|
22 |
URL=https://ensembleitf.daelim.co.kr/TileSource/{0}_Tile/{1}/{2}/{3}.png
|
|
23 | 23 |
[Debug_BaseClientAddress] |
24 |
URL=http://192.168.0.67:5979
|
|
24 |
URL=http://172.20.120.141:5978
|
|
25 | 25 |
[HOST_DOMAIN] |
26 |
DOMAIN= |
|
26 |
DOMAIN=DAELIM.COM
|
|
27 | 27 |
[GetConversionStateFailed] |
28 |
MSG=VG9vIE1hbnkgVi9QIEZpbGVzIGFyZSB1cGxvYWRpbmcgaW5zdGFudGFuZW91c2x5LCBUaGlzIFYvUCBmaWxlIGNhbiBub3QgYmUgb3BlbiBub3cuIFBsZWFzZSBmZWVsIGZyZWUgdG8gcmUtb3BlbiB3YWl0IGEgbW9tZW50IGFnYWluIVxuXG7tmITsnqwg7J287Iuc7KCB7Jy866GcIOunjuydgCDslpHsnZggVi9Q6rCAIOuTseuhneuQmOqzoCDsnojslrQg7J20IOusuOyEnOulvCDsl7TrnoztlaAg7IiYIOyXhuyKteuLiOuLpC5cbuyeoOyLnOunjCDquLDri6TroKQg7KO87IugIO2bhCDri6Tsi5wg7Je0656M7ZWY7JesIOyjvOyLnOq4sCDrsJTrno3ri4jri6Q=
|
|
28 |
MSG=VG9vIE1hbnkgVi9QIEZpbGVzIGFyZSB1cGxvYWRpbmcgaW5zdGFudGFuZW91c2x5LCBUaGlzIFYvUCBmaWxlIGNhbiBub3QgYmUgb3BlbiBub3cuIFBsZWFzZSBmZWVsIGZyZWUgdG8gcmUtb3BlbiB3YWl0IGEgbW9tZW50IGFnYWluIVxuXG7tmITsnqwg7J287Iuc7KCB7Jy866GcIOunjuydgCDslpHsnZggVi9Q6rCAIOuTseuhneuQmOqzoCDsnojslrQg7J20IOusuOyEnOulvCDsl7TrnoztlaAg7IiYIOyXhuyKteuLiOuLpC5cbuyeoOyLnOunjCDquLDri6TroKQg7KO87IugIO2bhCDri6Tsi5wg7Je0656M7ZWY7JesIOyjvOyLnOq4sCDrsJTrno3ri4jri6RcblxuQ29udGFjdCBQb2ludCA6IFlPVSwgU3VuZy1IbyAoMDItMzY5LTU2NDMpXHJcbuyXsOudveyymDog7Jyg7ISx7Zi4IOu2gOyepSgwMiAtIDM2OSAtIDU2MzQp
|
|
29 | 29 |
[SetFinalPDFError] |
30 | 30 |
MSG=7LWc7KKFIO2MjOydvOydhCDrp4zrk5zripTrjbAg66y47KCc6rCAIOuwnOyDne2VmOyYgOyKteuLiOuLpA== |
31 | 31 |
[SetFinalPDFSuccess] |
32 |
MSG=7LWc7KKFIO2MjOydvCDsg53shLEg7KSR7J6F64uI64ukLiDrrLjshJzqtIDrpqzsi5zsiqTthZzsnYQg7ZmV7J247ZW07KO87IS47JqU
|
|
32 |
MSG=RmluYWwgUERGIOyDneyEsSDspJEg7J6F64uI64ukLiDsmYTro4wg65CY66m0ICBPdXRsb29rIOyVjOumvCDrqZTsnbwg67Cc7IahIOuQqeuLiOuLpC4gXHJcbuyeoOyLnOunjCDquLDri6TroKQg7KO87IS47JqULg==
|
|
33 | 33 |
[SetThumbnail] |
34 |
WIDTH=265
|
|
34 |
WIDTH=100
|
|
35 | 35 |
[Site] |
36 | 36 |
NAME=DAELIM |
37 | 37 |
[PortForwarding] |
38 | 38 |
HUB=5100:5100 |
39 | 39 |
RESOURCE=5977:5977 |
40 |
BASE=8080:8080
|
|
40 |
BASE=5978:5978
|
|
41 | 41 |
[GetImageResourceFailed] |
42 |
MSG=7ZW064u5IOusuOyEnOydmCB7MH0gUGFnZSBDb252ZXJ06rCAIOygleyDgeyggeydtOyngCDslYrsirXri4jri6QuIOq0gOumrOyekOyXkOqyjCDrrLjsnZjtlbQg7KO87IS47JqULg== |
|
43 |
|
|
44 |
|
|
45 |
[COMMON] |
|
46 |
IsDocumentHistory = true |
|
42 |
MSG=7ZW064u5IOusuOyEnOydmCB7MH0gUGFnZSBDb252ZXJ06rCAIOygleyDgeyggeydtOyngCDslYrsirXri4jri6QuIOq0gOumrOyekOyXkOqyjCDrrLjsnZjtlbQg7KO87IS47JqULg== |
MarkusAutoUpdate/src/NetSparkle.Samples.NetFramework.WPF/Markus.AppUpdate.ini | ||
---|---|---|
1 |
#SNI APP_CAST address
|
|
1 |
#daelim APP_CAST address
|
|
2 | 2 |
|
3 | 3 |
[APP_CAST] |
4 |
URI = http://sdms.co.kr:8080/MarkusUpdate/appcast.xml |
|
4 |
URI = http://172.20.120.141:5977/MarkusUpdate/appcast.xml |
MarkusAutoUpdate/src/NetSparkle.UI.WPF/NetSparkle.UI.WPF.csproj | ||
---|---|---|
72 | 72 |
<PackagePath></PackagePath> |
73 | 73 |
</None> |
74 | 74 |
</ItemGroup> |
75 |
<Target Name="GetTargetPath" Returns="@(_FakeOutputPath)"> |
|
76 |
<ItemGroup Condition="'$(OutputType)' == 'Library'"> |
|
77 |
<_FakeOutputPath Include="$(MSBuildProjectDirectory)\$(OutputPath)\$(_InstallerTargetFramework)\$(AssemblyName).dll" /> |
|
78 |
</ItemGroup> |
|
79 |
<ItemGroup Condition="'$(OutputType)' == 'Exe'"> |
|
80 |
<_FakeOutputPath Include="$(MSBuildProjectDirectory)\$(OutputPath)\$(_InstallerTargetFramework)\$(AssemblyName).exe" /> |
|
81 |
</ItemGroup> |
|
82 |
<ItemGroup Condition="'$(OutputType)' == 'WinExe'"> |
|
83 |
<_FakeOutputPath Include="$(MSBuildProjectDirectory)\$(OutputPath)\$(_InstallerTargetFramework)\$(AssemblyName).exe" /> |
|
84 |
</ItemGroup> |
|
85 |
</Target> |
|
75 | 86 |
</Project> |
MarkusAutoUpdate/src/NetSparkle/NetSparkle.csproj | ||
---|---|---|
46 | 46 |
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release_Net452|netstandard2.0|AnyCPU'"> |
47 | 47 |
<OutputPath>..\bin\Release\NetSparkle\</OutputPath> |
48 | 48 |
<DocumentationFile>..\bin\Release\NetSparkle\NetSparkle.xml</DocumentationFile> |
49 |
<Optimize>true</Optimize> |
|
49 | 50 |
</PropertyGroup> |
50 | 51 |
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'"> |
51 | 52 |
<OutputPath>..\bin\Debug\NetSparkle\</OutputPath> |
... | ... | |
92 | 93 |
<ItemGroup> |
93 | 94 |
<PackageReference Include="Portable.BouncyCastle" Version="1.8.6.7" /> |
94 | 95 |
</ItemGroup> |
96 |
<Target Name="GetTargetPath" Returns="@(_FakeOutputPath)"> |
|
97 |
<ItemGroup Condition="'$(OutputType)' == 'Library'"> |
|
98 |
<_FakeOutputPath Include="$(MSBuildProjectDirectory)\$(OutputPath)\$(_InstallerTargetFramework)\$(AssemblyName).dll" /> |
|
99 |
</ItemGroup> |
|
100 |
<ItemGroup Condition="'$(OutputType)' == 'Exe'"> |
|
101 |
<_FakeOutputPath Include="$(MSBuildProjectDirectory)\$(OutputPath)\$(_InstallerTargetFramework)\$(AssemblyName).exe" /> |
|
102 |
</ItemGroup> |
|
103 |
<ItemGroup Condition="'$(OutputType)' == 'WinExe'"> |
|
104 |
<_FakeOutputPath Include="$(MSBuildProjectDirectory)\$(OutputPath)\$(_InstallerTargetFramework)\$(AssemblyName).exe" /> |
|
105 |
</ItemGroup> |
|
106 |
</Target> |
|
95 | 107 |
</Project> |
내보내기 Unified diff