Add batch files requested by Kludge

This commit is contained in:
Matt Nadareski
2016-04-06 13:08:26 -07:00
parent a06ecccb46
commit 9e0b80cda3
4 changed files with 17 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
REM Rename files
for /r "%~1" %%A in (*.xml *.dat) do (
..\SingleGame "%%~A"
)

View File

@@ -0,0 +1,4 @@
REM Rename files with no renaming in mind
for /r "%~1" %%A in (*.xml *.dat) do (
..\SingleGame "%%~A" -n
)

View File

@@ -0,0 +1,6 @@
REM Rename files with root directory in mind
set rootdir=C:\
for /r "%~1" %%A in (*.xml *.dat) do (
..\SingleGame "%%~A" -r=%rootdir%
)

View File

@@ -48,6 +48,9 @@
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
<None Include="Batches\SingleGameDir.bat" />
<None Include="Batches\SingleGameDir_NoRename.bat" />
<None Include="Batches\SingleGameDir_WithRoot.bat" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SabreHelper\SabreHelper.csproj">