Commit ee603f84 authored by Francesco Carraro's avatar Francesco Carraro
Browse files

fc

parent 8527a6cd
Loading
Loading
Loading
Loading
+22 −6
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@ set projects_folder_path=C:\Visual Studio\Projects\C#\INAF

::define AlgLib solution folder and commit it
set app_path="%projects_folder_path%\Apps\INAF.Apps.Uwp.SLabDataManager"
cd /D "%library_app_path%"
cd /D "%app_path%"
echo Committing %app_path%...
git add -A
git commit -am "%comment%"
@@ -49,8 +49,8 @@ git push

::define UWP Converters solution folder and commit it
set library_ftp_path="%projects_folder_path%\Libraries\Uwp\INAF.Libraries.Uwp.Converters"
cd /D "%library_uwpconverters_path%"
echo Committing %library_uwpconverters_path%...
cd /D "%library_ftp_path%"
echo Committing %library_ftp_path%...
git add -A
git commit -am "%comment%"
git push
@@ -63,10 +63,18 @@ git add -A
git commit -am "%comment%"
git push

::define UWP RemoteAuthentication solution folder and commit it
set library_remoteauthentication_path="%projects_folder_path%\Libraries\Uwp\INAF.Libraries.Uwp.RemoteAuthentication"
cd /D "%library_remoteauthentication_path%"
echo Committing %library_remoteauthentication_path%...
git add -A
git commit -am "%comment%"
git push

::define UWP Settings solution folder and commit it
set library_db_path="%projects_folder_path%\Libraries\Uwp\INAF.Libraries.Uwp.Settings"
cd /D "%library_uwpsettings_path%"
echo Committing %library_uwpsettings_path%...
cd /D "%library_db_path%"
echo Committing %library_db_path%...
git add -A
git commit -am "%comment%"
git push
@@ -80,13 +88,21 @@ git commit -am "%comment%"
git push

::define TelerikChartsExtensions solution folder and commit it
set library_xml_path="%projects_folder_path%\Libraries\Uwp\INAF.Libraries.Uwp.TelerikChartsExtensions"
set library_tce_path="%projects_folder_path%\Libraries\Uwp\INAF.Libraries.Uwp.TelerikChartsExtensions"
cd /D "%library_tce_path%"
echo Committing %library_tce_path%...
git add -A
git commit -am "%comment%"
git push

::define TelerikChartsExtensions solution folder and commit it
set library_xml_path="%projects_folder_path%\Libraries\Uwp\INAF.Libraries.Uwp.Xml"
cd /D "%library_xml_path%"
echo Committing %library_xml_path%...
git add -A
git commit -am "%comment%"
git push

:: end
cd /D "%app_path%"