From e028cfa1ce30f2e4917027e07b40643b60f39e7e Mon Sep 17 00:00:00 2001 From: Wouter Date: Tue, 28 Jan 2020 13:42:40 +0100 Subject: [PATCH] Update example packaging script --- ExamplesPackaging/package.bat | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/ExamplesPackaging/package.bat b/ExamplesPackaging/package.bat index 1444e54..bd4f79c 100644 --- a/ExamplesPackaging/package.bat +++ b/ExamplesPackaging/package.bat @@ -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