프로젝트

일반

사용자정보

개정판 f280a4ce

IDf280a4ce1920d91542a26196ef0c82ca0822343f
상위 4a41c345
하위 a11f76e7, c4c41461

김태성이(가) 4년 이상 전에 추가함

setup 수정

Change-Id: Idf0dc29933d3b2ce7d5cd54145ba73949c0b0fe1

차이점 보기:

ConvertService/ServiceBase/ConvertMonitorSetup/ConvertMonitorSetup.wixproj
1
<?xml version="1.0" encoding="utf-8"?>
2
<Project ToolsVersion="4.0" DefaultTargets="Build" InitialTargets="EnsureWixToolsetInstalled" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
  <PropertyGroup>
4
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5
    <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
6
    <ProductVersion>3.10</ProductVersion>
7
    <ProjectGuid>ad7ee515-34e5-4123-a0cd-b2f6ecc48e56</ProjectGuid>
8
    <SchemaVersion>2.0</SchemaVersion>
9
    <OutputName>ConvertMonitorSetup</OutputName>
10
    <OutputType>Package</OutputType>
11
  </PropertyGroup>
12
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
13
    <OutputPath>bin\$(Configuration)\</OutputPath>
14
    <IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
15
    <DefineConstants>Debug</DefineConstants>
16
  </PropertyGroup>
17
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
18
    <OutputPath>bin\$(Configuration)\</OutputPath>
19
    <IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
20
  </PropertyGroup>
21
  <ItemGroup>
22
    <Compile Include="Product.wxs" />
23
  </ItemGroup>
24
  <ItemGroup>
25
    <Content Include="ConvertMonitorSetup.wax" />
26
  </ItemGroup>
27
  <ItemGroup>
28
    <ProjectReference Include="..\Markus.Service.Monitor\Markus.Service.MonitorService.csproj">
29
      <Name>Markus.Service.MonitorService</Name>
30
      <Project>{3f200e07-de20-41f5-984f-a8371fef17a4}</Project>
31
      <Private>True</Private>
32
      <DoNotHarvest>True</DoNotHarvest>
33
      <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>
34
      <RefTargetDir>INSTALLFOLDER</RefTargetDir>
35
    </ProjectReference>
36
  </ItemGroup>
37
  <Import Project="$(WixTargetsPath)" Condition=" '$(WixTargetsPath)' != '' " />
38
  <Import Project="$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets" Condition=" '$(WixTargetsPath)' == '' AND Exists('$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets') " />
39
  <Target Name="EnsureWixToolsetInstalled" Condition=" '$(WixTargetsImported)' != 'true' ">
40
    <Error Text="The WiX Toolset v3.11 (or newer) build tools must be installed to build this project. To download the WiX Toolset, see http://wixtoolset.org/releases/" />
41
  </Target>
42
  <!--
43
	To modify your build process, add your task inside one of the targets below and uncomment it.
44
	Other similar extension points exist, see Wix.targets.
45
	<Target Name="BeforeBuild">
46
	</Target>
47
	<Target Name="AfterBuild">
48
	</Target>
49
	-->
50
</Project>
ConvertService/ServiceBase/ConvertMonitorSetup/Product.wxs
1
<?xml version="1.0" encoding="UTF-8"?>
2
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"><?define Markus.Service.MonitorService_TargetDir=$(var.Markus.Service.MonitorService.TargetDir)?><?define Markus.Service.WcfClient_TargetDir=$(var.Markus.Service.WcfClient.TargetDir)?><?define Markus.Service.Extensions_TargetDir=$(var.Markus.Service.Extensions.TargetDir)?><?define Markus.Service.Interface_TargetDir=$(var.Markus.Service.Interface.TargetDir)?>
3
	<Product Id="*" Name="ConvertMonitorSetup" Language="1033" Version="1.0.0.0" Manufacturer="" UpgradeCode="5b113c28-01b6-4cb2-a723-c88ed1e2b93a">
4
		<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />
5

  
6
		<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
7
		<MediaTemplate />
8

  
9
		<Feature Id="ProductFeature" Title="ConvertMonitorSetup" Level="1">
10
			<ComponentGroupRef Id="ProductComponents" />
11
		</Feature>
12
	</Product>
13

  
14
	<Fragment>
15
		<Directory Id="TARGETDIR" Name="SourceDir">
16
			<Directory Id="ProgramFilesFolder">
17
				<Directory Id="INSTALLFOLDER" Name="ConvertMonitorSetup" />
18
			</Directory>
19
		</Directory>
20
	</Fragment>
21

  
22
	<Fragment>
23
		<ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
24
			<!-- TODO: Remove the comments around this Component element and the ComponentRef below in order to add resources to this installer. -->
25
			<!-- <Component Id="ProductComponent"> -->
26
				<!-- TODO: Insert files, registry keys, and other resources here. -->
27
			<!-- </Component> -->
28
			<Component Id="Log.config" Guid="2109f413-8b65-42a6-a768-4bd75af0736a">
29
			  <File Id="Log.config" Name="Log.config" Source="$(var.Markus.Service.MonitorService_TargetDir)Log.config" />
30
			</Component>
31
			<Component Id="Markus.Service.MonitorService.exe" Guid="758f5d59-2318-4c86-a2e0-f065688f720f">
32
			  <File Id="Markus.Service.MonitorService.exe" Name="Markus.Service.MonitorService.exe" Source="$(var.Markus.Service.MonitorService_TargetDir)Markus.Service.MonitorService.exe" />
33
			</Component>
34
			<Component Id="Markus.Service.MonitorService.exe.config" Guid="4ed36875-8562-4e18-bb9c-5d07201f167f">
35
			  <File Id="Markus.Service.MonitorService.exe.config" Name="Markus.Service.MonitorService.exe.config" Source="$(var.Markus.Service.MonitorService_TargetDir)Markus.Service.MonitorService.exe.config" />
36
			</Component>
37
			<Component Id="log4net.dll" Guid="2dc76b99-a439-4ffb-86b4-8d2657badb08">
38
			  <File Id="log4net.dll" Name="log4net.dll" Source="$(var.Markus.Service.MonitorService_TargetDir)log4net.dll" />
39
			</Component>
40
			<Component Id="Markus.Service.WcfClient.dll" Guid="f7324b48-de59-4d2c-804a-166c89aff500">
41
			  <File Id="Markus.Service.WcfClient.dll" Name="Markus.Service.WcfClient.dll" Source="$(var.Markus.Service.WcfClient_TargetDir)Markus.Service.WcfClient.dll" />
42
			</Component>
43
			<Component Id="ConfigParser.dll" Guid="b80b36cb-1a1b-4c07-9aff-f4b648315f0c">
44
			  <File Id="ConfigParser.dll" Name="ConfigParser.dll" Source="$(var.Markus.Service.MonitorService_TargetDir)ConfigParser.dll" />
45
			</Component>
46
			<Component Id="Markus.Service.Extensions.dll" Guid="ce3c0eca-628f-4429-ac01-d1a25bc56528">
47
			  <File Id="Markus.Service.Extensions.dll" Name="Markus.Service.Extensions.dll" Source="$(var.Markus.Service.Extensions_TargetDir)Markus.Service.Extensions.dll" />
48
			</Component>
49
			<Component Id="Markus.Service.Interface.dll" Guid="c196ea04-f2d8-4174-8533-53a13fdc9d6c">
50
			  <File Id="Markus.Service.Interface.dll" Name="Markus.Service.Interface.dll" Source="$(var.Markus.Service.Interface_TargetDir)Markus.Service.Interface.dll" />
51
			</Component>
52
		</ComponentGroup>
53
	</Fragment>
54
</Wix>
ConvertService/ServiceBase/ConvertService/ConvertService.vdproj
15 15
    {
16 16
        "Entry"
17 17
        {
18
        "MsmKey" = "8:_02177D4F1684A5DCC42AC59CBC30DC84"
19
        "OwnerKey" = "8:_0D130CD4B93EB4E760A636CF51BBF3CA"
18
        "MsmKey" = "8:_077D6A1742144F7D92D46345914619E8"
19
        "OwnerKey" = "8:_UNDEFINED"
20 20
        "MsmSig" = "8:_UNDEFINED"
21 21
        }
22 22
        "Entry"
23 23
        {
24
        "MsmKey" = "8:_02177D4F1684A5DCC42AC59CBC30DC84"
25
        "OwnerKey" = "8:_3CD4A60E32AD5181FEE3B777F45C065A"
24
        "MsmKey" = "8:_0EBB985AA9AA9506559BDBBEE2A4C7AF"
25
        "OwnerKey" = "8:_DEAE4A29B7724067970913DC4F4EFF90"
26 26
        "MsmSig" = "8:_UNDEFINED"
27 27
        }
28 28
        "Entry"
29 29
        {
30
        "MsmKey" = "8:_02177D4F1684A5DCC42AC59CBC30DC84"
31
        "OwnerKey" = "8:_1535FC7334DABA8217C2B02C92E5EEAD"
30
        "MsmKey" = "8:_10BB259E85D282823AB71F646EF449D7"
31
        "OwnerKey" = "8:_A2B599BB521DFE29C4DE330643CDF2EB"
32 32
        "MsmSig" = "8:_UNDEFINED"
33 33
        }
34 34
        "Entry"
35 35
        {
36
        "MsmKey" = "8:_02177D4F1684A5DCC42AC59CBC30DC84"
36
        "MsmKey" = "8:_10BB259E85D282823AB71F646EF449D7"
37 37
        "OwnerKey" = "8:_DEAE4A29B7724067970913DC4F4EFF90"
38 38
        "MsmSig" = "8:_UNDEFINED"
39 39
        }
40 40
        "Entry"
41 41
        {
42
        "MsmKey" = "8:_077D6A1742144F7D92D46345914619E8"
42
        "MsmKey" = "8:_114A47320FF14C8EB10527FC2A8506AF"
43 43
        "OwnerKey" = "8:_UNDEFINED"
44 44
        "MsmSig" = "8:_UNDEFINED"
45 45
        }
46 46
        "Entry"
47 47
        {
48
        "MsmKey" = "8:_0D130CD4B93EB4E760A636CF51BBF3CA"
49
        "OwnerKey" = "8:_3CD4A60E32AD5181FEE3B777F45C065A"
48
        "MsmKey" = "8:_15F86208E556B2FD9DE0A93B7DBBBD9E"
49
        "OwnerKey" = "8:_DEAE4A29B7724067970913DC4F4EFF90"
50 50
        "MsmSig" = "8:_UNDEFINED"
51 51
        }
52 52
        "Entry"
53 53
        {
54
        "MsmKey" = "8:_0D130CD4B93EB4E760A636CF51BBF3CA"
55
        "OwnerKey" = "8:_DEAE4A29B7724067970913DC4F4EFF90"
54
        "MsmKey" = "8:_19BBA1B34ADAE3CD4BED65D49B8F9A0C"
55
        "OwnerKey" = "8:_36C7480D9D8343B3D834DFA076CBF7C3"
56 56
        "MsmSig" = "8:_UNDEFINED"
57 57
        }
58 58
        "Entry"
59 59
        {
60
        "MsmKey" = "8:_114A47320FF14C8EB10527FC2A8506AF"
61
        "OwnerKey" = "8:_UNDEFINED"
60
        "MsmKey" = "8:_19BBA1B34ADAE3CD4BED65D49B8F9A0C"
61
        "OwnerKey" = "8:_DD2F4DA9B23C0D4896D1512E32AC3C91"
62 62
        "MsmSig" = "8:_UNDEFINED"
63 63
        }
64 64
        "Entry"
65 65
        {
66
        "MsmKey" = "8:_1535FC7334DABA8217C2B02C92E5EEAD"
66
        "MsmKey" = "8:_19BBA1B34ADAE3CD4BED65D49B8F9A0C"
67 67
        "OwnerKey" = "8:_DEAE4A29B7724067970913DC4F4EFF90"
68 68
        "MsmSig" = "8:_UNDEFINED"
69 69
        }
70 70
        "Entry"
71 71
        {
72
        "MsmKey" = "8:_15F86208E556B2FD9DE0A93B7DBBBD9E"
73
        "OwnerKey" = "8:_DEAE4A29B7724067970913DC4F4EFF90"
72
        "MsmKey" = "8:_19BBA1B34ADAE3CD4BED65D49B8F9A0C"
73
        "OwnerKey" = "8:_CF8F5716CC88DB33ADFC28EF082F2E05"
74 74
        "MsmSig" = "8:_UNDEFINED"
75 75
        }
76 76
        "Entry"
77 77
        {
78
        "MsmKey" = "8:_19BBA1B34ADAE3CD4BED65D49B8F9A0C"
79
        "OwnerKey" = "8:_0D130CD4B93EB4E760A636CF51BBF3CA"
78
        "MsmKey" = "8:_1CA61D0951102998956111C51842FA4E"
79
        "OwnerKey" = "8:_4D2893303CD3BF414D0F6C95730916DE"
80 80
        "MsmSig" = "8:_UNDEFINED"
81 81
        }
82 82
        "Entry"
83 83
        {
84
        "MsmKey" = "8:_19BBA1B34ADAE3CD4BED65D49B8F9A0C"
84
        "MsmKey" = "8:_1CA61D0951102998956111C51842FA4E"
85 85
        "OwnerKey" = "8:_DEAE4A29B7724067970913DC4F4EFF90"
86 86
        "MsmSig" = "8:_UNDEFINED"
87 87
        }
88 88
        "Entry"
89 89
        {
90
        "MsmKey" = "8:_19BBA1B34ADAE3CD4BED65D49B8F9A0C"
91
        "OwnerKey" = "8:_DD2F4DA9B23C0D4896D1512E32AC3C91"
90
        "MsmKey" = "8:_1CA61D0951102998956111C51842FA4E"
91
        "OwnerKey" = "8:_A2B599BB521DFE29C4DE330643CDF2EB"
92 92
        "MsmSig" = "8:_UNDEFINED"
93 93
        }
94 94
        "Entry"
......
99 99
        }
100 100
        "Entry"
101 101
        {
102
        "MsmKey" = "8:_1FA8012801F746DA50A8816A15D01022"
103
        "OwnerKey" = "8:_DEAE4A29B7724067970913DC4F4EFF90"
104
        "MsmSig" = "8:_UNDEFINED"
105
        }
106
        "Entry"
107
        {
108
        "MsmKey" = "8:_217C6611D6730A4F3455B2C4E0E6FBA2"
109
        "OwnerKey" = "8:_36C7480D9D8343B3D834DFA076CBF7C3"
110
        "MsmSig" = "8:_UNDEFINED"
111
        }
112
        "Entry"
113
        {
102 114
        "MsmKey" = "8:_217C6611D6730A4F3455B2C4E0E6FBA2"
103 115
        "OwnerKey" = "8:_DEAE4A29B7724067970913DC4F4EFF90"
104 116
        "MsmSig" = "8:_UNDEFINED"
......
117 129
        }
118 130
        "Entry"
119 131
        {
120
        "MsmKey" = "8:_2BED5DD234436B93333403C016A8CE2A"
121
        "OwnerKey" = "8:_3CD4A60E32AD5181FEE3B777F45C065A"
132
        "MsmKey" = "8:_36C7480D9D8343B3D834DFA076CBF7C3"
133
        "OwnerKey" = "8:_A2B599BB521DFE29C4DE330643CDF2EB"
122 134
        "MsmSig" = "8:_UNDEFINED"
123 135
        }
124 136
        "Entry"
125 137
        {
126
        "MsmKey" = "8:_2BED5DD234436B93333403C016A8CE2A"
138
        "MsmKey" = "8:_36C7480D9D8343B3D834DFA076CBF7C3"
127 139
        "OwnerKey" = "8:_DEAE4A29B7724067970913DC4F4EFF90"
128 140
        "MsmSig" = "8:_UNDEFINED"
129 141
        }
130 142
        "Entry"
131 143
        {
132
        "MsmKey" = "8:_3CD4A60E32AD5181FEE3B777F45C065A"
133
        "OwnerKey" = "8:_1535FC7334DABA8217C2B02C92E5EEAD"
144
        "MsmKey" = "8:_4B46A65FAE6944C5861193BD60309E73"
145
        "OwnerKey" = "8:_UNDEFINED"
146
        "MsmSig" = "8:_UNDEFINED"
147
        }
148
        "Entry"
149
        {
150
        "MsmKey" = "8:_4D2893303CD3BF414D0F6C95730916DE"
151
        "OwnerKey" = "8:_36C7480D9D8343B3D834DFA076CBF7C3"
134 152
        "MsmSig" = "8:_UNDEFINED"
135 153
        }
136 154
        "Entry"
137 155
        {
138
        "MsmKey" = "8:_3CD4A60E32AD5181FEE3B777F45C065A"
156
        "MsmKey" = "8:_4D2893303CD3BF414D0F6C95730916DE"
139 157
        "OwnerKey" = "8:_DEAE4A29B7724067970913DC4F4EFF90"
140 158
        "MsmSig" = "8:_UNDEFINED"
141 159
        }
142 160
        "Entry"
143 161
        {
144
        "MsmKey" = "8:_4B46A65FAE6944C5861193BD60309E73"
145
        "OwnerKey" = "8:_UNDEFINED"
162
        "MsmKey" = "8:_4D2893303CD3BF414D0F6C95730916DE"
163
        "OwnerKey" = "8:_1FA8012801F746DA50A8816A15D01022"
164
        "MsmSig" = "8:_UNDEFINED"
165
        }
166
        "Entry"
167
        {
168
        "MsmKey" = "8:_4D2893303CD3BF414D0F6C95730916DE"
169
        "OwnerKey" = "8:_A2B599BB521DFE29C4DE330643CDF2EB"
146 170
        "MsmSig" = "8:_UNDEFINED"
147 171
        }
148 172
        "Entry"
......
154 178
        "Entry"
155 179
        {
156 180
        "MsmKey" = "8:_61BDCFCA44035533802FD38706612DF2"
157
        "OwnerKey" = "8:_3CD4A60E32AD5181FEE3B777F45C065A"
181
        "OwnerKey" = "8:_A2B599BB521DFE29C4DE330643CDF2EB"
158 182
        "MsmSig" = "8:_UNDEFINED"
159 183
        }
160 184
        "Entry"
161 185
        {
162 186
        "MsmKey" = "8:_61BDCFCA44035533802FD38706612DF2"
163
        "OwnerKey" = "8:_1535FC7334DABA8217C2B02C92E5EEAD"
187
        "OwnerKey" = "8:_DEAE4A29B7724067970913DC4F4EFF90"
164 188
        "MsmSig" = "8:_UNDEFINED"
165 189
        }
166 190
        "Entry"
167 191
        {
168 192
        "MsmKey" = "8:_61BDCFCA44035533802FD38706612DF2"
193
        "OwnerKey" = "8:_1FA8012801F746DA50A8816A15D01022"
194
        "MsmSig" = "8:_UNDEFINED"
195
        }
196
        "Entry"
197
        {
198
        "MsmKey" = "8:_697FDFE0CC204ABAD5EB8FB451CFD722"
169 199
        "OwnerKey" = "8:_DEAE4A29B7724067970913DC4F4EFF90"
170 200
        "MsmSig" = "8:_UNDEFINED"
171 201
        }
172 202
        "Entry"
173 203
        {
174
        "MsmKey" = "8:_6C9EC50675674B1F89C89ABEF01D1785"
175
        "OwnerKey" = "8:_UNDEFINED"
204
        "MsmKey" = "8:_697FDFE0CC204ABAD5EB8FB451CFD722"
205
        "OwnerKey" = "8:_0EBB985AA9AA9506559BDBBEE2A4C7AF"
176 206
        "MsmSig" = "8:_UNDEFINED"
177 207
        }
178 208
        "Entry"
179 209
        {
180
        "MsmKey" = "8:_6CDE6BED15B112B350DE2C6CAA5A3FE9"
181
        "OwnerKey" = "8:_DEAE4A29B7724067970913DC4F4EFF90"
210
        "MsmKey" = "8:_697FDFE0CC204ABAD5EB8FB451CFD722"
211
        "OwnerKey" = "8:_36C7480D9D8343B3D834DFA076CBF7C3"
182 212
        "MsmSig" = "8:_UNDEFINED"
183 213
        }
184 214
        "Entry"
185 215
        {
186
        "MsmKey" = "8:_6CDE6BED15B112B350DE2C6CAA5A3FE9"
187
        "OwnerKey" = "8:_02177D4F1684A5DCC42AC59CBC30DC84"
216
        "MsmKey" = "8:_697FDFE0CC204ABAD5EB8FB451CFD722"
217
        "OwnerKey" = "8:_A2B599BB521DFE29C4DE330643CDF2EB"
188 218
        "MsmSig" = "8:_UNDEFINED"
189 219
        }
190 220
        "Entry"
191 221
        {
192
        "MsmKey" = "8:_7072EF7D90424AE1870A3D9521B9A082"
222
        "MsmKey" = "8:_697FDFE0CC204ABAD5EB8FB451CFD722"
223
        "OwnerKey" = "8:_1FA8012801F746DA50A8816A15D01022"
224
        "MsmSig" = "8:_UNDEFINED"
225
        }
226
        "Entry"
227
        {
228
        "MsmKey" = "8:_6C9EC50675674B1F89C89ABEF01D1785"
193 229
        "OwnerKey" = "8:_UNDEFINED"
194 230
        "MsmSig" = "8:_UNDEFINED"
195 231
        }
196 232
        "Entry"
197 233
        {
198
        "MsmKey" = "8:_71A46E43283B82F4CD21F4052439C1A4"
234
        "MsmKey" = "8:_6CDE6BED15B112B350DE2C6CAA5A3FE9"
199 235
        "OwnerKey" = "8:_DEAE4A29B7724067970913DC4F4EFF90"
200 236
        "MsmSig" = "8:_UNDEFINED"
201 237
        }
202 238
        "Entry"
203 239
        {
204
        "MsmKey" = "8:_71A46E43283B82F4CD21F4052439C1A4"
205
        "OwnerKey" = "8:_1535FC7334DABA8217C2B02C92E5EEAD"
240
        "MsmKey" = "8:_6CDE6BED15B112B350DE2C6CAA5A3FE9"
241
        "OwnerKey" = "8:_4D2893303CD3BF414D0F6C95730916DE"
206 242
        "MsmSig" = "8:_UNDEFINED"
207 243
        }
208 244
        "Entry"
209 245
        {
210
        "MsmKey" = "8:_71A46E43283B82F4CD21F4052439C1A4"
211
        "OwnerKey" = "8:_3CD4A60E32AD5181FEE3B777F45C065A"
246
        "MsmKey" = "8:_7072EF7D90424AE1870A3D9521B9A082"
247
        "OwnerKey" = "8:_UNDEFINED"
212 248
        "MsmSig" = "8:_UNDEFINED"
213 249
        }
214 250
        "Entry"
215 251
        {
216
        "MsmKey" = "8:_71A46E43283B82F4CD21F4052439C1A4"
217
        "OwnerKey" = "8:_0D130CD4B93EB4E760A636CF51BBF3CA"
252
        "MsmKey" = "8:_74229CDA05EC4485B5B4D3C0669E1628"
253
        "OwnerKey" = "8:_UNDEFINED"
218 254
        "MsmSig" = "8:_UNDEFINED"
219 255
        }
220 256
        "Entry"
221 257
        {
222
        "MsmKey" = "8:_71A46E43283B82F4CD21F4052439C1A4"
223
        "OwnerKey" = "8:_AA81A0227E771327AB0DCA8CB7BB194D"
258
        "MsmKey" = "8:_7A5E4FEEB74C4CCCB97774E610F1545D"
259
        "OwnerKey" = "8:_UNDEFINED"
224 260
        "MsmSig" = "8:_UNDEFINED"
225 261
        }
226 262
        "Entry"
227 263
        {
228
        "MsmKey" = "8:_741A69B8A1B6B8999095E576F41989EC"
229
        "OwnerKey" = "8:_02177D4F1684A5DCC42AC59CBC30DC84"
264
        "MsmKey" = "8:_A2B599BB521DFE29C4DE330643CDF2EB"
265
        "OwnerKey" = "8:_1FA8012801F746DA50A8816A15D01022"
230 266
        "MsmSig" = "8:_UNDEFINED"
231 267
        }
232 268
        "Entry"
233 269
        {
234
        "MsmKey" = "8:_741A69B8A1B6B8999095E576F41989EC"
270
        "MsmKey" = "8:_A2B599BB521DFE29C4DE330643CDF2EB"
235 271
        "OwnerKey" = "8:_DEAE4A29B7724067970913DC4F4EFF90"
236 272
        "MsmSig" = "8:_UNDEFINED"
237 273
        }
238 274
        "Entry"
239 275
        {
240
        "MsmKey" = "8:_74229CDA05EC4485B5B4D3C0669E1628"
276
        "MsmKey" = "8:_A500E874342D462FAF2F9F9A32A397AE"
241 277
        "OwnerKey" = "8:_UNDEFINED"
242 278
        "MsmSig" = "8:_UNDEFINED"
243 279
        }
244 280
        "Entry"
245 281
        {
246
        "MsmKey" = "8:_7A5E4FEEB74C4CCCB97774E610F1545D"
282
        "MsmKey" = "8:_A63CAD617E74493985D05663AB8B00EF"
247 283
        "OwnerKey" = "8:_UNDEFINED"
248 284
        "MsmSig" = "8:_UNDEFINED"
249 285
        }
250 286
        "Entry"
251 287
        {
252
        "MsmKey" = "8:_A397AD19C3BE450BE700CD88B5FCF012"
253
        "OwnerKey" = "8:_3CD4A60E32AD5181FEE3B777F45C065A"
288
        "MsmKey" = "8:_BDF855B138DC4F25AEABF682E59CB28C"
289
        "OwnerKey" = "8:_UNDEFINED"
254 290
        "MsmSig" = "8:_UNDEFINED"
255 291
        }
256 292
        "Entry"
257 293
        {
258
        "MsmKey" = "8:_A397AD19C3BE450BE700CD88B5FCF012"
259
        "OwnerKey" = "8:_DEAE4A29B7724067970913DC4F4EFF90"
294
        "MsmKey" = "8:_BE1AF92D0B9B4DD69F0BDD8279C5C77B"
295
        "OwnerKey" = "8:_UNDEFINED"
260 296
        "MsmSig" = "8:_UNDEFINED"
261 297
        }
262 298
        "Entry"
263 299
        {
264
        "MsmKey" = "8:_A500E874342D462FAF2F9F9A32A397AE"
265
        "OwnerKey" = "8:_UNDEFINED"
300
        "MsmKey" = "8:_CF8F5716CC88DB33ADFC28EF082F2E05"
301
        "OwnerKey" = "8:_36C7480D9D8343B3D834DFA076CBF7C3"
266 302
        "MsmSig" = "8:_UNDEFINED"
267 303
        }
268 304
        "Entry"
269 305
        {
270
        "MsmKey" = "8:_A63CAD617E74493985D05663AB8B00EF"
271
        "OwnerKey" = "8:_UNDEFINED"
306
        "MsmKey" = "8:_CF8F5716CC88DB33ADFC28EF082F2E05"
307
        "OwnerKey" = "8:_DEAE4A29B7724067970913DC4F4EFF90"
272 308
        "MsmSig" = "8:_UNDEFINED"
273 309
        }
274 310
        "Entry"
275 311
        {
276
        "MsmKey" = "8:_AA81A0227E771327AB0DCA8CB7BB194D"
277
        "OwnerKey" = "8:_DEAE4A29B7724067970913DC4F4EFF90"
312
        "MsmKey" = "8:_CF8F5716CC88DB33ADFC28EF082F2E05"
313
        "OwnerKey" = "8:_A2B599BB521DFE29C4DE330643CDF2EB"
278 314
        "MsmSig" = "8:_UNDEFINED"
279 315
        }
280 316
        "Entry"
281 317
        {
282
        "MsmKey" = "8:_BDF855B138DC4F25AEABF682E59CB28C"
283
        "OwnerKey" = "8:_UNDEFINED"
318
        "MsmKey" = "8:_D4B5A623922E3F9C104A147C8EB84703"
319
        "OwnerKey" = "8:_A2B599BB521DFE29C4DE330643CDF2EB"
284 320
        "MsmSig" = "8:_UNDEFINED"
285 321
        }
286 322
        "Entry"
287 323
        {
288
        "MsmKey" = "8:_BE1AF92D0B9B4DD69F0BDD8279C5C77B"
289
        "OwnerKey" = "8:_UNDEFINED"
324
        "MsmKey" = "8:_D4B5A623922E3F9C104A147C8EB84703"
325
        "OwnerKey" = "8:_DEAE4A29B7724067970913DC4F4EFF90"
290 326
        "MsmSig" = "8:_UNDEFINED"
291 327
        }
292 328
        "Entry"
......
309 345
        }
310 346
        "Entry"
311 347
        {
348
        "MsmKey" = "8:_E6667F9A9D4CC260B253B0CC9008E23E"
349
        "OwnerKey" = "8:_A2B599BB521DFE29C4DE330643CDF2EB"
350
        "MsmSig" = "8:_UNDEFINED"
351
        }
352
        "Entry"
353
        {
354
        "MsmKey" = "8:_E6667F9A9D4CC260B253B0CC9008E23E"
355
        "OwnerKey" = "8:_DEAE4A29B7724067970913DC4F4EFF90"
356
        "MsmSig" = "8:_UNDEFINED"
357
        }
358
        "Entry"
359
        {
312 360
        "MsmKey" = "8:_E8B7C699F687413A9FA2D903B05AE2F3"
313 361
        "OwnerKey" = "8:_UNDEFINED"
314 362
        "MsmSig" = "8:_UNDEFINED"
......
316 364
        "Entry"
317 365
        {
318 366
        "MsmKey" = "8:_F38D4A6189AC8BD7DB7349B82FE22101"
319
        "OwnerKey" = "8:_2BED5DD234436B93333403C016A8CE2A"
367
        "OwnerKey" = "8:_697FDFE0CC204ABAD5EB8FB451CFD722"
320 368
        "MsmSig" = "8:_UNDEFINED"
321 369
        }
322 370
        "Entry"
323 371
        {
324 372
        "MsmKey" = "8:_F38D4A6189AC8BD7DB7349B82FE22101"
325
        "OwnerKey" = "8:_0D130CD4B93EB4E760A636CF51BBF3CA"
373
        "OwnerKey" = "8:_DEAE4A29B7724067970913DC4F4EFF90"
326 374
        "MsmSig" = "8:_UNDEFINED"
327 375
        }
328 376
        "Entry"
329 377
        {
330 378
        "MsmKey" = "8:_F38D4A6189AC8BD7DB7349B82FE22101"
331
        "OwnerKey" = "8:_3CD4A60E32AD5181FEE3B777F45C065A"
379
        "OwnerKey" = "8:_1FA8012801F746DA50A8816A15D01022"
332 380
        "MsmSig" = "8:_UNDEFINED"
333 381
        }
334 382
        "Entry"
335 383
        {
336 384
        "MsmKey" = "8:_F38D4A6189AC8BD7DB7349B82FE22101"
337
        "OwnerKey" = "8:_1535FC7334DABA8217C2B02C92E5EEAD"
385
        "OwnerKey" = "8:_A2B599BB521DFE29C4DE330643CDF2EB"
338 386
        "MsmSig" = "8:_UNDEFINED"
339 387
        }
340 388
        "Entry"
341 389
        {
342 390
        "MsmKey" = "8:_F38D4A6189AC8BD7DB7349B82FE22101"
343
        "OwnerKey" = "8:_DEAE4A29B7724067970913DC4F4EFF90"
391
        "OwnerKey" = "8:_36C7480D9D8343B3D834DFA076CBF7C3"
392
        "MsmSig" = "8:_UNDEFINED"
393
        }
394
        "Entry"
395
        {
396
        "MsmKey" = "8:_F38D4A6189AC8BD7DB7349B82FE22101"
397
        "OwnerKey" = "8:_D4B5A623922E3F9C104A147C8EB84703"
344 398
        "MsmSig" = "8:_UNDEFINED"
345 399
        }
346 400
        "Entry"
......
352 406
        "Entry"
353 407
        {
354 408
        "MsmKey" = "8:_UNDEFINED"
355
        "OwnerKey" = "8:_6CDE6BED15B112B350DE2C6CAA5A3FE9"
409
        "OwnerKey" = "8:_15F86208E556B2FD9DE0A93B7DBBBD9E"
356 410
        "MsmSig" = "8:_UNDEFINED"
357 411
        }
358 412
        "Entry"
359 413
        {
360 414
        "MsmKey" = "8:_UNDEFINED"
361
        "OwnerKey" = "8:_71A46E43283B82F4CD21F4052439C1A4"
415
        "OwnerKey" = "8:_DD2F4DA9B23C0D4896D1512E32AC3C91"
362 416
        "MsmSig" = "8:_UNDEFINED"
363 417
        }
364 418
        "Entry"
365 419
        {
366 420
        "MsmKey" = "8:_UNDEFINED"
367
        "OwnerKey" = "8:_F38D4A6189AC8BD7DB7349B82FE22101"
421
        "OwnerKey" = "8:_0EBB985AA9AA9506559BDBBEE2A4C7AF"
368 422
        "MsmSig" = "8:_UNDEFINED"
369 423
        }
370 424
        "Entry"
371 425
        {
372 426
        "MsmKey" = "8:_UNDEFINED"
373
        "OwnerKey" = "8:_2BED5DD234436B93333403C016A8CE2A"
427
        "OwnerKey" = "8:_1FA8012801F746DA50A8816A15D01022"
374 428
        "MsmSig" = "8:_UNDEFINED"
375 429
        }
376 430
        "Entry"
377 431
        {
378 432
        "MsmKey" = "8:_UNDEFINED"
379
        "OwnerKey" = "8:_741A69B8A1B6B8999095E576F41989EC"
433
        "OwnerKey" = "8:_A2B599BB521DFE29C4DE330643CDF2EB"
380 434
        "MsmSig" = "8:_UNDEFINED"
381 435
        }
382 436
        "Entry"
383 437
        {
384 438
        "MsmKey" = "8:_UNDEFINED"
385
        "OwnerKey" = "8:_02177D4F1684A5DCC42AC59CBC30DC84"
439
        "OwnerKey" = "8:_61BDCFCA44035533802FD38706612DF2"
386 440
        "MsmSig" = "8:_UNDEFINED"
387 441
        }
388 442
        "Entry"
389 443
        {
390 444
        "MsmKey" = "8:_UNDEFINED"
391
        "OwnerKey" = "8:_19BBA1B34ADAE3CD4BED65D49B8F9A0C"
445
        "OwnerKey" = "8:_10BB259E85D282823AB71F646EF449D7"
392 446
        "MsmSig" = "8:_UNDEFINED"
393 447
        }
394 448
        "Entry"
395 449
        {
396 450
        "MsmKey" = "8:_UNDEFINED"
397
        "OwnerKey" = "8:_0D130CD4B93EB4E760A636CF51BBF3CA"
451
        "OwnerKey" = "8:_36C7480D9D8343B3D834DFA076CBF7C3"
398 452
        "MsmSig" = "8:_UNDEFINED"
399 453
        }
400 454
        "Entry"
401 455
        {
402 456
        "MsmKey" = "8:_UNDEFINED"
403
        "OwnerKey" = "8:_A397AD19C3BE450BE700CD88B5FCF012"
457
        "OwnerKey" = "8:_217C6611D6730A4F3455B2C4E0E6FBA2"
404 458
        "MsmSig" = "8:_UNDEFINED"
405 459
        }
406 460
        "Entry"
407 461
        {
408 462
        "MsmKey" = "8:_UNDEFINED"
409
        "OwnerKey" = "8:_61BDCFCA44035533802FD38706612DF2"
463
        "OwnerKey" = "8:_CF8F5716CC88DB33ADFC28EF082F2E05"
410 464
        "MsmSig" = "8:_UNDEFINED"
411 465
        }
412 466
        "Entry"
413 467
        {
414 468
        "MsmKey" = "8:_UNDEFINED"
415
        "OwnerKey" = "8:_3CD4A60E32AD5181FEE3B777F45C065A"
469
        "OwnerKey" = "8:_19BBA1B34ADAE3CD4BED65D49B8F9A0C"
416 470
        "MsmSig" = "8:_UNDEFINED"
417 471
        }
418 472
        "Entry"
419 473
        {
420 474
        "MsmKey" = "8:_UNDEFINED"
421
        "OwnerKey" = "8:_1535FC7334DABA8217C2B02C92E5EEAD"
475
        "OwnerKey" = "8:_4D2893303CD3BF414D0F6C95730916DE"
422 476
        "MsmSig" = "8:_UNDEFINED"
423 477
        }
424 478
        "Entry"
425 479
        {
426 480
        "MsmKey" = "8:_UNDEFINED"
427
        "OwnerKey" = "8:_AA81A0227E771327AB0DCA8CB7BB194D"
481
        "OwnerKey" = "8:_1CA61D0951102998956111C51842FA4E"
428 482
        "MsmSig" = "8:_UNDEFINED"
429 483
        }
430 484
        "Entry"
431 485
        {
432 486
        "MsmKey" = "8:_UNDEFINED"
433
        "OwnerKey" = "8:_DD2F4DA9B23C0D4896D1512E32AC3C91"
487
        "OwnerKey" = "8:_D4B5A623922E3F9C104A147C8EB84703"
434 488
        "MsmSig" = "8:_UNDEFINED"
435 489
        }
436 490
        "Entry"
437 491
        {
438 492
        "MsmKey" = "8:_UNDEFINED"
439
        "OwnerKey" = "8:_15F86208E556B2FD9DE0A93B7DBBBD9E"
493
        "OwnerKey" = "8:_E6667F9A9D4CC260B253B0CC9008E23E"
440 494
        "MsmSig" = "8:_UNDEFINED"
441 495
        }
442 496
        "Entry"
443 497
        {
444 498
        "MsmKey" = "8:_UNDEFINED"
445
        "OwnerKey" = "8:_217C6611D6730A4F3455B2C4E0E6FBA2"
499
        "OwnerKey" = "8:_697FDFE0CC204ABAD5EB8FB451CFD722"
500
        "MsmSig" = "8:_UNDEFINED"
501
        }
502
        "Entry"
503
        {
504
        "MsmKey" = "8:_UNDEFINED"
505
        "OwnerKey" = "8:_F38D4A6189AC8BD7DB7349B82FE22101"
506
        "MsmSig" = "8:_UNDEFINED"
507
        }
508
        "Entry"
509
        {
510
        "MsmKey" = "8:_UNDEFINED"
511
        "OwnerKey" = "8:_6CDE6BED15B112B350DE2C6CAA5A3FE9"
446 512
        "MsmSig" = "8:_UNDEFINED"
447 513
        }
448 514
    }
......
517 583
    {
518 584
        "CustomAction"
519 585
        {
520
            "{4AA51A2D-7D85-4A59-BA75-B0809FC8B380}:_05C00929C2454B379DC1739144572DFB"
521
            {
522
            "Name" = "8:기본 출력 from Markus.Service.Station (Active)"
523
            "Condition" = "8:"
524
            "Object" = "8:_DEAE4A29B7724067970913DC4F4EFF90"
525
            "FileType" = "3:2"
526
            "InstallAction" = "3:4"
527
            "Arguments" = "8:"
528
            "EntryPoint" = "8:"
529
            "Sequence" = "3:1"
530
            "Identifier" = "8:_502C0DC4_A944_4F9E_931C_B4D26F030EE9"
531
            "InstallerClass" = "11:TRUE"
532
            "CustomActionData" = "8:"
533
            "Run64Bit" = "11:TRUE"
534
            }
535
            "{4AA51A2D-7D85-4A59-BA75-B0809FC8B380}:_20D9D496C7C74228877869693F0EB1C3"
536
            {
537
            "Name" = "8:기본 출력 from Markus.Service.Station (Active)"
538
            "Condition" = "8:"
539
            "Object" = "8:_DEAE4A29B7724067970913DC4F4EFF90"
540
            "FileType" = "3:2"
541
            "InstallAction" = "3:3"
542
            "Arguments" = "8:"
543
            "EntryPoint" = "8:"
544
            "Sequence" = "3:1"
545
            "Identifier" = "8:_D035AA02_2696_4316_B2D0_9BD4353088E2"
546
            "InstallerClass" = "11:TRUE"
547
            "CustomActionData" = "8:"
548
            "Run64Bit" = "11:TRUE"
549
            }
550
            "{4AA51A2D-7D85-4A59-BA75-B0809FC8B380}:_B3C5A10DAB394D8CAEA7B99F6ECBA164"
551
            {
552
            "Name" = "8:기본 출력 from Markus.Service.Station (Active)"
553
            "Condition" = "8:"
554
            "Object" = "8:_DEAE4A29B7724067970913DC4F4EFF90"
555
            "FileType" = "3:2"
556
            "InstallAction" = "3:2"
557
            "Arguments" = "8:"
558
            "EntryPoint" = "8:"
559
            "Sequence" = "3:1"
560
            "Identifier" = "8:_944DA30F_8040_42FB_8787_60645DCDB56C"
561
            "InstallerClass" = "11:TRUE"
562
            "CustomActionData" = "8:"
563
            "Run64Bit" = "11:TRUE"
564
            }
565
            "{4AA51A2D-7D85-4A59-BA75-B0809FC8B380}:_B59A3965226C4D009E8FE139B8D52C31"
566
            {
567
            "Name" = "8:기본 출력 from Markus.Service.Station (Active)"
568
            "Condition" = "8:"
569
            "Object" = "8:_DEAE4A29B7724067970913DC4F4EFF90"
570
            "FileType" = "3:2"
571
            "InstallAction" = "3:1"
572
            "Arguments" = "8:"
573
            "EntryPoint" = "8:"
574
            "Sequence" = "3:1"
575
            "Identifier" = "8:_92FCF418_C17F_4C6B_9A8A_A80421AE59AA"
576
            "InstallerClass" = "11:TRUE"
577
            "CustomActionData" = "8:"
578
            "Run64Bit" = "11:TRUE"
579
            }
580 586
        }
581 587
        "DefaultFeature"
582 588
        {
......
600 606
        }
601 607
        "File"
602 608
        {
603
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_02177D4F1684A5DCC42AC59CBC30DC84"
609
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0EBB985AA9AA9506559BDBBEE2A4C7AF"
604 610
            {
605 611
            "AssemblyRegister" = "3:1"
606 612
            "AssemblyIsInGAC" = "11:FALSE"
607
            "AssemblyAsmDisplayName" = "8:Markus.Service.Extensions, Version=1.0.0.0, Culture=neutral, processorArchitecture=AMD64"
613
            "AssemblyAsmDisplayName" = "8:Markus.Service.IWcfService, Version=2.5.6.0, Culture=neutral, processorArchitecture=AMD64"
608 614
                "ScatterAssemblies"
609 615
                {
616
                    "_0EBB985AA9AA9506559BDBBEE2A4C7AF"
617
                    {
618
                    "Name" = "8:Markus.Service.IWcfService.dll"
619
                    "Attributes" = "3:512"
620
                    }
610 621
                }
611
            "SourcePath" = "8:Markus.Service.Extensions.dll"
622
            "SourcePath" = "8:Markus.Service.IWcfService.dll"
612 623
            "TargetName" = "8:"
613 624
            "Tag" = "8:"
614 625
            "Folder" = "8:_AF3D4F8590B149E58640B3938282421B"
......
626 637
            "IsDependency" = "11:TRUE"
627 638
            "IsolateTo" = "8:"
628 639
            }
629
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0D130CD4B93EB4E760A636CF51BBF3CA"
640
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_10BB259E85D282823AB71F646EF449D7"
630 641
            {
631 642
            "AssemblyRegister" = "3:1"
632 643
            "AssemblyIsInGAC" = "11:FALSE"
633
            "AssemblyAsmDisplayName" = "8:Markus.Service.DataBase, Version=1.0.0.0, Culture=neutral, processorArchitecture=AMD64"
644
            "AssemblyAsmDisplayName" = "8:Markus.Service.WcfClient, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL"
634 645
                "ScatterAssemblies"
635 646
                {
647
                    "_10BB259E85D282823AB71F646EF449D7"
648
                    {
649
                    "Name" = "8:Markus.Service.WcfClient.dll"
650
                    "Attributes" = "3:512"
651
                    }
636 652
                }
637
            "SourcePath" = "8:Markus.Service.DataBase.dll"
653
            "SourcePath" = "8:Markus.Service.WcfClient.dll"
638 654
            "TargetName" = "8:"
639 655
            "Tag" = "8:"
640 656
            "Folder" = "8:_AF3D4F8590B149E58640B3938282421B"
......
672 688
            "IsDependency" = "11:FALSE"
673 689
            "IsolateTo" = "8:"
674 690
            }
675
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1535FC7334DABA8217C2B02C92E5EEAD"
691
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_15F86208E556B2FD9DE0A93B7DBBBD9E"
676 692
            {
677 693
            "AssemblyRegister" = "3:1"
678 694
            "AssemblyIsInGAC" = "11:FALSE"
679
            "AssemblyAsmDisplayName" = "8:Markus.Service.ConvertProcess, Version=2.0.0.0, Culture=neutral, processorArchitecture=AMD64"
695
            "AssemblyAsmDisplayName" = "8:Markus.LibraryInstaller, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"
680 696
                "ScatterAssemblies"
681 697
                {
698
                    "_15F86208E556B2FD9DE0A93B7DBBBD9E"
699
                    {
700
                    "Name" = "8:Markus.LibraryInstaller.dll"
701
                    "Attributes" = "3:512"
702
                    }
682 703
                }
683
            "SourcePath" = "8:Markus.Service.ConvertProcess.exe"
704
            "SourcePath" = "8:Markus.LibraryInstaller.dll"
684 705
            "TargetName" = "8:"
685 706
            "Tag" = "8:"
686 707
            "Folder" = "8:_AF3D4F8590B149E58640B3938282421B"
......
698 719
            "IsDependency" = "11:TRUE"
699 720
            "IsolateTo" = "8:"
700 721
            }
701
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_15F86208E556B2FD9DE0A93B7DBBBD9E"
722
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_19BBA1B34ADAE3CD4BED65D49B8F9A0C"
702 723
            {
703 724
            "AssemblyRegister" = "3:1"
704 725
            "AssemblyIsInGAC" = "11:FALSE"
705
            "AssemblyAsmDisplayName" = "8:Markus.LibraryInstaller, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"
726
            "AssemblyAsmDisplayName" = "8:EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL"
706 727
                "ScatterAssemblies"
707 728
                {
729
                    "_19BBA1B34ADAE3CD4BED65D49B8F9A0C"
730
                    {
731
                    "Name" = "8:EntityFramework.dll"
732
                    "Attributes" = "3:512"
733
                    }
708 734
                }
709
            "SourcePath" = "8:Markus.LibraryInstaller.dll"
735
            "SourcePath" = "8:EntityFramework.dll"
710 736
            "TargetName" = "8:"
711 737
            "Tag" = "8:"
712 738
            "Folder" = "8:_AF3D4F8590B149E58640B3938282421B"
......
724 750
            "IsDependency" = "11:TRUE"
725 751
            "IsolateTo" = "8:"
726 752
            }
727
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_19BBA1B34ADAE3CD4BED65D49B8F9A0C"
753
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1CA61D0951102998956111C51842FA4E"
728 754
            {
729 755
            "AssemblyRegister" = "3:1"
730 756
            "AssemblyIsInGAC" = "11:FALSE"
731
            "AssemblyAsmDisplayName" = "8:EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL"
757
            "AssemblyAsmDisplayName" = "8:ConfigParser, Version=0.3.4.3, Culture=neutral, processorArchitecture=MSIL"
732 758
                "ScatterAssemblies"
733 759
                {
760
                    "_1CA61D0951102998956111C51842FA4E"
761
                    {
762
                    "Name" = "8:ConfigParser.dll"
763
                    "Attributes" = "3:512"
764
                    }
734 765
                }
735
            "SourcePath" = "8:EntityFramework.dll"
766
            "SourcePath" = "8:ConfigParser.dll"
767
            "TargetName" = "8:"
768
            "Tag" = "8:"
769
            "Folder" = "8:_AF3D4F8590B149E58640B3938282421B"
770
            "Condition" = "8:"
771
            "Transitive" = "11:FALSE"
772
            "Vital" = "11:TRUE"
773
            "ReadOnly" = "11:FALSE"
774
            "Hidden" = "11:FALSE"
775
            "System" = "11:FALSE"
776
            "Permanent" = "11:FALSE"
777
            "SharedLegacy" = "11:FALSE"
778
            "PackageAs" = "3:1"
779
            "Register" = "3:1"
780
            "Exclude" = "11:FALSE"
781
            "IsDependency" = "11:TRUE"
782
            "IsolateTo" = "8:"
783
            }
784
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1FA8012801F746DA50A8816A15D01022"
785
            {
786
            "AssemblyRegister" = "3:1"
787
            "AssemblyIsInGAC" = "11:FALSE"
788
            "AssemblyAsmDisplayName" = "8:Markus.Service.ConvertProcess, Version=2.5.6.0, Culture=neutral, processorArchitecture=AMD64"
789
                "ScatterAssemblies"
790
                {
791
                    "_1FA8012801F746DA50A8816A15D01022"
792
                    {
793
                    "Name" = "8:Markus.Service.ConvertProcess.exe"
794
                    "Attributes" = "3:512"
795
                    }
796
                }
797
            "SourcePath" = "8:Markus.Service.ConvertProcess.exe"
736 798
            "TargetName" = "8:"
737 799
            "Tag" = "8:"
738 800
            "Folder" = "8:_AF3D4F8590B149E58640B3938282421B"
......
757 819
            "AssemblyAsmDisplayName" = "8:Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL"
758 820
                "ScatterAssemblies"
759 821
                {
822
                    "_217C6611D6730A4F3455B2C4E0E6FBA2"
823
                    {
824
                    "Name" = "8:Newtonsoft.Json.dll"
825
                    "Attributes" = "3:512"
826
                    }
760 827
                }
761 828
            "SourcePath" = "8:Newtonsoft.Json.dll"
762 829
            "TargetName" = "8:"
......
796 863
            "IsDependency" = "11:FALSE"
797 864
            "IsolateTo" = "8:"
798 865
            }
799
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2BED5DD234436B93333403C016A8CE2A"
866
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_36C7480D9D8343B3D834DFA076CBF7C3"
800 867
            {
801 868
            "AssemblyRegister" = "3:1"
802 869
            "AssemblyIsInGAC" = "11:FALSE"
803
            "AssemblyAsmDisplayName" = "8:MarkusPDF, Version=1.0.7145.16256, Culture=neutral, processorArchitecture=AMD64"
870
            "AssemblyAsmDisplayName" = "8:Markus.Service.DataBase, Version=2.5.6.0, Culture=neutral, processorArchitecture=AMD64"
804 871
                "ScatterAssemblies"
805 872
                {
873
                    "_36C7480D9D8343B3D834DFA076CBF7C3"
874
                    {
875
                    "Name" = "8:Markus.Service.DataBase.dll"
876
                    "Attributes" = "3:512"
877
                    }
806 878
                }
807
            "SourcePath" = "8:MarkusPDF.dll"
879
            "SourcePath" = "8:Markus.Service.DataBase.dll"
808 880
            "TargetName" = "8:"
809 881
            "Tag" = "8:"
810 882
            "Folder" = "8:_AF3D4F8590B149E58640B3938282421B"
......
822 894
            "IsDependency" = "11:TRUE"
823 895
            "IsolateTo" = "8:"
824 896
            }
825
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3CD4A60E32AD5181FEE3B777F45C065A"
897
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4D2893303CD3BF414D0F6C95730916DE"
826 898
            {
827 899
            "AssemblyRegister" = "3:1"
828 900
            "AssemblyIsInGAC" = "11:FALSE"
829
            "AssemblyAsmDisplayName" = "8:Markus.Service.Convert, Version=1.8.0.0, Culture=neutral, processorArchitecture=AMD64"
901
            "AssemblyAsmDisplayName" = "8:Markus.Service.Extensions, Version=2.5.6.0, Culture=neutral, processorArchitecture=AMD64"
830 902
                "ScatterAssemblies"
831 903
                {
904
                    "_4D2893303CD3BF414D0F6C95730916DE"
905
                    {
906
                    "Name" = "8:Markus.Service.Extensions.dll"
907
                    "Attributes" = "3:512"
908
                    }
832 909
                }
833
            "SourcePath" = "8:Markus.Service.Convert.dll"
910
            "SourcePath" = "8:Markus.Service.Extensions.dll"
834 911
            "TargetName" = "8:"
835 912
            "Tag" = "8:"
836 913
            "Folder" = "8:_AF3D4F8590B149E58640B3938282421B"
......
875 952
            "AssemblyAsmDisplayName" = "8:log4net, Version=2.0.8.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL"
876 953
                "ScatterAssemblies"
877 954
                {
955
                    "_61BDCFCA44035533802FD38706612DF2"
956
                    {
957
                    "Name" = "8:log4net.dll"
958
                    "Attributes" = "3:512"
959
                    }
878 960
                }
879 961
            "SourcePath" = "8:log4net.dll"
880 962
            "TargetName" = "8:"
......
894 976
            "IsDependency" = "11:TRUE"
895 977
            "IsolateTo" = "8:"
896 978
            }
979
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_697FDFE0CC204ABAD5EB8FB451CFD722"
980
            {
981
            "AssemblyRegister" = "3:1"
982
            "AssemblyIsInGAC" = "11:FALSE"
983
            "AssemblyAsmDisplayName" = "8:Markus.Service.Interface, Version=2.5.6.0, Culture=neutral, processorArchitecture=MSIL"
984
                "ScatterAssemblies"
985
                {
986
                    "_697FDFE0CC204ABAD5EB8FB451CFD722"
987
                    {
988
                    "Name" = "8:Markus.Service.Interface.dll"
989
                    "Attributes" = "3:512"
990
                    }
991
                }
992
            "SourcePath" = "8:Markus.Service.Interface.dll"
993
            "TargetName" = "8:"
994
            "Tag" = "8:"
995
            "Folder" = "8:_AF3D4F8590B149E58640B3938282421B"
996
            "Condition" = "8:"
997
            "Transitive" = "11:FALSE"
998
            "Vital" = "11:TRUE"
999
            "ReadOnly" = "11:FALSE"
1000
            "Hidden" = "11:FALSE"
1001
            "System" = "11:FALSE"
1002
            "Permanent" = "11:FALSE"
1003
            "SharedLegacy" = "11:FALSE"
1004
            "PackageAs" = "3:1"
1005
            "Register" = "3:1"
1006
            "Exclude" = "11:FALSE"
1007
            "IsDependency" = "11:TRUE"
1008
            "IsolateTo" = "8:"
1009
            }
897 1010
            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6C9EC50675674B1F89C89ABEF01D1785"
898 1011
            {
899 1012
            "SourcePath" = "8:..\\WindowsSdk\\7b7c7382fe1ea268787e911da88eb37e.cab"
......
921 1034
            "AssemblyAsmDisplayName" = "8:System.Net.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
922 1035
                "ScatterAssemblies"
923 1036
                {
1037
                    "_6CDE6BED15B112B350DE2C6CAA5A3FE9"
1038
                    {
1039
                    "Name" = "8:System.Net.Http.dll"
1040
                    "Attributes" = "3:512"
1041
                    }
924 1042
                }
925 1043
            "SourcePath" = "8:System.Net.Http.dll"
926 1044
            "TargetName" = "8:"
......
960 1078
            "IsDependency" = "11:FALSE"
961 1079
            "IsolateTo" = "8:"
962 1080
            }
963
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_71A46E43283B82F4CD21F4052439C1A4"
1081
            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7A5E4FEEB74C4CCCB97774E610F1545D"
964 1082
            {
965
            "AssemblyRegister" = "3:1"
966
            "AssemblyIsInGAC" = "11:FALSE"
967
            "AssemblyAsmDisplayName" = "8:Markus.Service.Interface, Version=1.0.0.0, Culture=neutral, processorArchitecture=AMD64"
968
                "ScatterAssemblies"
969
                {
970
                }
971
            "SourcePath" = "8:Markus.Service.Interface.dll"
972
            "TargetName" = "8:"
1083
            "SourcePath" = "8:..\\WindowsSdk\\4c3ef4b2b1dc72149f979f4243d2accf.cab"
1084
            "TargetName" = "8:4c3ef4b2b1dc72149f979f4243d2accf.cab"
973 1085
            "Tag" = "8:"
974
            "Folder" = "8:_AF3D4F8590B149E58640B3938282421B"
1086
            "Folder" = "8:_2E34897C7E1D4BBD8517078FF6DAFB1A"
975 1087
            "Condition" = "8:"
976 1088
            "Transitive" = "11:FALSE"
977 1089
            "Vital" = "11:TRUE"
......
983 1095
            "PackageAs" = "3:1"
984 1096
            "Register" = "3:1"
985 1097
            "Exclude" = "11:FALSE"
986
            "IsDependency" = "11:TRUE"
1098
            "IsDependency" = "11:FALSE"
987 1099
            "IsolateTo" = "8:"
988 1100
            }
989
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_741A69B8A1B6B8999095E576F41989EC"
1101
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A2B599BB521DFE29C4DE330643CDF2EB"
990 1102
            {
991 1103
            "AssemblyRegister" = "3:1"
992 1104
            "AssemblyIsInGAC" = "11:FALSE"
993
            "AssemblyAsmDisplayName" = "8:ConfigParser, Version=0.3.3.6, Culture=neutral, processorArchitecture=MSIL"
1105
            "AssemblyAsmDisplayName" = "8:Markus.Service.Convert, Version=2.5.6.0, Culture=neutral, processorArchitecture=AMD64"
994 1106
                "ScatterAssemblies"
995 1107
                {
1108
                    "_A2B599BB521DFE29C4DE330643CDF2EB"
1109
                    {
1110
                    "Name" = "8:Markus.Service.Convert.dll"
1111
                    "Attributes" = "3:512"
1112
                    }
996 1113
                }
997
            "SourcePath" = "8:ConfigParser.dll"
1114
            "SourcePath" = "8:Markus.Service.Convert.dll"
998 1115
            "TargetName" = "8:"
999 1116
            "Tag" = "8:"
1000 1117
            "Folder" = "8:_AF3D4F8590B149E58640B3938282421B"
......
1012 1129
            "IsDependency" = "11:TRUE"
1013 1130
            "IsolateTo" = "8:"
1014 1131
            }
1015
            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7A5E4FEEB74C4CCCB97774E610F1545D"
1132
            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A500E874342D462FAF2F9F9A32A397AE"
1016 1133
            {
1017
            "SourcePath" = "8:..\\WindowsSdk\\4c3ef4b2b1dc72149f979f4243d2accf.cab"
1018
            "TargetName" = "8:4c3ef4b2b1dc72149f979f4243d2accf.cab"
1134
            "SourcePath" = "8:..\\WindowsSdk\\e98fa5eb5fee6ce17a7a69d585870b7c.cab"
1135
            "TargetName" = "8:e98fa5eb5fee6ce17a7a69d585870b7c.cab"
1019 1136
            "Tag" = "8:"
1020 1137
            "Folder" = "8:_2E34897C7E1D4BBD8517078FF6DAFB1A"
1021 1138
            "Condition" = "8:"
......
1032 1149
            "IsDependency" = "11:FALSE"
1033 1150
            "IsolateTo" = "8:"
1034 1151
            }
1035
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A397AD19C3BE450BE700CD88B5FCF012"
1152
            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A63CAD617E74493985D05663AB8B00EF"
1036 1153
            {
1037
            "AssemblyRegister" = "3:1"
1038
            "AssemblyIsInGAC" = "11:FALSE"
1039
            "AssemblyAsmDisplayName" = "8:Markus.Service.WcfClient, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL"
1040
                "ScatterAssemblies"
1041
                {
1042
                }
1043
            "SourcePath" = "8:Markus.Service.WcfClient.dll"
1044
            "TargetName" = "8:"
1154
            "SourcePath" = "8:..\\WindowsSdk\\05047a45609f311645eebcac2739fc4c.cab"
1155
            "TargetName" = "8:05047a45609f311645eebcac2739fc4c.cab"
1045 1156
            "Tag" = "8:"
1046
            "Folder" = "8:_AF3D4F8590B149E58640B3938282421B"
1157
            "Folder" = "8:_2E34897C7E1D4BBD8517078FF6DAFB1A"
1047 1158
            "Condition" = "8:"
1048 1159
            "Transitive" = "11:FALSE"
1049 1160
            "Vital" = "11:TRUE"
......
1055 1166
            "PackageAs" = "3:1"
1056 1167
            "Register" = "3:1"
1057 1168
            "Exclude" = "11:FALSE"
1058
            "IsDependency" = "11:TRUE"
1169
            "IsDependency" = "11:FALSE"
1059 1170
            "IsolateTo" = "8:"
1060 1171
            }
1061
            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A500E874342D462FAF2F9F9A32A397AE"
1172
            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BDF855B138DC4F25AEABF682E59CB28C"
1062 1173
            {
1063
            "SourcePath" = "8:..\\WindowsSdk\\e98fa5eb5fee6ce17a7a69d585870b7c.cab"
1064
            "TargetName" = "8:e98fa5eb5fee6ce17a7a69d585870b7c.cab"
1174
            "SourcePath" = "8:..\\WindowsSdk\\685f3d4691f444bc382762d603a99afc.cab"
1175
            "TargetName" = "8:685f3d4691f444bc382762d603a99afc.cab"
1065 1176
            "Tag" = "8:"
1066 1177
            "Folder" = "8:_2E34897C7E1D4BBD8517078FF6DAFB1A"
1067 1178
            "Condition" = "8:"
......
1078 1189
            "IsDependency" = "11:FALSE"
1079 1190
            "IsolateTo" = "8:"
1080 1191
            }
1081
            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A63CAD617E74493985D05663AB8B00EF"
1192
            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BE1AF92D0B9B4DD69F0BDD8279C5C77B"
1082 1193
            {
1083
            "SourcePath" = "8:..\\WindowsSdk\\05047a45609f311645eebcac2739fc4c.cab"
1084
            "TargetName" = "8:05047a45609f311645eebcac2739fc4c.cab"
1194
            "SourcePath" = "8:..\\WindowsSdk\\463ad1b0783ebda908fd6c16a4abfe93.cab"
1195
            "TargetName" = "8:463ad1b0783ebda908fd6c16a4abfe93.cab"
1085 1196
            "Tag" = "8:"
1086 1197
            "Folder" = "8:_2E34897C7E1D4BBD8517078FF6DAFB1A"
1087 1198
            "Condition" = "8:"
......
1098 1209
            "IsDependency" = "11:FALSE"
1099 1210
            "IsolateTo" = "8:"
1100 1211
            }
1101
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_AA81A0227E771327AB0DCA8CB7BB194D"
1212
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CF8F5716CC88DB33ADFC28EF082F2E05"
1102 1213
            {
1103 1214
            "AssemblyRegister" = "3:1"
1104 1215
            "AssemblyIsInGAC" = "11:FALSE"
1105
            "AssemblyAsmDisplayName" = "8:Markus.Service.IWcfService, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"
1216
            "AssemblyAsmDisplayName" = "8:Markus.EntityModel, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL"
1106 1217
                "ScatterAssemblies"
1107 1218
                {
1219
                    "_CF8F5716CC88DB33ADFC28EF082F2E05"
1220
                    {
1221
                    "Name" = "8:Markus.EntityModel.dll"
1222
                    "Attributes" = "3:512"
1223
                    }
1108 1224
                }
1109
            "SourcePath" = "8:Markus.Service.IWcfService.dll"
1225
            "SourcePath" = "8:Markus.EntityModel.dll"
1110 1226
            "TargetName" = "8:"
1111 1227
            "Tag" = "8:"
1112 1228
            "Folder" = "8:_AF3D4F8590B149E58640B3938282421B"
......
1124 1240
            "IsDependency" = "11:TRUE"
1125 1241
            "IsolateTo" = "8:"
1126 1242
            }
1127
            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BDF855B138DC4F25AEABF682E59CB28C"
1243
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D4B5A623922E3F9C104A147C8EB84703"
1128 1244
            {
1129
            "SourcePath" = "8:..\\WindowsSdk\\685f3d4691f444bc382762d603a99afc.cab"
1130
            "TargetName" = "8:685f3d4691f444bc382762d603a99afc.cab"
1245
            "AssemblyRegister" = "3:1"
1246
            "AssemblyIsInGAC" = "11:FALSE"
1247
            "AssemblyAsmDisplayName" = "8:MarkusPDF, Version=1.0.7178.16502, Culture=neutral, processorArchitecture=AMD64"
1248
                "ScatterAssemblies"
1249
                {
1250
                    "_D4B5A623922E3F9C104A147C8EB84703"
1251
                    {
1252
                    "Name" = "8:MarkusPDF.dll"
1253
                    "Attributes" = "3:512"
1254
                    }
1255
                }
1256
            "SourcePath" = "8:MarkusPDF.dll"
1257
            "TargetName" = "8:"
1131 1258
            "Tag" = "8:"
1132
            "Folder" = "8:_2E34897C7E1D4BBD8517078FF6DAFB1A"
1259
            "Folder" = "8:_AF3D4F8590B149E58640B3938282421B"
1133 1260
            "Condition" = "8:"
1134 1261
            "Transitive" = "11:FALSE"
1135 1262
            "Vital" = "11:TRUE"
......
1141 1268
            "PackageAs" = "3:1"
1142 1269
            "Register" = "3:1"
1143 1270
            "Exclude" = "11:FALSE"
1144
            "IsDependency" = "11:FALSE"
1271
            "IsDependency" = "11:TRUE"
1145 1272
            "IsolateTo" = "8:"
1146 1273
            }
1147
            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BE1AF92D0B9B4DD69F0BDD8279C5C77B"
1274
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DD2F4DA9B23C0D4896D1512E32AC3C91"
1148 1275
            {
1149
            "SourcePath" = "8:..\\WindowsSdk\\463ad1b0783ebda908fd6c16a4abfe93.cab"
1150
            "TargetName" = "8:463ad1b0783ebda908fd6c16a4abfe93.cab"
1276
            "AssemblyRegister" = "3:1"
1277
            "AssemblyIsInGAC" = "11:FALSE"
1278
            "AssemblyAsmDisplayName" = "8:EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL"
1279
                "ScatterAssemblies"
1280
                {
1281
                    "_DD2F4DA9B23C0D4896D1512E32AC3C91"
1282
                    {
1283
                    "Name" = "8:EntityFramework.SqlServer.dll"
1284
                    "Attributes" = "3:512"
1285
                    }
1286
                }
1287
            "SourcePath" = "8:EntityFramework.SqlServer.dll"
1288
            "TargetName" = "8:"
1151 1289
            "Tag" = "8:"
1152
            "Folder" = "8:_2E34897C7E1D4BBD8517078FF6DAFB1A"
1290
            "Folder" = "8:_AF3D4F8590B149E58640B3938282421B"
1153 1291
            "Condition" = "8:"
1154 1292
            "Transitive" = "11:FALSE"
1155 1293
            "Vital" = "11:TRUE"
......
1161 1299
            "PackageAs" = "3:1"
1162 1300
            "Register" = "3:1"
1163 1301
            "Exclude" = "11:FALSE"
1164
            "IsDependency" = "11:FALSE"
1302
            "IsDependency" = "11:TRUE"
1165 1303
            "IsolateTo" = "8:"
1166 1304
            }
1167
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DD2F4DA9B23C0D4896D1512E32AC3C91"
1305
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E6667F9A9D4CC260B253B0CC9008E23E"
1168 1306
            {
1169 1307
            "AssemblyRegister" = "3:1"
1170 1308
            "AssemblyIsInGAC" = "11:FALSE"
1171
            "AssemblyAsmDisplayName" = "8:EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL"
1309
            "AssemblyAsmDisplayName" = "8:Markus.Service.Convert.IPlugin, Version=2.5.6.0, Culture=neutral, processorArchitecture=MSIL"
1172 1310
                "ScatterAssemblies"
1173 1311
                {
1312
                    "_E6667F9A9D4CC260B253B0CC9008E23E"
1313
                    {
1314
                    "Name" = "8:Markus.Service.Convert.IPlugin.dll"
1315
                    "Attributes" = "3:512"
1316
                    }
1174 1317
                }
1175
            "SourcePath" = "8:EntityFramework.SqlServer.dll"
1318
            "SourcePath" = "8:Markus.Service.Convert.IPlugin.dll"
1176 1319
            "TargetName" = "8:"
1177 1320
            "Tag" = "8:"
1178 1321
            "Folder" = "8:_AF3D4F8590B149E58640B3938282421B"
......
1217 1360
            "AssemblyAsmDisplayName" = "8:Markus.Message, Version=1.5.3.0, Culture=neutral, processorArchitecture=MSIL"
1218 1361
                "ScatterAssemblies"
1219 1362
                {
1363
                    "_F38D4A6189AC8BD7DB7349B82FE22101"
1364
                    {
1365
                    "Name" = "8:Markus.Message.dll"
1366
                    "Attributes" = "3:512"
1367
                    }
1220 1368
                }
1221 1369
            "SourcePath" = "8:Markus.Message.dll"
1222 1370
            "TargetName" = "8:"
......
1937 2085
            }
1938 2086
            "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_DEAE4A29B7724067970913DC4F4EFF90"
1939 2087
            {
1940
            "SourcePath" = "8:..\\Markus.Service.Station\\obj\\x64\\Debug\\Markus.Service.Station.exe"
2088
            "SourcePath" = "8:..\\Markus.Service.Station\\obj\\x64\\Release\\Markus.Service.Station.exe"
1941 2089
            "TargetName" = "8:"
1942 2090
            "Tag" = "8:"
1943 2091
            "Folder" = "8:_AF3D4F8590B149E58640B3938282421B"
ConvertService/ServiceBase/Markus.Service.WcfService/Markus.Service.IWcfService.csproj
92 92
    <Compile Include="StationService.cs" />
93 93
  </ItemGroup>
94 94
  <ItemGroup>
95
    <None Include="App.config" />
95
    <None Include="App.config">
96
      <SubType>Designer</SubType>
97
    </None>
96 98
    <None Include="packages.config" />
97 99
  </ItemGroup>
98 100
  <ItemGroup>
ConvertService/ServiceBase/PEMSS/Plugin.ini
1
#해당 플러그인에 전달되는 parameter
2

  
3
[PemssDocumentInfo]
4
PEMSS_SERVICE = http://localhost:5978/PemssService.svc
5

  
6
MARKUS_ConnectionString  = AkxeK6rlR/pvDogtyJST7sHEFe9zDPwVf8W7ulsvVrFnqBcpEKFhacEE4OpBvuJYrkkubP91v40LyQ6mReCd3pXhTAPs5gL4W6eRhG6GszEN1j0uRQCUedpkJxvTN0E+ZVT+xJ0ouEUsY2RzbKdgIApEJCLgXJ+2WuEmv+43J6uYCeML7GpSlDgbQxk7Ejqc
ConvertService/ServiceBase/PEMSS/ServiceStation.ini
1
[SERVICE]
2
CONVERT_SERVICE_PROCESS = 10
3
WINDOW = true
4
IS_STATAION = true
5
STATAION_ADDRESS = http://localhost:9101/StationService
6

  
7
SERVICE_ID = 03A98B3B-ECCD-4972-B658-43C7571965DA
8

  
9
# 서비스 리스트 - 구분자는 ,
10
SERVICE_LIST = 03A98B3B-ECCD-4972-B658-43C7571965DA
11

  
12

  
13
#
14
# LOCAL EXPRESS인 경우  data source=.\SQLEXPRESS;initial catalog=Markus;persist security info=True;user id=ConvertService;Password=ConvertService;MultipleActiveResultSets=True;
15
# 원격인 경우 data source=MARKUS;initial catalog=Markus;persist security info=True;user id=doftech;Password=doftech;MultipleActiveResultSets=True;
16
MarkusDataBaseConnectionString = AkxeK6rlR/pvDogtyJST7sHEFe9zDPwVf8W7ulsvVrFnqBcpEKFhacEE4OpBvuJYrkkubP91v40LyQ6mReCd3pXhTAPs5gL4W6eRhG6GszEN1j0uRQCUedpkJxvTN0E+ZVT+xJ0ouEUsY2RzbKdgIApEJCLgXJ+2WuEmv+43J6uYCeML7GpSlDgbQxk7Ejqc
17

  
18
DownloadTempFolder = C:\CONVERT_SERVICE_TEMP
19
MULTI_TRHEAD_MAX_PAGE = 1
20

  
21
# MIN_FONT_SIZE = -1 인 경우 기본 Resolution 100으로 사용
22

  
23
# 페이지에 설정된 폰트 이하의 문자가 있는 경우 Resolution 200으로 변환
24
# 기본 = 10
25
MIN_FONT_SIZE = -1
26

  
27
# 설정된 Resolution으로 강제 변환
28
# 기본 = 0
29
USE_RESOLUTION = 450
30

  
31
# 상태 저장 간격(페이지당 상태 저장 간각)
32
# 기본 5
33
SAVE_STATUS_INTERVAL = 5
34

  
35
# Convert Process의 최대 메모리(GB)
36
RELEASE_WORK_MEMORY = 1
37

  
38
# 구분자는 콤마
39
FITER_PROCECT = 000000,111111
40

  
41
[WCF_ENDPOINT]
42
STATION_PORT =	9101
43
CONVERT_PORT =	9102
44
FINAL_PORT =	9103
45
STATION_SERVICE_NAME = StationService
ConvertService/ServiceBase/ServiceBase.sln
105 105
EndProject
106 106
Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "ConvertServiceMonitor", "ConvertServiceMonitor\ConvertServiceMonitor.vdproj", "{4F13EC6E-6369-4BF4-AE9C-9F6B647D37C8}"
107 107
EndProject
108
Project("{930C7802-8A8C-48F9-8165-68863BCCD9DD}") = "ConvertMonitorSetup", "ConvertMonitorSetup\ConvertMonitorSetup.wixproj", "{AD7EE515-34E5-4123-A0CD-B2F6ECC48E56}"
109
EndProject
110 108
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UnitTest.Markus.Service", "UnitTest.Markus.Service\UnitTest.Markus.Service.csproj", "{8555777D-922B-473F-9997-EBC63CA944C4}"
111 109
EndProject
112 110
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestDocumentInfo", "TestDocumentInfo\TestDocumentInfo.csproj", "{8E4A5DBD-1A40-4D43-A03B-E780ED098E9D}"
......
364 362
		{4F13EC6E-6369-4BF4-AE9C-9F6B647D37C8}.Release|Any CPU.ActiveCfg = Release
365 363
		{4F13EC6E-6369-4BF4-AE9C-9F6B647D37C8}.Release|x64.ActiveCfg = Release
366 364
		{4F13EC6E-6369-4BF4-AE9C-9F6B647D37C8}.Release|x86.ActiveCfg = Release
367
		{AD7EE515-34E5-4123-A0CD-B2F6ECC48E56}.Debug|Any CPU.ActiveCfg = Debug|x86
368
		{AD7EE515-34E5-4123-A0CD-B2F6ECC48E56}.Debug|x64.ActiveCfg = Debug|x86
369
		{AD7EE515-34E5-4123-A0CD-B2F6ECC48E56}.Debug|x86.ActiveCfg = Debug|x86
370
		{AD7EE515-34E5-4123-A0CD-B2F6ECC48E56}.Debug|x86.Build.0 = Debug|x86
371
		{AD7EE515-34E5-4123-A0CD-B2F6ECC48E56}.Release|Any CPU.ActiveCfg = Release|x86
372
		{AD7EE515-34E5-4123-A0CD-B2F6ECC48E56}.Release|x64.ActiveCfg = Release|x86
373
		{AD7EE515-34E5-4123-A0CD-B2F6ECC48E56}.Release|x86.ActiveCfg = Release|x86
374
		{AD7EE515-34E5-4123-A0CD-B2F6ECC48E56}.Release|x86.Build.0 = Release|x86
375 365
		{8555777D-922B-473F-9997-EBC63CA944C4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
376 366
		{8555777D-922B-473F-9997-EBC63CA944C4}.Debug|Any CPU.Build.0 = Debug|Any CPU
377 367
		{8555777D-922B-473F-9997-EBC63CA944C4}.Debug|x64.ActiveCfg = Debug|Any CPU
DnsCheckTest/MainWindow.xaml
10 10
        <Grid.RowDefinitions>
11 11
            <RowDefinition Height="Auto"/>
12 12
            <RowDefinition/>
13
            <RowDefinition/>
13 14
        </Grid.RowDefinitions>
14 15
        <Button Content="새로고침" HorizontalAlignment="Right" Margin="3" Click="Button_Click"/>
15
        <TextBox Grid.Row="1" x:Name="txtHostInfo"/>
16
        <TextBox Grid.Row="1" x:Name="txtHostInfoOld"/>
17
        <TextBox Grid.Row="2" x:Name="txtHostInfo"/>
16 18
    </Grid>
17 19
</Window>
DnsCheckTest/MainWindow.xaml.cs
2 2
using System;
3 3
using System.Collections.Generic;
4 4
using System.Linq;
5
using System.Net;
6
using System.Net.NetworkInformation;
5 7
using System.Text;
6 8
using System.Threading.Tasks;
7 9
using System.Windows;
......
25 27
        {
26 28
            InitializeComponent();
27 29

  
30
            DnsCheckOld();
28 31
            DnsCheck();
29 32
        }
30 33

  
31 34
        private void Button_Click(object sender, RoutedEventArgs e)
32 35
        {
36
            DnsCheckOld();
33 37
            DnsCheck();
34 38
        }
35 39

  
......
59 63

  
60 64
            txtHostInfo.Text = builder.ToString();
61 65
        }
66

  
67
        private void DnsCheckOld()
68
        {
69
            var ipaddress = GetDnsAdress();
70

  
71
            StringBuilder builder = new StringBuilder();
72

  
73
            var host = Dns.GetHostEntry(ipaddress);
74

  
75
            builder.AppendLine($"hostName : {host.HostName}");
76

  
77
            builder.AppendLine("");
78
            builder.AppendLine(" - Aliases");
79

  
80
            foreach (var item in host.Aliases)
81
            {
82
                builder.AppendLine($"  {item}");
83
            }
84

  
85
            builder.AppendLine("");
86
            builder.AppendLine(" - Address List");
87

  
88
            foreach (var item in host.AddressList)
89
            {
90
                builder.AppendLine($"  {item.AddressFamily.ToString()} : {item.ToString()}");
91
            }
92

  
93
            txtHostInfoOld.Text = builder.ToString();
94
        }
95

  
96
        public static IPAddress GetDnsAdress()
97
        {
98
            NetworkInterface[] networkInterfaces = NetworkInterface.GetAllNetworkInterfaces();
99

  
100
            foreach (NetworkInterface networkInterface in networkInterfaces)
101
            {
102
                if (networkInterface.OperationalStatus == OperationalStatus.Up)
103
                {
104
                    IPInterfaceProperties ipProperties = networkInterface.GetIPProperties();
105
                    IPAddressCollection dnsAddresses = ipProperties.DnsAddresses;
106

  
107
                    foreach (IPAddress dnsAdress in dnsAddresses)
108
                    {
109
                        return dnsAdress;
110
                    }
111
                }
112
            }
113
            return null;
114
        }
62 115
    }
63 116
}
KCOM.sln
52 52
EndProject
53 53
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DnsCheckTest", "DnsCheckTest\DnsCheckTest.csproj", "{2B00FB44-7C2F-4E57-9F9A-7CF2462172EA}"
54 54
EndProject
55
Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "MarkusApiSetup", "MarkusApiSetup\MarkusApiSetup.vdproj", "{8A397553-B98A-49B7-9BFE-2D61B628175D}"
56
EndProject
55 57
Global
56 58
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
57 59
		Debug_CadExport|Any CPU = Debug_CadExport|Any CPU
......
164 166
		{2CE89D0E-F2F8-40B2-88CA-2496C0E48EB0}.Release_Hyosung|x64.Build.0 = Release_Hyosung|Any CPU
165 167
		{2CE89D0E-F2F8-40B2-88CA-2496C0E48EB0}.Release_Hyosung|x86.ActiveCfg = Release_Hyosung|x86
166 168
		{2CE89D0E-F2F8-40B2-88CA-2496C0E48EB0}.Release_Hyosung|x86.Build.0 = Release_Hyosung|x86
167
		{2CE89D0E-F2F8-40B2-88CA-2496C0E48EB0}.Release_PEMSS|Any CPU.ActiveCfg = Release_PEMSS|Any CPU
168
		{2CE89D0E-F2F8-40B2-88CA-2496C0E48EB0}.Release_PEMSS|Any CPU.Build.0 = Release_PEMSS|Any CPU
... 이 차이점은 표시할 수 있는 최대 줄수를 초과해서 이 차이점은 잘렸습니다.

내보내기 Unified diff

클립보드 이미지 추가 (최대 크기: 500 MB)