Reconfigure for GIT

This commit is contained in:
2017-03-26 20:00:03 +02:00
commit 00637826ab
8056 changed files with 535977 additions and 0 deletions
@@ -0,0 +1,6 @@
<?xml version ="1.0"?>
<configuration>
<startup useLegacyV2RuntimeActivationPolicy="true">
<supportedRuntime version="v4.0.30319"/>
</startup>
</configuration>
@@ -0,0 +1,10 @@
A szervizek telepítéséhez és eltávolításához az InstallUtil mappában lévő InstallUtil.exe-t kell használni. A telepítéskor a szerviz neve a telepítendő szerviz mappájában elhelyezett Service.exe.config fileban lévő kulcsok határozzék meg.
<appSettings>
<!--Service name-->
<add key="ServiceName" value="SISRabbitMQ$3C_RB_Publisher"/>
<add key="DisplayName" value="SISRabbitMQ$3C_RB_Publisher"/>
...
A szerviz viselkedését (küldés/fogadás) szint a config file-ban kell beállítani
<!--0=Reader, 1=Publisher-->
<add key="RunningMode" value="1"/>
Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

@@ -0,0 +1,8 @@
:: A telepíteni kívánt service-t
:: a …\InstallUtil\InstallUtil.exe file-al
:: lehet Windows Serviceként regisztrálni
installutil.exe Service.exe
pause
@@ -0,0 +1,8 @@
:: Az eltávolítani kívánt service-t
:: a …\InstallUtil\InstallUtil.exe /u file-al
:: lehet a Windows Service-kbõl eltávolítani
installutil.exe /u Service.exe
pause