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+ #>
119param (
220 [string ]$targetFolder
321)
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
88. NOTES
99File Name : runUnitTest.ps1
1010Author : David Algis
11- Prerequisite : PowerShell v3 and MsBuild
11+ Prerequisite : PowerShell v3
1212Copyright 2023 - Studio Nyx
1313#>
1414
You can’t perform that action at this time.
0 commit comments