Skip to content

Commit

Permalink
Update example packaging script
Browse files Browse the repository at this point in the history
  • Loading branch information
Wouterdek committed Jan 28, 2020
1 parent 42f941c commit e028cfa
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions ExamplesPackaging/package.bat
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,18 @@ mkdir NodeNetwork-Examples
del examples.zip
echo Copying files...
cd NodeNetwork-Examples
xcopy /Y "..\..\ExampleCalculatorApp\bin\Release\*.exe" "."
xcopy /Y "..\..\ExampleCalculatorApp\bin\Release\*.exe.config" "."
xcopy /Y "..\..\ExampleCalculatorApp\bin\Release\*.dll" "."
xcopy /Y "..\..\ExampleShaderEditorApp\bin\Release\*.exe" "."
xcopy /Y "..\..\ExampleShaderEditorApp\bin\Release\*.exe.config" "."
xcopy /Y "..\..\ExampleShaderEditorApp\bin\Release\*.dll" "."
xcopy /Y "..\..\ExampleCodeGenApp\bin\Release\*.exe" "."
xcopy /Y "..\..\ExampleCodeGenApp\bin\Release\*.exe.config" "."
xcopy /Y "..\..\ExampleCodeGenApp\bin\Release\*.dll" "."
xcopy /Y "..\..\ExampleCalculatorApp\bin\Release\netcoreapp3.1\*.exe" "."
xcopy /Y "..\..\ExampleCalculatorApp\bin\Release\netcoreapp3.1\*.json" "."
xcopy /Y "..\..\ExampleCalculatorApp\bin\Release\netcoreapp3.1\*.exe.config" "."
xcopy /Y "..\..\ExampleCalculatorApp\bin\Release\netcoreapp3.1\*.dll" "."
xcopy /Y "..\..\ExampleShaderEditorApp\bin\Release\netcoreapp3.1\*.exe" "."
xcopy /Y "..\..\ExampleShaderEditorApp\bin\Release\netcoreapp3.1\*.json" "."
xcopy /Y "..\..\ExampleShaderEditorApp\bin\Release\netcoreapp3.1\*.exe.config" "."
xcopy /Y "..\..\ExampleShaderEditorApp\bin\Release\netcoreapp3.1\*.dll" "."
xcopy /Y "..\..\ExampleCodeGenApp\bin\Release\netcoreapp3.1\*.exe" "."
xcopy /Y "..\..\ExampleCodeGenApp\bin\Release\netcoreapp3.1\*.json" "."
xcopy /Y "..\..\ExampleCodeGenApp\bin\Release\netcoreapp3.1\*.exe.config" "."
xcopy /Y "..\..\ExampleCodeGenApp\bin\Release\netcoreapp3.1\*.dll" "."
cd ..
echo Packaging examples...
.\7zip\7z.exe a -tzip examples.zip NodeNetwork-Examples
Expand Down

0 comments on commit e028cfa

Please sign in to comment.