Skip to content

Commit e4002dc

Browse files
committed
💡 Add comment to powershell script to make them more clear #9
1 parent fa72209 commit e4002dc

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

Plugin/buildtools/packageUnity.ps1

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
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+
#>
119
param(
220
[string]$targetFolder
321
)

Plugin/buildtools/runUnitTest.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This script run unit test of Unity with all supported API
88
.NOTES
99
File Name : runUnitTest.ps1
1010
Author : David Algis
11-
Prerequisite : PowerShell v3 and MsBuild
11+
Prerequisite : PowerShell v3
1212
Copyright 2023 - Studio Nyx
1313
#>
1414

0 commit comments

Comments
 (0)