This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # .editorconfig について詳しくは、次をご覧ください https://aka.ms/editorconfigdocs | |
| ############################### | |
| # Core EditorConfig Options # | |
| ############################### | |
| root = true | |
| # All files | |
| [*] | |
| indent_style = space | |
| # Code files | |
| [*.{cs,csx,vb,vbx}] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using Microsoft.MixedReality.Toolkit.Build.Editor; | |
| using Microsoft.MixedReality.Toolkit.Utilities.Editor; | |
| using System.IO; | |
| using System.Threading; | |
| using System.Threading.Tasks; | |
| using System.Xml.Linq; | |
| using UnityEditor; | |
| using UnityEngine; | |
| public class AutoBuild |