mirror of
https://github.com/stokebob/bnhtrade.git
synced 2026-03-19 06:27:15 +00:00
Amazon had depreciated a number of reports that were used for stock reconciliation. Application now uses the new fba ledger report to reconcile. It is currently untested, as this requires data from Amazon. Methods that require testing will return a 'NotImplementedException'. Also, removed the depreciated ILMerge and replaced with ILRepack. Plus much more tidying up, and improvements.
19 lines
527 B
Batchfile
19 lines
527 B
Batchfile
@set batchpath=%~dp0
|
|
@set dllpath=%batchpath%
|
|
::bnhtrade Database Client\bin\Release\
|
|
|
|
@copy "%dllpath%bnhtradeCOM.dll" "%SYSTEMROOT%\SysWOW64\bnhtradeCOM.dll"
|
|
@copy "%dllpath%bnhtradeCOM.dll" "%SYSTEMROOT%\System32\bnhtradeCOM.dll"
|
|
|
|
@c:
|
|
@cd\Windows\Microsoft.NET\Framework\v4.*
|
|
regasm.exe /codebase /tlb "bnhtradeCOM.dll"
|
|
|
|
@cd\Windows\Microsoft.NET\Framework64\v4.*
|
|
regasm.exe /codebase /tlb "bnhtradeCOM.dll"
|
|
|
|
@echo.
|
|
@echo Finished running regasm install script.
|
|
@echo.
|
|
@rem if no arguments passed, pause
|
|
@IF "%~1"=="" @pause |