diff --git a/YetAnotherHttpHandler.sln b/YetAnotherHttpHandler.sln index abee981..bd64367 100644 --- a/YetAnotherHttpHandler.sln +++ b/YetAnotherHttpHandler.sln @@ -17,6 +17,10 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution THIRD-PARTY-NOTICES = THIRD-PARTY-NOTICES EndProjectSection EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "YetAnotherHttpHandler.Unity.Dependencies", "src\YetAnotherHttpHandler.Unity.Dependencies\YetAnotherHttpHandler.Unity.Dependencies.csproj", "{9F9F6B43-8CBF-4025-8B8B-A4465C04740E}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "YetAnotherHttpHandler.Unity.Dependencies.Sync", "src\YetAnotherHttpHandler.Unity.Dependencies.Sync\YetAnotherHttpHandler.Unity.Dependencies.Sync.csproj", "{7038AD7C-6767-4427-8B89-473BC27E9C9A}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -31,6 +35,14 @@ Global {22CFEF14-D36A-4E21-B51F-F31053C0E870}.Debug|Any CPU.Build.0 = Debug|Any CPU {22CFEF14-D36A-4E21-B51F-F31053C0E870}.Release|Any CPU.ActiveCfg = Release|Any CPU {22CFEF14-D36A-4E21-B51F-F31053C0E870}.Release|Any CPU.Build.0 = Release|Any CPU + {9F9F6B43-8CBF-4025-8B8B-A4465C04740E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9F9F6B43-8CBF-4025-8B8B-A4465C04740E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9F9F6B43-8CBF-4025-8B8B-A4465C04740E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9F9F6B43-8CBF-4025-8B8B-A4465C04740E}.Release|Any CPU.Build.0 = Release|Any CPU + {7038AD7C-6767-4427-8B89-473BC27E9C9A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7038AD7C-6767-4427-8B89-473BC27E9C9A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7038AD7C-6767-4427-8B89-473BC27E9C9A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7038AD7C-6767-4427-8B89-473BC27E9C9A}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/YetAnotherHttpHandler.Unity.Dependencies.Sync/Program.cs b/src/YetAnotherHttpHandler.Unity.Dependencies.Sync/Program.cs new file mode 100644 index 0000000..c8639cc --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity.Dependencies.Sync/Program.cs @@ -0,0 +1,120 @@ +// See https://aka.ms/new-console-template for more information + +using System.Text.Json; + +var projectAssetJsonPath = Path.GetFullPath(Path.Combine(Environment.CurrentDirectory, @"..\YetAnotherHttpHandler.Unity.Dependencies\obj\project.assets.json")); +Console.WriteLine($"projectAssetJsonPath: {projectAssetJsonPath}"); +if (!File.Exists(projectAssetJsonPath)) +{ + Console.Error.WriteLine("Error: project.assets.json is not found. Please execute `dotnet build ../YetAnotherHttpHandler.Dependencies` before run this."); + return -1; +} + +var pluginBaseDir = Path.GetFullPath(Path.Combine(Environment.CurrentDirectory, @"..\YetAnotherHttpHandler.Unity\Assets\Plugins")); +Console.WriteLine($"pluginBaseDir: {pluginBaseDir}"); +if (!Directory.Exists(pluginBaseDir)) +{ + Console.Error.WriteLine($"Error: Cannot load project.assets.json."); + return -1; +} + +// Load project.assets.json +var jsonSerializerOptions = new JsonSerializerOptions() +{ + PropertyNameCaseInsensitive = true, +}; +var projectAssets = JsonSerializer.Deserialize(File.ReadAllText(projectAssetJsonPath), jsonSerializerOptions); +if (projectAssets == null) +{ + Console.Error.WriteLine($"Error: Plugins directory is not found in YetAnotherHttpHandler.Unity project."); + return -1; +} + +Console.WriteLine($"PackageFolders: {string.Join(";", projectAssets.PackageFolders.Keys)}"); + +// Determine the files that need to be copied +var copyItems = new List(); +var targetNetStandard2_1 = projectAssets.Targets[".NETStandard,Version=v2.1"]; +foreach (var dep in targetNetStandard2_1) +{ + var licenseFiles = projectAssets.Libraries[dep.Key].Files.Where(x => x.StartsWith("LICENSE", StringComparison.OrdinalIgnoreCase)); + copyItems.Add(new CopyToPlugins(dep.Key, dep.Value.Runtime.Keys.Concat(licenseFiles).ToArray())); +} + +// List the files that will be copy. +foreach (var item in copyItems) +{ + var srcDir = projectAssets.PackageFolders.Select(x => Path.Combine(x.Key, item.BaseName.ToLower())).FirstOrDefault(x => Directory.Exists(x)); + if (srcDir is null) + { + Console.Error.WriteLine($"Error: NuGet package '{item.BaseName}' not found in any package directories."); + return -1; + } + var destDir = Path.Combine(pluginBaseDir, item.BaseName); + foreach (var file in item.Files) + { + var src = Path.Combine(srcDir, file); + var dest = Path.Combine(destDir, file); + + var destFileDir = Path.GetDirectoryName(dest); + if (!Directory.Exists(destFileDir)) + { + Console.WriteLine($"Create directory: {destFileDir}"); + Directory.CreateDirectory(destFileDir); + } + + Console.WriteLine($"Copy: {src} -> {dest}"); + File.Copy(src, dest, overwrite: true); + } +} + +// Create the dependencies lists to build .unitypackage. +HashSet depsForYaha; +{ + var depsListFileName = "YetAnotherHttpHandler.deps.txt"; + var depsRootPackage = "System.IO.Pipelines"; + var outputDepsListPath = Path.Combine(pluginBaseDir, depsListFileName); + var deps = ResolveDependencies(depsRootPackage, targetNetStandard2_1); + Console.WriteLine($"Write dependencies list: {outputDepsListPath}"); + File.WriteAllText(outputDepsListPath, string.Join("\r\n", deps.OrderBy(x => x))); + depsForYaha = deps; +} +{ + var depsListFileName = "Grpc.Net.Client.deps.txt"; + var depsRootPackage = "Grpc.Net.Client"; + var outputDepsListPath = Path.Combine(pluginBaseDir, depsListFileName); + var deps = ResolveDependencies(depsRootPackage, targetNetStandard2_1, depsForYaha); // No need to include System.IO.Pipelines and other packages. + Console.WriteLine($"Write dependencies list: {outputDepsListPath}"); + File.WriteAllText(outputDepsListPath, string.Join("\r\n", deps.OrderBy(x => x))); +} + +return 0; + +static HashSet ResolveDependencies(string library, IReadOnlyDictionary installedDeps, HashSet? excludes = null) +{ + var hashSet = new HashSet(); + hashSet.Add(library); + var targetLib = installedDeps.FirstOrDefault(x => x.Key.StartsWith(library + "/")); + foreach (var dep in targetLib.Value.Dependencies?.Keys ?? Array.Empty()) + { + if (excludes is not null && excludes.Contains(dep)) continue; + + hashSet.Add(dep); + foreach (var depdep in ResolveDependencies(dep, installedDeps, excludes)) + { + hashSet.Add(depdep); + } + } + return hashSet; +} +record CopyToPlugins(string BaseName, IReadOnlyList Files); + +public record AssetDetails(string Related); +public record Dependency(string Type, IDictionary? Dependencies, IReadOnlyDictionary Compile, IReadOnlyDictionary Runtime); +public record Library(string Sha512, string Type, string Path, IReadOnlyList Files); +public record PackageAssetsJson( + int Version, + IReadOnlyDictionary> Targets, + IReadOnlyDictionary Libraries, + IReadOnlyDictionary PackageFolders +); \ No newline at end of file diff --git a/src/YetAnotherHttpHandler.Unity.Dependencies.Sync/YetAnotherHttpHandler.Unity.Dependencies.Sync.csproj b/src/YetAnotherHttpHandler.Unity.Dependencies.Sync/YetAnotherHttpHandler.Unity.Dependencies.Sync.csproj new file mode 100644 index 0000000..f02677b --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity.Dependencies.Sync/YetAnotherHttpHandler.Unity.Dependencies.Sync.csproj @@ -0,0 +1,10 @@ + + + + Exe + net7.0 + enable + enable + + + diff --git a/src/YetAnotherHttpHandler.Unity.Dependencies/README.md b/src/YetAnotherHttpHandler.Unity.Dependencies/README.md new file mode 100644 index 0000000..4526710 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity.Dependencies/README.md @@ -0,0 +1,8 @@ +# YetAnotherHttpHandler.Unity.Dependencies +A project for managing NuGet references for Unity. + +To update the library in Unity, please follow the steps below: + +- Build this project +- Run `YetAnotherHttpHandler.Unity.Dependencies.Sync` project +- Open `YetAnotherHttpHandler.Unity` in Unity (to update the `.meta` files) \ No newline at end of file diff --git a/src/YetAnotherHttpHandler.Unity.Dependencies/YetAnotherHttpHandler.Unity.Dependencies.csproj b/src/YetAnotherHttpHandler.Unity.Dependencies/YetAnotherHttpHandler.Unity.Dependencies.csproj new file mode 100644 index 0000000..f3501a4 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity.Dependencies/YetAnotherHttpHandler.Unity.Dependencies.csproj @@ -0,0 +1,13 @@ + + + + netstandard2.1 + enable + + + + + + + + diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Editor/Scripts/PackageExporter.cs b/src/YetAnotherHttpHandler.Unity/Assets/Editor/Scripts/PackageExporter.cs index efd9b1e..c106bd3 100644 --- a/src/YetAnotherHttpHandler.Unity/Assets/Editor/Scripts/PackageExporter.cs +++ b/src/YetAnotherHttpHandler.Unity/Assets/Editor/Scripts/PackageExporter.cs @@ -11,72 +11,25 @@ public static class PackageExporter [MenuItem("Tools/Export Unitypackage")] public static void Export() { - const string PackageName = "Cysharp.Net.Http.YetAnotherHttpHandler.Native"; - - var root = $"Plugins/{PackageName}"; - var version = GetVersion(root); - - var fileName = string.IsNullOrEmpty(version) ? $"{PackageName}.unitypackage" : $"{PackageName}.{version}.unitypackage"; - var exportPath = "./" + fileName; - - var additionalAssets = new string[] - { - "Assets/Plugins/System.IO.Pipelines", - "Assets/Plugins/System.Runtime.CompilerServices.Unsafe", - }; - - var path = Path.Combine(Application.dataPath, root); - var assets = Directory.EnumerateFiles(path, "*", SearchOption.AllDirectories) - .Where(x => Path.GetExtension(x) is ".cs" or ".asmdef" or ".json" or ".meta" or ".jslib" or ".so" or ".dll" or ".a" or ".dylib") - .Select(x => "Assets" + x.Replace(Application.dataPath, "").Replace(@"\", "/")) - .Concat(additionalAssets.SelectMany(x => Directory.EnumerateFiles(x, "*", SearchOption.AllDirectories))) - .ToArray(); + PackDependencies("Cysharp.Net.Http.YetAnotherHttpHandler.Dependencies", "YetAnotherHttpHandler.deps.txt"); + PackDependencies("Grpc.Net.Client.Dependencies", "Grpc.Net.Client.deps.txt"); + } - UnityEngine.Debug.Log("Export below files" + Environment.NewLine + string.Join(Environment.NewLine, assets)); + static void PackDependencies(string unityPackageName, string dependenciesListFileName) + { + Debug.Log($"Creating package '{unityPackageName}'..."); + var pluginsDir = Path.Combine(Application.dataPath, "Plugins"); + var libraryNames = File.ReadAllLines(Path.Combine(pluginsDir, dependenciesListFileName)); + Debug.Log($"Includes library: {string.Join(';', libraryNames)}"); + var exportPath = $"./{unityPackageName}.unitypackage"; AssetDatabase.ExportPackage( - assets, + libraryNames.Select(x => $"Assets/Plugins/{x}").ToArray(), exportPath, - ExportPackageOptions.Default); + ExportPackageOptions.Recurse); UnityEngine.Debug.Log("Export complete: " + Path.GetFullPath(exportPath)); } - - static string GetVersion(string root) - { - var version = Environment.GetEnvironmentVariable("UNITY_PACKAGE_VERSION"); - var versionJson = Path.Combine(Application.dataPath, root, "package.json"); - - if (File.Exists(versionJson)) - { - var v = JsonUtility.FromJson(File.ReadAllText(versionJson)); - - if (!string.IsNullOrEmpty(version)) - { - if (v.version != version) - { - var msg = $"package.json and env version are mismatched. UNITY_PACKAGE_VERSION:{version}, package.json:{v.version}"; - - if (Application.isBatchMode) - { - Console.WriteLine(msg); - Application.Quit(1); - } - - throw new Exception("package.json and env version are mismatched."); - } - } - - version = v.version; - } - - return version; - } - - public class Version - { - public string version; - } } #endif diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api.meta new file mode 100644 index 0000000..402612a --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d9b6def6c07baa3449dff0225edf6a20 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api/2.55.0.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api/2.55.0.meta new file mode 100644 index 0000000..d9835e9 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api/2.55.0.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d96c0af301b3aed4b9c01e07b0858733 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api/2.55.0/lib.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api/2.55.0/lib.meta new file mode 100644 index 0000000..127addb --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api/2.55.0/lib.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0174a74c5e732c345b29d757e21ededd +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api/2.55.0/lib/netstandard2.1.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api/2.55.0/lib/netstandard2.1.meta new file mode 100644 index 0000000..d353a57 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api/2.55.0/lib/netstandard2.1.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8c9dbf7e093c47d4e94f651cc23d4ff9 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api/2.55.0/lib/netstandard2.1/Grpc.Core.Api.dll b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api/2.55.0/lib/netstandard2.1/Grpc.Core.Api.dll new file mode 100644 index 0000000..ea7532d Binary files /dev/null and b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api/2.55.0/lib/netstandard2.1/Grpc.Core.Api.dll differ diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api/2.55.0/lib/netstandard2.1/Grpc.Core.Api.dll.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api/2.55.0/lib/netstandard2.1/Grpc.Core.Api.dll.meta new file mode 100644 index 0000000..de74dc6 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api/2.55.0/lib/netstandard2.1/Grpc.Core.Api.dll.meta @@ -0,0 +1,33 @@ +fileFormatVersion: 2 +guid: f4eee136ad047c244b8b2675557c3bdd +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + - first: + Windows Store Apps: WindowsStoreApps + second: + enabled: 0 + settings: + CPU: AnyCPU + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.deps.txt b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.deps.txt new file mode 100644 index 0000000..7132cbf --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.deps.txt @@ -0,0 +1,5 @@ +Grpc.Core.Api +Grpc.Net.Client +Grpc.Net.Common +Microsoft.Extensions.Logging.Abstractions +System.Diagnostics.DiagnosticSource \ No newline at end of file diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.deps.txt.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.deps.txt.meta new file mode 100644 index 0000000..e9a7241 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.deps.txt.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: c972da1e7db15fe4da8ef4e05dc51bc3 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.meta new file mode 100644 index 0000000..6301878 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9032340b584d11b4bbb746804ac76dd2 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client/2.55.0.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client/2.55.0.meta new file mode 100644 index 0000000..14b139f --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client/2.55.0.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 26da1e8bb7e7a174e8758be6080905d9 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client/2.55.0/lib.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client/2.55.0/lib.meta new file mode 100644 index 0000000..2eef9be --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client/2.55.0/lib.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e940fa43977f2c9419e5758092025ac8 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client/2.55.0/lib/netstandard2.1.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client/2.55.0/lib/netstandard2.1.meta new file mode 100644 index 0000000..35619d6 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client/2.55.0/lib/netstandard2.1.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 50e11ef32721afa4fa4955d8ade4056b +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client/2.55.0/lib/netstandard2.1/Grpc.Net.Client.dll b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client/2.55.0/lib/netstandard2.1/Grpc.Net.Client.dll new file mode 100644 index 0000000..4558281 Binary files /dev/null and b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client/2.55.0/lib/netstandard2.1/Grpc.Net.Client.dll differ diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client/2.55.0/lib/netstandard2.1/Grpc.Net.Client.dll.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client/2.55.0/lib/netstandard2.1/Grpc.Net.Client.dll.meta new file mode 100644 index 0000000..d36c3f6 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client/2.55.0/lib/netstandard2.1/Grpc.Net.Client.dll.meta @@ -0,0 +1,33 @@ +fileFormatVersion: 2 +guid: 593526ffa808b7941a4edf310d5f3f74 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + - first: + Windows Store Apps: WindowsStoreApps + second: + enabled: 0 + settings: + CPU: AnyCPU + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common.meta new file mode 100644 index 0000000..afd8c18 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b5b55f623667b5a45859397abf2b8576 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common/2.55.0.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common/2.55.0.meta new file mode 100644 index 0000000..cd97404 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common/2.55.0.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2efcb7882ebd82043936a67e92bb06c1 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common/2.55.0/lib.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common/2.55.0/lib.meta new file mode 100644 index 0000000..3541b61 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common/2.55.0/lib.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5fa2d3034f2608e418c22f254c4c9b9a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common/2.55.0/lib/netstandard2.1.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common/2.55.0/lib/netstandard2.1.meta new file mode 100644 index 0000000..5b33ce3 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common/2.55.0/lib/netstandard2.1.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3dcde79e23d6bc441af2108d403994f7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common/2.55.0/lib/netstandard2.1/Grpc.Net.Common.dll b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common/2.55.0/lib/netstandard2.1/Grpc.Net.Common.dll new file mode 100644 index 0000000..249f55a Binary files /dev/null and b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common/2.55.0/lib/netstandard2.1/Grpc.Net.Common.dll differ diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common/2.55.0/lib/netstandard2.1/Grpc.Net.Common.dll.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common/2.55.0/lib/netstandard2.1/Grpc.Net.Common.dll.meta new file mode 100644 index 0000000..3709a4a --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common/2.55.0/lib/netstandard2.1/Grpc.Net.Common.dll.meta @@ -0,0 +1,33 @@ +fileFormatVersion: 2 +guid: 0e36fcf6dc9e90f48b014543b013684f +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + - first: + Windows Store Apps: WindowsStoreApps + second: + enabled: 0 + settings: + CPU: AnyCPU + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.meta new file mode 100644 index 0000000..1bf2a44 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d01ed726fc50e514998711f3d9c32ac2 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions/3.0.3.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions/3.0.3.meta new file mode 100644 index 0000000..1de7f38 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions/3.0.3.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6577fa02c7b7e974aa46aad82da62d27 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions/3.0.3/lib.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions/3.0.3/lib.meta new file mode 100644 index 0000000..7a06081 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions/3.0.3/lib.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e8ca6e2f1d82b3940b0ca3e71c7d12b2 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions/3.0.3/lib/netstandard2.0.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions/3.0.3/lib/netstandard2.0.meta new file mode 100644 index 0000000..aedae87 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions/3.0.3/lib/netstandard2.0.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0a4c7a9f6f61b9e448e61342c66052a7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions/3.0.3/lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions/3.0.3/lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100644 index 0000000..7a6011e Binary files /dev/null and b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions/3.0.3/lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions/3.0.3/lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions/3.0.3/lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll.meta new file mode 100644 index 0000000..1eb0d76 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions/3.0.3/lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll.meta @@ -0,0 +1,33 @@ +fileFormatVersion: 2 +guid: 3cc6650ebcd4fbb48abc1835fad7ef7f +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + - first: + Windows Store Apps: WindowsStoreApps + second: + enabled: 0 + settings: + CPU: AnyCPU + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Buffers.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Buffers.meta new file mode 100644 index 0000000..3d80a35 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Buffers.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b0ceabf217d24c44d9bc6e0a27362649 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Buffers/4.5.1.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Buffers/4.5.1.meta new file mode 100644 index 0000000..0117a28 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Buffers/4.5.1.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bda47dbbac61b4546b3bcb9964822c60 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Buffers/4.5.1/LICENSE.TXT b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Buffers/4.5.1/LICENSE.TXT new file mode 100644 index 0000000..984713a --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Buffers/4.5.1/LICENSE.TXT @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Buffers/4.5.1/LICENSE.TXT.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Buffers/4.5.1/LICENSE.TXT.meta new file mode 100644 index 0000000..75d4a05 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Buffers/4.5.1/LICENSE.TXT.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 60a0dd44878308d41b4fc1e8d09c2da8 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Buffers/4.5.1/lib.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Buffers/4.5.1/lib.meta new file mode 100644 index 0000000..3edd455 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Buffers/4.5.1/lib.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ea2bf4eef977a9943af5e23b4c74132e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Buffers/4.5.1/lib/netstandard2.0.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Buffers/4.5.1/lib/netstandard2.0.meta new file mode 100644 index 0000000..7f0bd1f --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Buffers/4.5.1/lib/netstandard2.0.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8f123020e213f2140b71d7ded5ca6cad +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Buffers/4.5.1/lib/netstandard2.0/System.Buffers.dll b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Buffers/4.5.1/lib/netstandard2.0/System.Buffers.dll new file mode 100644 index 0000000..c0970c0 Binary files /dev/null and b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Buffers/4.5.1/lib/netstandard2.0/System.Buffers.dll differ diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Buffers/4.5.1/lib/netstandard2.0/System.Buffers.dll.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Buffers/4.5.1/lib/netstandard2.0/System.Buffers.dll.meta new file mode 100644 index 0000000..b962010 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Buffers/4.5.1/lib/netstandard2.0/System.Buffers.dll.meta @@ -0,0 +1,33 @@ +fileFormatVersion: 2 +guid: 034c8ccffa8a4ce42a4019b543fbbd63 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + - first: + Windows Store Apps: WindowsStoreApps + second: + enabled: 0 + settings: + CPU: AnyCPU + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.meta new file mode 100644 index 0000000..3a61581 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5bae2b1d59d526b41867a775ce4d6206 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource/4.5.1.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource/4.5.1.meta new file mode 100644 index 0000000..d47dec2 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource/4.5.1.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 43210671c7eae89469e818db41ff6615 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource/4.5.1/LICENSE.TXT b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource/4.5.1/LICENSE.TXT new file mode 100644 index 0000000..984713a --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource/4.5.1/LICENSE.TXT @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource/4.5.1/LICENSE.TXT.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource/4.5.1/LICENSE.TXT.meta new file mode 100644 index 0000000..2f75fc9 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource/4.5.1/LICENSE.TXT.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: c0f588f26a98af24a9fd3ef3e97409f5 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource/4.5.1/lib.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource/4.5.1/lib.meta new file mode 100644 index 0000000..d2db85e --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource/4.5.1/lib.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f4c2d8fb562ae5545af69a7b0d5db4d7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource/4.5.1/lib/netstandard1.3.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource/4.5.1/lib/netstandard1.3.meta new file mode 100644 index 0000000..59eaf54 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource/4.5.1/lib/netstandard1.3.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3834ad519843fb6449f88ef086c50c9c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource/4.5.1/lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource/4.5.1/lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 0000000..4878529 Binary files /dev/null and b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource/4.5.1/lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll differ diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource/4.5.1/lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource/4.5.1/lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll.meta new file mode 100644 index 0000000..996bdb28 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource/4.5.1/lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll.meta @@ -0,0 +1,33 @@ +fileFormatVersion: 2 +guid: 05a9fc7425607194d807609bd3145b71 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + - first: + Windows Store Apps: WindowsStoreApps + second: + enabled: 0 + settings: + CPU: AnyCPU + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines/7.0.0.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines/7.0.0.meta new file mode 100644 index 0000000..1f13317 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines/7.0.0.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 72fd45a61cf02ac48aa0953e3608a355 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines/7.0.0/LICENSE.TXT b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines/7.0.0/LICENSE.TXT new file mode 100644 index 0000000..984713a --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines/7.0.0/LICENSE.TXT @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines/7.0.0/LICENSE.TXT.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines/7.0.0/LICENSE.TXT.meta new file mode 100644 index 0000000..db5bd12 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines/7.0.0/LICENSE.TXT.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 122f6925539035e4c8ec7818f1ed3041 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines/7.0.0/lib.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines/7.0.0/lib.meta new file mode 100644 index 0000000..d5d2139 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines/7.0.0/lib.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 844cf36f54c4a864fbc3a6dc14b31e35 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines/7.0.0/lib/netstandard2.0.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines/7.0.0/lib/netstandard2.0.meta new file mode 100644 index 0000000..6d84745 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines/7.0.0/lib/netstandard2.0.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1fe2747055f61444e84b32e3bf7cd132 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines/System.IO.Pipelines.dll b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines/7.0.0/lib/netstandard2.0/System.IO.Pipelines.dll similarity index 100% rename from src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines/System.IO.Pipelines.dll rename to src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines/7.0.0/lib/netstandard2.0/System.IO.Pipelines.dll diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines/System.IO.Pipelines.dll.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines/7.0.0/lib/netstandard2.0/System.IO.Pipelines.dll.meta similarity index 100% rename from src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines/System.IO.Pipelines.dll.meta rename to src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines/7.0.0/lib/netstandard2.0/System.IO.Pipelines.dll.meta diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Memory.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Memory.meta new file mode 100644 index 0000000..7b07659 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Memory.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8caf5d2de0c7052479703b395bf9de17 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Memory/4.5.5.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Memory/4.5.5.meta new file mode 100644 index 0000000..480d924 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Memory/4.5.5.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f40fc9018f6457e4798fe8bdbb9c02bc +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Memory/4.5.5/LICENSE.TXT b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Memory/4.5.5/LICENSE.TXT new file mode 100644 index 0000000..984713a --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Memory/4.5.5/LICENSE.TXT @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Memory/4.5.5/LICENSE.TXT.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Memory/4.5.5/LICENSE.TXT.meta new file mode 100644 index 0000000..64c3957 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Memory/4.5.5/LICENSE.TXT.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 9f6bdb6ef7eaa2a48a7eb456afbee6f7 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Memory/4.5.5/lib.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Memory/4.5.5/lib.meta new file mode 100644 index 0000000..7c56876 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Memory/4.5.5/lib.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0ebe045392ea6ed4c9e7e0c1232f4d2f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Memory/4.5.5/lib/netstandard2.0.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Memory/4.5.5/lib/netstandard2.0.meta new file mode 100644 index 0000000..21cee52 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Memory/4.5.5/lib/netstandard2.0.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: aa66ddfe11ca3ed41af4ac08935245f8 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Memory/4.5.5/lib/netstandard2.0/System.Memory.dll b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Memory/4.5.5/lib/netstandard2.0/System.Memory.dll new file mode 100644 index 0000000..1e6aef8 Binary files /dev/null and b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Memory/4.5.5/lib/netstandard2.0/System.Memory.dll differ diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Memory/4.5.5/lib/netstandard2.0/System.Memory.dll.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Memory/4.5.5/lib/netstandard2.0/System.Memory.dll.meta new file mode 100644 index 0000000..6dceb28 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Memory/4.5.5/lib/netstandard2.0/System.Memory.dll.meta @@ -0,0 +1,33 @@ +fileFormatVersion: 2 +guid: 3229389b03983374295bc4014bbe7efd +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + - first: + Windows Store Apps: WindowsStoreApps + second: + enabled: 0 + settings: + CPU: AnyCPU + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Numerics.Vectors.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Numerics.Vectors.meta new file mode 100644 index 0000000..9a764f9 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Numerics.Vectors.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cfdca11ddb1ba1f4ca56b3b7c0c9649e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Numerics.Vectors/4.4.0.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Numerics.Vectors/4.4.0.meta new file mode 100644 index 0000000..8d25a69 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Numerics.Vectors/4.4.0.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 41b46d466cc89c9469a397b0d09f450a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Numerics.Vectors/4.4.0/LICENSE.TXT b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Numerics.Vectors/4.4.0/LICENSE.TXT new file mode 100644 index 0000000..984713a --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Numerics.Vectors/4.4.0/LICENSE.TXT @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Numerics.Vectors/4.4.0/LICENSE.TXT.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Numerics.Vectors/4.4.0/LICENSE.TXT.meta new file mode 100644 index 0000000..abf5d33 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Numerics.Vectors/4.4.0/LICENSE.TXT.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 3f50a56950b1f1a40b9b6c80e4f84894 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Numerics.Vectors/4.4.0/lib.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Numerics.Vectors/4.4.0/lib.meta new file mode 100644 index 0000000..a92e087 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Numerics.Vectors/4.4.0/lib.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 79af075e16e999c40b78a30a6b088458 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Numerics.Vectors/4.4.0/lib/netstandard2.0.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Numerics.Vectors/4.4.0/lib/netstandard2.0.meta new file mode 100644 index 0000000..aaa55d1 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Numerics.Vectors/4.4.0/lib/netstandard2.0.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6396b94a9fa5546478678c67a56c1c80 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Numerics.Vectors/4.4.0/lib/netstandard2.0/System.Numerics.Vectors.dll b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Numerics.Vectors/4.4.0/lib/netstandard2.0/System.Numerics.Vectors.dll new file mode 100644 index 0000000..a808165 Binary files /dev/null and b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Numerics.Vectors/4.4.0/lib/netstandard2.0/System.Numerics.Vectors.dll differ diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Numerics.Vectors/4.4.0/lib/netstandard2.0/System.Numerics.Vectors.dll.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Numerics.Vectors/4.4.0/lib/netstandard2.0/System.Numerics.Vectors.dll.meta new file mode 100644 index 0000000..b5a0ab1 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Numerics.Vectors/4.4.0/lib/netstandard2.0/System.Numerics.Vectors.dll.meta @@ -0,0 +1,33 @@ +fileFormatVersion: 2 +guid: eab6077fafffb304c893ca71f5e6935e +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + - first: + Windows Store Apps: WindowsStoreApps + second: + enabled: 0 + settings: + CPU: AnyCPU + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe/4.5.3.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe/4.5.3.meta new file mode 100644 index 0000000..7d88c66 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe/4.5.3.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3678f684ba0ddf0418c167aaf16f2590 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe/4.5.3/LICENSE.TXT b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe/4.5.3/LICENSE.TXT new file mode 100644 index 0000000..984713a --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe/4.5.3/LICENSE.TXT @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe/4.5.3/LICENSE.TXT.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe/4.5.3/LICENSE.TXT.meta new file mode 100644 index 0000000..36397b6 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe/4.5.3/LICENSE.TXT.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 9283c1071a90544459e0ee04b50d4c74 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe/4.5.3/lib.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe/4.5.3/lib.meta new file mode 100644 index 0000000..bbc4c7e --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe/4.5.3/lib.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b3091605d79fe954eaa8a54060538480 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe/4.5.3/lib/netstandard2.0.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe/4.5.3/lib/netstandard2.0.meta new file mode 100644 index 0000000..37240eb --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe/4.5.3/lib/netstandard2.0.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: aeb51b78fe0050144a66144f9faffe9f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe/4.5.3/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe/4.5.3/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll new file mode 100644 index 0000000..b17135b Binary files /dev/null and b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe/4.5.3/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe/System.Runtime.CompilerServices.Unsafe.dll.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe/4.5.3/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll.meta similarity index 93% rename from src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe/System.Runtime.CompilerServices.Unsafe.dll.meta rename to src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe/4.5.3/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll.meta index 0df8f14..f2fc88a 100644 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe/System.Runtime.CompilerServices.Unsafe.dll.meta +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe/4.5.3/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: c3cd1412e9517c5409150490d920e92c +guid: 1f632f6335fa84d4ab38cf5af7380cbd PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe/System.Runtime.CompilerServices.Unsafe.dll b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe/System.Runtime.CompilerServices.Unsafe.dll deleted file mode 100644 index 3156239..0000000 Binary files a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe/System.Runtime.CompilerServices.Unsafe.dll and /dev/null differ diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Threading.Tasks.Extensions.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Threading.Tasks.Extensions.meta new file mode 100644 index 0000000..f483f02 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Threading.Tasks.Extensions.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4e4af5cf070511d49bb00d062ab41ae3 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Threading.Tasks.Extensions/4.5.4.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Threading.Tasks.Extensions/4.5.4.meta new file mode 100644 index 0000000..e52a5b5 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Threading.Tasks.Extensions/4.5.4.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d05fd9652564ed44d9c969ee32fa56be +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Threading.Tasks.Extensions/4.5.4/LICENSE.TXT b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Threading.Tasks.Extensions/4.5.4/LICENSE.TXT new file mode 100644 index 0000000..984713a --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Threading.Tasks.Extensions/4.5.4/LICENSE.TXT @@ -0,0 +1,23 @@ +The MIT License (MIT) + +Copyright (c) .NET Foundation and Contributors + +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Threading.Tasks.Extensions/4.5.4/LICENSE.TXT.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Threading.Tasks.Extensions/4.5.4/LICENSE.TXT.meta new file mode 100644 index 0000000..07442ab --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Threading.Tasks.Extensions/4.5.4/LICENSE.TXT.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 2809dedca2a099842996065d6613e1e2 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Threading.Tasks.Extensions/4.5.4/lib.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Threading.Tasks.Extensions/4.5.4/lib.meta new file mode 100644 index 0000000..ca0fa35 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Threading.Tasks.Extensions/4.5.4/lib.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e636c32c5f802f448b4853f5fdac62db +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Threading.Tasks.Extensions/4.5.4/lib/netstandard2.0.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Threading.Tasks.Extensions/4.5.4/lib/netstandard2.0.meta new file mode 100644 index 0000000..84ee5ef --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Threading.Tasks.Extensions/4.5.4/lib/netstandard2.0.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 86cb2cbe9302c8c4b88cecf3d6ba323e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Threading.Tasks.Extensions/4.5.4/lib/netstandard2.0/System.Threading.Tasks.Extensions.dll b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Threading.Tasks.Extensions/4.5.4/lib/netstandard2.0/System.Threading.Tasks.Extensions.dll new file mode 100644 index 0000000..dfab234 Binary files /dev/null and b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Threading.Tasks.Extensions/4.5.4/lib/netstandard2.0/System.Threading.Tasks.Extensions.dll differ diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Threading.Tasks.Extensions/4.5.4/lib/netstandard2.0/System.Threading.Tasks.Extensions.dll.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Threading.Tasks.Extensions/4.5.4/lib/netstandard2.0/System.Threading.Tasks.Extensions.dll.meta new file mode 100644 index 0000000..f8f21df --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Threading.Tasks.Extensions/4.5.4/lib/netstandard2.0/System.Threading.Tasks.Extensions.dll.meta @@ -0,0 +1,33 @@ +fileFormatVersion: 2 +guid: 095d75ce444d56d41837c8612a8a5748 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + - first: + Windows Store Apps: WindowsStoreApps + second: + enabled: 0 + settings: + CPU: AnyCPU + userData: + assetBundleName: + assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/YetAnotherHttpHandler.deps.txt b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/YetAnotherHttpHandler.deps.txt new file mode 100644 index 0000000..d748c2d --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/YetAnotherHttpHandler.deps.txt @@ -0,0 +1,6 @@ +System.Buffers +System.IO.Pipelines +System.Memory +System.Numerics.Vectors +System.Runtime.CompilerServices.Unsafe +System.Threading.Tasks.Extensions \ No newline at end of file diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/YetAnotherHttpHandler.deps.txt.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/YetAnotherHttpHandler.deps.txt.meta new file mode 100644 index 0000000..a0a70c4 --- /dev/null +++ b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/YetAnotherHttpHandler.deps.txt.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 1b8451df6503ca64fac73326dcfd75cd +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: