diff --git a/.gitignore b/.gitignore index 3bfbd9d..4af6baf 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,3 @@ .vs/ build/ files/ -tools/ diff --git a/harvest.cmd b/harvest.cmd deleted file mode 100644 index 2a19d4e..0000000 --- a/harvest.cmd +++ /dev/null @@ -1,10 +0,0 @@ -@echo off -setlocal - -set _P=%~dp0 -pushd %_P% - -tools\wix\heat dir src\portable -ag -srd -sreg -scom -cg GitComponents -dr INSTALLFOLDER -o src\GitComponents.wxs - -popd -endlocal \ No newline at end of file diff --git a/make.bat b/make.bat deleted file mode 100644 index 0bdc731..0000000 --- a/make.bat +++ /dev/null @@ -1,18 +0,0 @@ -@echo off -setlocal - -set _P=%~dp0 -pushd %_P% - -if /i "%1"=="bundle" goto Bundle - -rmdir /s/q build -tools\wix\candle src\GitProduct.wxs src\GitComponents.wxs src\GitCredStoreComponents.wxs src\GitPoshComponents.wxs -ext WixDependencyExtension -ext WixNetfxExtension -ext WixUtilExtension -o build\obj\ -tools\wix\light build\obj\GitProduct.wixobj build\obj\GitComponents.wixobj build\obj\GitCredStoreComponents.wixobj build\obj\GitPoshComponents.wixobj -ext WixDependencyExtension -ext WixNetfxExtension -ext WixUtilExtension -o build\msi\git.msi -b src\portable -b lib -sval - -:Bundle -tools\wix\candle src\GitBundle.wxs -o build\obj\ -ext WixBalExtension -ext WixDependencyExtension -tools\wix\light build\obj\GitBundle.wixobj -o build\gitsetup.exe -b build\msi -b portable -b src -ext WixBalExtension -ext WixDependencyExtension - -popd -endlocal