com.github.asus4.onnxruntime 0.1.2 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,25 @@
1
+ 
2
+ Microsoft Visual Studio Solution File, Format Version 12.00
3
+ # Visual Studio Version 16
4
+ VisualStudioVersion = 16.0.810.7
5
+ MinimumVisualStudioVersion = 10.0.40219.1
6
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.ML.OnnxRuntime", "Microsoft.ML.OnnxRuntime.csproj", "{48FA3117-6599-475D-AE7A-1EE0FB9815D3}"
7
+ EndProject
8
+ Global
9
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
10
+ Debug|Any CPU = Debug|Any CPU
11
+ Release|Any CPU = Release|Any CPU
12
+ EndGlobalSection
13
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
14
+ {48FA3117-6599-475D-AE7A-1EE0FB9815D3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15
+ {48FA3117-6599-475D-AE7A-1EE0FB9815D3}.Debug|Any CPU.Build.0 = Debug|Any CPU
16
+ {48FA3117-6599-475D-AE7A-1EE0FB9815D3}.Release|Any CPU.ActiveCfg = Release|Any CPU
17
+ {48FA3117-6599-475D-AE7A-1EE0FB9815D3}.Release|Any CPU.Build.0 = Release|Any CPU
18
+ EndGlobalSection
19
+ GlobalSection(SolutionProperties) = preSolution
20
+ HideSolutionNode = FALSE
21
+ EndGlobalSection
22
+ GlobalSection(ExtensibilityGlobals) = postSolution
23
+ SolutionGuid = {B2154F36-BE1A-469B-92C1-3365E65F26F8}
24
+ EndGlobalSection
25
+ EndGlobal
@@ -0,0 +1,7 @@
1
+ fileFormatVersion: 2
2
+ guid: f2b0fbab933ab432caefbe0ad6eaaaba
3
+ DefaultImporter:
4
+ externalObjects: {}
5
+ userData:
6
+ assetBundleName:
7
+ assetBundleVariant:
@@ -1,3 +1,15 @@
1
+ // Modified for Unity
2
+ #if UNITY_ANDROID && !UNITY_EDITOR
3
+ #define __ANDROID__
4
+ #define __MOBILE__
5
+ #elif UNITY_IOS && !UNITY_EDITOR
6
+ #define __IOS__
7
+ #define __ENABLE_COREML__
8
+ #define __MOBILE__
9
+ #elif UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX
10
+ #define __ENABLE_COREML__
11
+ #endif
12
+
1
13
  // Copyright (c) Microsoft Corporation. All rights reserved.
2
14
  // Licensed under the MIT License.
3
15
 
@@ -1,3 +1,15 @@
1
+ // Modified for Unity
2
+ #if UNITY_ANDROID && !UNITY_EDITOR
3
+ #define __ANDROID__
4
+ #define __MOBILE__
5
+ #elif UNITY_IOS && !UNITY_EDITOR
6
+ #define __IOS__
7
+ #define __ENABLE_COREML__
8
+ #define __MOBILE__
9
+ #elif UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX
10
+ #define __ENABLE_COREML__
11
+ #endif
12
+
1
13
  // Copyright (c) Microsoft Corporation. All rights reserved.
2
14
  // Licensed under the MIT License.
3
15