File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change
1
+ <#
2
+ . SYNOPSIS
3
+ This script generate a folder that can be used as a unity package.
4
+
5
+ . PARAMETER targetFolder
6
+ Location of the folder where the Unity package will be generated, it automatically add the version to it.
7
+ eg. com.studio-nyx.interop-unity-cuda. will become ..\\com.studio-nyx.interop-unity-cuda.1.0.1
8
+
9
+ . EXAMPLE
10
+ .\packageUnity.ps1 "..\\..\\com.studio-nyx.interop-unity-cuda."
11
+ will result in a folder .com.studio-nyx.interop-unity-cuda.1.0.1
12
+
13
+ . NOTES
14
+ File Name : packageUnity.ps1
15
+ Author : David Algis
16
+ Prerequisite : PowerShell v3
17
+ Copyright 2023 - Studio Nyx
18
+ #>
1
19
param (
2
20
[string ]$targetFolder
3
21
)
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ This script run unit test of Unity with all supported API
8
8
. NOTES
9
9
File Name : runUnitTest.ps1
10
10
Author : David Algis
11
- Prerequisite : PowerShell v3 and MsBuild
11
+ Prerequisite : PowerShell v3
12
12
Copyright 2023 - Studio Nyx
13
13
#>
14
14
You can’t perform that action at this time.
0 commit comments