You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| See code examples. Do a coding tutorial. Watch guest lectures. | Get design guides. Build user interface. Learn interactions and input. | Get development guides. Learn the technology. Understand the science. | Join open source projects. Ask questions on forums. Attend events and meetups. |
63
63
64
-
# Building the Artifacts
65
-
66
-
## Requirements
67
-
68
-
### NuGet
69
-
[NuGet](https://www.nuget.org/downloads) is the package manager for .Net and you'll need to have it available in the PATH.
70
-
71
-
### UnitySetup
72
-
The build process leverages [UnitySetup](https://www.powershellgallery.com/packages/UnitySetup), an OSS PowerShell Module from Microsoft.
73
-
74
-
Install from PowerShell:
75
-
76
-
```powershell
77
-
Install-Module UnitySetup -Scope CurrentUser
78
-
```
79
-
80
-
### Git
81
-
If you do not specify a version, then [Git](https://git-scm.com/downloads) is used to find relevant tags. In this case it will need to be available in the PATH.
82
-
83
-
## Run the Build
84
-
Simply execute the build script as such:
85
-
86
-
```powershell
87
-
.\build.ps1 -Version '1.2.3'
88
-
```
89
-
For help and examples simply use the PowerShell help command:
90
-
```
91
-
help .\build.ps1 -Detailed
92
-
```
93
-
94
-
> Note: If you don't specify `-Version <version>` the script will try to infer it from tags pointing to the current git commit. An error is produced if you don't have a tag and no version is provided.
64
+
# How to Contribute
65
+
View the [**How To Contribute**](https://github.com/Microsoft/MixedRealityToolkit-Unity/wiki/How-to-Contribute) wiki page for the most up to date instructions on contributing to the Mixed Reality Toolkit!
0 commit comments