forked from Unity-Technologies/com.unity.search.extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbackport.bat
More file actions
14 lines (10 loc) · 692 Bytes
/
backport.bat
File metadata and controls
14 lines (10 loc) · 692 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
@ECHO OFF
SET UNITY_DIR="U:/master"
SET PACKAGE_DIR="%CD%/package"
REM Define Beyond Compare executable path
SET BC_CMD="C:/Program Files/Beyond Compare 4/BComp.com"
REM Compare editor sources
%BC_CMD% /iu "%UNITY_DIR%/Modules/QuickSearch/Editor/Dependencies" "%PACKAGE_DIR%/Dependencies" /filters="-*.meta"
REM Compare tests
%BC_CMD% /iu "%UNITY_DIR%/Modules/QuickSearch/Tests/QuickSearch/Assets/Dependencies" "%CD%/projects/TestDependencies/Assets/Dependencies" /filters=""
%BC_CMD% /iu "%UNITY_DIR%/Modules/QuickSearch/Tests/QuickSearch/Assets/Editor/Tests/Dependencies" "%CD%/projects/TestDependencies/Assets/Editor" /filters="-TestUtils.*;-com.unity.search.extensions.tests.asmdef*"