diff --git a/README.md b/README.md index 467b85f..ff3a039 100644 --- a/README.md +++ b/README.md @@ -72,21 +72,66 @@ Architecture/Platform | Windows | macOS | Linux | Android | iOS ## Installation ### Unity -To install this library, specify the following URL in `Add package from git URL...` of Package Manager on Unity. +> This library depends on the following additional libraries: +> +> - [System.IO.Pipelines](https://www.nuget.org/packages/System.IO.Pipelines) (netstandard2.1) +> - [System.Runtime.CompilerServices.Unsafe](https://www.nuget.org/packages/System.Runtime.CompilerServices.Unsafe) (netstandard2.1) + +#### Method 1: using UnityNuGet + OpenUPM scope registry + +1. Add the [UnityNuget](https://github.com/xoofx/UnityNuGet) scope registry: + +``` +https://github.com/xoofx/UnityNuGet#add-scope-registry-manifestjson +``` + +2. Add the following additional libraries to `manifest.json`: + +```json +{ + "dependencies": { + "org.nuget.system.io.pipelines": "{version_1}", + "org.nuget.system.runtime.compilerservices.unsafe": "{version_2}" + } +} +``` + +> Replace `{version_1}` with the latest version available in NuGet: https://www.nuget.org/packages/System.IO.Pipelines#versions-body-tab + +> Replace `{version_2}` with the latest version available in NuGet: https://www.nuget.org/packages/System.Runtime.CompilerServices.Unsafe#versions-body-tab + +3. Follow the steps in `Manual installation`: https://openupm.com/packages/com.cysharp.yetanotherhttphandler/ + +#### Method 2: using UnityNuGet scope registry + +1. Add the [UnityNuget](https://github.com/xoofx/UnityNuGet) scope registry: + +``` +https://github.com/xoofx/UnityNuGet#add-scope-registry-manifestjson +``` + +2. Specify the following URL in `Add package from git URL...` of Package Manager on Unity. This is the package that resolves NuGet dependencies. + +``` +https://github.com/Cysharp/YetAnotherHttpHandler.git?path=src/YetAnotherHttpHandler.Dependencies#v0.1.0 +``` + +3. Specify the following URL in `Add package from git URL...` of Package Manager on Unity. This is the main packagee. ``` https://github.com/Cysharp/YetAnotherHttpHandler.git?path=src/YetAnotherHttpHandler#v0.1.0 ``` -Additionally, this library depends on the following additional libraries. +#### Method 3: without additional scope registries -- [System.IO.Pipelines](https://www.nuget.org/packages/System.IO.Pipelines) (netstandard2.1) -- [System.Runtime.CompilerServices.Unsafe](https://www.nuget.org/packages/System.Runtime.CompilerServices.Unsafe) (netstandard2.1) +1. Please download and install [Cysharp.Net.Http.YetAnotherHttpHandler.Dependencies.unitypackage + from the dependency redistribution on the release page](https://github.com/Cysharp/YetAnotherHttpHandler/releases/tag/redist-20230728-01). -Please download and install [Cysharp.Net.Http.YetAnotherHttpHandler.Dependencies.unitypackage - from the dependency redistribution on the release page](https://github.com/Cysharp/YetAnotherHttpHandler/releases/tag/redist-20230728-01), or obtain the library from NuGet. +2. Specify the following URL in `Add package from git URL...` of Package Manager on Unity. -📦 **Tips:** You can download NuGet packages from the "Download package" link on the right side of the package page on NuGet.org. The downloaded .nupkg file can be opened as a Zip archive, allowing you to extract individual assemblies from the `lib` directory. +``` +https://github.com/Cysharp/YetAnotherHttpHandler.git?path=src/YetAnotherHttpHandler#v0.1.0 +``` ## Usage @@ -96,7 +141,7 @@ Create an instance of YetAnotherHttpHandler and pass it to HttpClient. using Cysharp.Net.Http; using var handler = new YetAnotherHttpHandler(); -var httpCilent = new HttpClient(handler); +var httpClient = new HttpClient(handler); var result = await httpClient.GetStringAsync("https://www.example.com"); ``` @@ -109,16 +154,32 @@ However, since it does not have features such as connection control by the numbe ### Using gRPC (grpc-dotnet) library -To use grpc-dotnet (Grpc.Net.Client), add the following additional libraries: +> To use grpc-dotnet (Grpc.Net.Client), add the following additional libraries: +> +> - Grpc.Core.Api +> - Grpc.Net.Client +> - Grpc.Net.Common +> - Microsoft.Extensions.Logging.Abstractions +> - System.Buffers +> - System.Diagnostics.DiagnosticSource +> - System.Memory +> - System.Numerics.Vectors + +#### Method 1: using UnityNuget scope registry + +To use grpc-dotnet (Grpc.Net.Client), add the following additional library to `manifest.json`: + +```json +{ + "dependencies": { + "org.nuget.grpc.net.client": "{version}" + } +} +``` + +> Replace `{version}` with the latest version available in NuGet: https://www.nuget.org/packages/Grpc.Net.Client#versions-body-tab -- Grpc.Core.Api -- Grpc.Net.Client -- Grpc.Net.Common -- Microsoft.Extensions.Logging.Abstractions -- System.Buffers -- System.Diagnostics.DiagnosticSource -- System.Memory -- System.Numerics.Vectors +#### Method 2: without additional scope registries Please download and install [Grpc.Net.Client.Dependencies.unitypackage from the dependency redistribution on the release page](https://github.com/Cysharp/YetAnotherHttpHandler/releases/tag/redist-20230728-01), or obtain the library from NuGet. diff --git a/YetAnotherHttpHandler.sln b/YetAnotherHttpHandler.sln index 4c0c722..150ee99 100644 --- a/YetAnotherHttpHandler.sln +++ b/YetAnotherHttpHandler.sln @@ -1,56 +1,44 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.0.31903.59 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "YetAnotherHttpHandler", "src\YetAnotherHttpHandler\YetAnotherHttpHandler.csproj", "{2897D411-9788-4BF2-8D5F-FACD8CC56B39}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "YetAnotherHttpHandler.Test", "test\YetAnotherHttpHandler.Test\YetAnotherHttpHandler.Test.csproj", "{22CFEF14-D36A-4E21-B51F-F31053C0E870}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{EDDCC9A6-BB1C-4AB9-A0C1-9AD888858442}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{9D970D42-0D6A-4483-886F-3003AB62E04C}" - ProjectSection(SolutionItems) = preProject - .editorconfig = .editorconfig - .gitignore = .gitignore - README.md = README.md - THIRD-PARTY-NOTICES = THIRD-PARTY-NOTICES - EndProjectSection -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "YetAnotherHttpHandler.Unity.Dependencies", "src\YetAnotherHttpHandler.Unity.Dependencies\YetAnotherHttpHandler.Unity.Dependencies.csproj", "{9F9F6B43-8CBF-4025-8B8B-A4465C04740E}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "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 - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {2897D411-9788-4BF2-8D5F-FACD8CC56B39}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {2897D411-9788-4BF2-8D5F-FACD8CC56B39}.Debug|Any CPU.Build.0 = Debug|Any CPU - {2897D411-9788-4BF2-8D5F-FACD8CC56B39}.Release|Any CPU.ActiveCfg = Release|Any CPU - {2897D411-9788-4BF2-8D5F-FACD8CC56B39}.Release|Any CPU.Build.0 = Release|Any CPU - {22CFEF14-D36A-4E21-B51F-F31053C0E870}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {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 - EndGlobalSection - GlobalSection(NestedProjects) = preSolution - {22CFEF14-D36A-4E21-B51F-F31053C0E870} = {EDDCC9A6-BB1C-4AB9-A0C1-9AD888858442} - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {0F200E0E-4EC0-4C1A-BF65-BA52D3291577} - EndGlobalSection -EndGlobal + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.31903.59 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "YetAnotherHttpHandler", "src\YetAnotherHttpHandler\YetAnotherHttpHandler.csproj", "{2897D411-9788-4BF2-8D5F-FACD8CC56B39}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "YetAnotherHttpHandler.Test", "test\YetAnotherHttpHandler.Test\YetAnotherHttpHandler.Test.csproj", "{22CFEF14-D36A-4E21-B51F-F31053C0E870}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{EDDCC9A6-BB1C-4AB9-A0C1-9AD888858442}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{9D970D42-0D6A-4483-886F-3003AB62E04C}" + ProjectSection(SolutionItems) = preProject + .editorconfig = .editorconfig + .gitignore = .gitignore + README.md = README.md + THIRD-PARTY-NOTICES = THIRD-PARTY-NOTICES + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {2897D411-9788-4BF2-8D5F-FACD8CC56B39}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2897D411-9788-4BF2-8D5F-FACD8CC56B39}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2897D411-9788-4BF2-8D5F-FACD8CC56B39}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2897D411-9788-4BF2-8D5F-FACD8CC56B39}.Release|Any CPU.Build.0 = Release|Any CPU + {22CFEF14-D36A-4E21-B51F-F31053C0E870}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {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 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {22CFEF14-D36A-4E21-B51F-F31053C0E870} = {EDDCC9A6-BB1C-4AB9-A0C1-9AD888858442} + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {0F200E0E-4EC0-4C1A-BF65-BA52D3291577} + EndGlobalSection +EndGlobal diff --git a/src/YetAnotherHttpHandler.Dependencies/README.md b/src/YetAnotherHttpHandler.Dependencies/README.md new file mode 100644 index 0000000..c718a84 --- /dev/null +++ b/src/YetAnotherHttpHandler.Dependencies/README.md @@ -0,0 +1,3 @@ +# YetAnotherHttpHandler.Dependencies + +A project for managing NuGet references for Unity. \ No newline at end of file diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.deps.txt.meta b/src/YetAnotherHttpHandler.Dependencies/README.md.meta similarity index 75% rename from src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.deps.txt.meta rename to src/YetAnotherHttpHandler.Dependencies/README.md.meta index e9a7241..0ac57a8 100644 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.deps.txt.meta +++ b/src/YetAnotherHttpHandler.Dependencies/README.md.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: c972da1e7db15fe4da8ef4e05dc51bc3 +guid: d729bcba92ad9b844b3bf95f6f3f38e6 TextScriptImporter: externalObjects: {} userData: diff --git a/src/YetAnotherHttpHandler.Dependencies/package.json b/src/YetAnotherHttpHandler.Dependencies/package.json new file mode 100644 index 0000000..110ea1c --- /dev/null +++ b/src/YetAnotherHttpHandler.Dependencies/package.json @@ -0,0 +1,13 @@ +{ + "name": "com.cysharp.yetanotherhttphandler.dependencies", + "version": "0.1.0", + "author": { "name": "Cysharp, Inc.", "url": "https://cysharp.co.jp/en/" }, + "displayName": "YetAnotherHttpHandler (Dependencies)", + "description": "YetAnotherHttpHandler NuGet dependencies.", + "unity": "2021.3", + "license": "MIT", + "dependencies": { + "org.nuget.system.io.pipelines": "7.0.0", + "org.nuget.system.runtime.compilerservices.unsafe": "4.5.3" + } +} \ No newline at end of file diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Buffers/4.5.1/LICENSE.TXT.meta b/src/YetAnotherHttpHandler.Dependencies/package.json.meta similarity index 60% rename from src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Buffers/4.5.1/LICENSE.TXT.meta rename to src/YetAnotherHttpHandler.Dependencies/package.json.meta index 75d4a05..4252505 100644 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Buffers/4.5.1/LICENSE.TXT.meta +++ b/src/YetAnotherHttpHandler.Dependencies/package.json.meta @@ -1,6 +1,6 @@ fileFormatVersion: 2 -guid: 60a0dd44878308d41b4fc1e8d09c2da8 -TextScriptImporter: +guid: 06c39830e97278343841a681df728e62 +PackageManifestImporter: externalObjects: {} userData: assetBundleName: diff --git a/src/YetAnotherHttpHandler.Unity.Dependencies.Sync/Program.cs b/src/YetAnotherHttpHandler.Unity.Dependencies.Sync/Program.cs deleted file mode 100644 index 1d97dc2..0000000 --- a/src/YetAnotherHttpHandler.Unity.Dependencies.Sync/Program.cs +++ /dev/null @@ -1,136 +0,0 @@ -// 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 copied. -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; -HashSet depsForGrpc; -{ - 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)); - 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))); - depsForGrpc = deps; -} - -// List synced packages. -Console.WriteLine("Dependencies for YetAnotherHttpHandler:"); -foreach (var dep in depsForYaha) -{ - var lib = targetNetStandard2_1.Keys.FirstOrDefault(x => x.StartsWith(dep + '/')); - Console.WriteLine("- " + lib.Replace('/', ' ')); -} -Console.WriteLine("Dependencies for Grpc.Net.Client:"); -foreach (var dep in depsForGrpc) -{ - var lib = targetNetStandard2_1.Keys.FirstOrDefault(x => x.StartsWith(dep + '/')); - Console.WriteLine("- " + lib.Replace('/', ' ')); -} - -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 deleted file mode 100644 index 3b94e2c..0000000 --- a/src/YetAnotherHttpHandler.Unity.Dependencies.Sync/YetAnotherHttpHandler.Unity.Dependencies.Sync.csproj +++ /dev/null @@ -1,11 +0,0 @@ - - - - Exe - net7.0 - enable - enable - false - - - diff --git a/src/YetAnotherHttpHandler.Unity.Dependencies/README.md b/src/YetAnotherHttpHandler.Unity.Dependencies/README.md deleted file mode 100644 index 4526710..0000000 --- a/src/YetAnotherHttpHandler.Unity.Dependencies/README.md +++ /dev/null @@ -1,8 +0,0 @@ -# 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 deleted file mode 100644 index 9fa1ee7..0000000 --- a/src/YetAnotherHttpHandler.Unity.Dependencies/YetAnotherHttpHandler.Unity.Dependencies.csproj +++ /dev/null @@ -1,14 +0,0 @@ - - - - netstandard2.1 - enable - false - - - - - - - - diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Editor/Scripts/PackageExporter.cs b/src/YetAnotherHttpHandler.Unity/Assets/Editor/Scripts/PackageExporter.cs index c106bd3..920da67 100644 --- a/src/YetAnotherHttpHandler.Unity/Assets/Editor/Scripts/PackageExporter.cs +++ b/src/YetAnotherHttpHandler.Unity/Assets/Editor/Scripts/PackageExporter.cs @@ -1,34 +1,71 @@ #if UNITY_EDITOR using System; +using System.Collections.Generic; using System.IO; using System.Linq; using UnityEditor; -using UnityEngine; +using UnityEditor.PackageManager.Requests; public static class PackageExporter { + private static ListRequest s_listRequest; + [MenuItem("Tools/Export Unitypackage")] public static void Export() { - PackDependencies("Cysharp.Net.Http.YetAnotherHttpHandler.Dependencies", "YetAnotherHttpHandler.deps.txt"); - PackDependencies("Grpc.Net.Client.Dependencies", "Grpc.Net.Client.deps.txt"); + EditorUtility.DisplayProgressBar("Packges", "Exporting packages, please wait...", 0); + + s_listRequest = UnityEditor.PackageManager.Client.List(offlineMode: false, includeIndirectDependencies: true); + + EditorApplication.update += OnEditorUpdate; + } + + private static void OnEditorUpdate() + { + if (s_listRequest == null || !s_listRequest.IsCompleted) + { + return; + } + + EditorApplication.update -= OnEditorUpdate; + + ExportPackage("com.cysharp.yetanotherhttphandler.dependencies", "Cysharp.Net.Http.YetAnotherHttpHandler.Dependencies", includeSelf: false); + ExportPackage("org.nuget.grpc.net.client", "Grpc.Net.Client.Dependencies", includeSelf: true); + + EditorUtility.ClearProgressBar(); + } + + private static void ExportPackage(string packageName, string unityPackageName, bool includeSelf) + { + List dependencies = new(); + + UnityEditor.PackageManager.PackageInfo packageInfo = s_listRequest.Result.First(p => p.name.Equals(packageName, StringComparison.Ordinal)); + + if (includeSelf) + { + dependencies.Add(packageInfo); + } + + GetAllDependencies(packageInfo, dependencies); + + string exportPath = $"./{unityPackageName}.unitypackage"; + + AssetDatabase.ExportPackage(dependencies.Select(x => x.assetPath).ToArray(), exportPath, ExportPackageOptions.Recurse); + + UnityEngine.Debug.Log($"Export complete: {Path.GetFullPath(exportPath)}"); } - static void PackDependencies(string unityPackageName, string dependenciesListFileName) + private static void GetAllDependencies(UnityEditor.PackageManager.PackageInfo packageInfo, ICollection dependencies) { - 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( - libraryNames.Select(x => $"Assets/Plugins/{x}").ToArray(), - exportPath, - ExportPackageOptions.Recurse); - - UnityEngine.Debug.Log("Export complete: " + Path.GetFullPath(exportPath)); + foreach (UnityEditor.PackageManager.DependencyInfo dependency in packageInfo.dependencies) + { + UnityEditor.PackageManager.PackageInfo resolvedPackageInfo = s_listRequest.Result.First(p => p.name.Equals(dependency.name, StringComparison.Ordinal)); + + dependencies.Add(resolvedPackageInfo); + + GetAllDependencies(resolvedPackageInfo, dependencies); + } } } diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins.meta deleted file mode 100644 index 95202c4..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 7b303f1f68ac58f4fac0295ad58b8f1b -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api.meta deleted file mode 100644 index 402612a..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index d9835e9..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api/2.55.0.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index 127addb..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api/2.55.0/lib.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index d353a57..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api/2.55.0/lib/netstandard2.1.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index ea7532d..0000000 Binary files a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api/2.55.0/lib/netstandard2.1/Grpc.Core.Api.dll and /dev/null 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 deleted file mode 100644 index de74dc6..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Core.Api/2.55.0/lib/netstandard2.1/Grpc.Core.Api.dll.meta +++ /dev/null @@ -1,33 +0,0 @@ -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 deleted file mode 100644 index 7132cbf..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.deps.txt +++ /dev/null @@ -1,5 +0,0 @@ -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.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.meta deleted file mode 100644 index 6301878..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index 14b139f..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client/2.55.0.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index 2eef9be..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client/2.55.0/lib.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index 35619d6..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client/2.55.0/lib/netstandard2.1.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index 4558281..0000000 Binary files a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client/2.55.0/lib/netstandard2.1/Grpc.Net.Client.dll and /dev/null 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 deleted file mode 100644 index d36c3f6..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Client/2.55.0/lib/netstandard2.1/Grpc.Net.Client.dll.meta +++ /dev/null @@ -1,33 +0,0 @@ -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 deleted file mode 100644 index afd8c18..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index cd97404..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common/2.55.0.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index 3541b61..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common/2.55.0/lib.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index 5b33ce3..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common/2.55.0/lib/netstandard2.1.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index 249f55a..0000000 Binary files a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common/2.55.0/lib/netstandard2.1/Grpc.Net.Common.dll and /dev/null 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 deleted file mode 100644 index 3709a4a..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Grpc.Net.Common/2.55.0/lib/netstandard2.1/Grpc.Net.Common.dll.meta +++ /dev/null @@ -1,33 +0,0 @@ -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 deleted file mode 100644 index 1bf2a44..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index 1de7f38..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions/3.0.3.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index 7a06081..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions/3.0.3/lib.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index aedae87..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions/3.0.3/lib/netstandard2.0.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index 7a6011e..0000000 Binary files a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions/3.0.3/lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll and /dev/null 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 deleted file mode 100644 index 1eb0d76..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/Microsoft.Extensions.Logging.Abstractions/3.0.3/lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll.meta +++ /dev/null @@ -1,33 +0,0 @@ -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 deleted file mode 100644 index 3d80a35..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Buffers.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index 0117a28..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Buffers/4.5.1.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index 984713a..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Buffers/4.5.1/LICENSE.TXT +++ /dev/null @@ -1,23 +0,0 @@ -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/lib.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Buffers/4.5.1/lib.meta deleted file mode 100644 index 3edd455..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Buffers/4.5.1/lib.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index 7f0bd1f..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Buffers/4.5.1/lib/netstandard2.0.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index c0970c0..0000000 Binary files a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Buffers/4.5.1/lib/netstandard2.0/System.Buffers.dll and /dev/null 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 deleted file mode 100644 index b962010..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Buffers/4.5.1/lib/netstandard2.0/System.Buffers.dll.meta +++ /dev/null @@ -1,33 +0,0 @@ -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 deleted file mode 100644 index 3a61581..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index d47dec2..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource/4.5.1.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index 984713a..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource/4.5.1/LICENSE.TXT +++ /dev/null @@ -1,23 +0,0 @@ -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 deleted file mode 100644 index 2f75fc9..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource/4.5.1/LICENSE.TXT.meta +++ /dev/null @@ -1,7 +0,0 @@ -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 deleted file mode 100644 index d2db85e..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource/4.5.1/lib.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index 59eaf54..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource/4.5.1/lib/netstandard1.3.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index 4878529..0000000 Binary files a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource/4.5.1/lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll and /dev/null 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 deleted file mode 100644 index 996bdb28..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Diagnostics.DiagnosticSource/4.5.1/lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll.meta +++ /dev/null @@ -1,33 +0,0 @@ -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.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines.meta deleted file mode 100644 index 0366a07..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 3dbc4bf0456d5fe4d863eb17b0009293 -folderAsset: yes -DefaultImporter: - externalObjects: {} - 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 deleted file mode 100644 index 1f13317..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines/7.0.0.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index 984713a..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines/7.0.0/LICENSE.TXT +++ /dev/null @@ -1,23 +0,0 @@ -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 deleted file mode 100644 index db5bd12..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines/7.0.0/LICENSE.TXT.meta +++ /dev/null @@ -1,7 +0,0 @@ -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 deleted file mode 100644 index d5d2139..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines/7.0.0/lib.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index 6d84745..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines/7.0.0/lib/netstandard2.0.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 1fe2747055f61444e84b32e3bf7cd132 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines/7.0.0/lib/netstandard2.0/System.IO.Pipelines.dll b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines/7.0.0/lib/netstandard2.0/System.IO.Pipelines.dll deleted file mode 100644 index 82614bd..0000000 Binary files a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines/7.0.0/lib/netstandard2.0/System.IO.Pipelines.dll and /dev/null differ diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines/7.0.0/lib/netstandard2.0/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 deleted file mode 100644 index 71ff883..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.IO.Pipelines/7.0.0/lib/netstandard2.0/System.IO.Pipelines.dll.meta +++ /dev/null @@ -1,33 +0,0 @@ -fileFormatVersion: 2 -guid: 86cf57ad0273d8b4f9f8026679a01d8c -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.Memory.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Memory.meta deleted file mode 100644 index 7b07659..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Memory.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index 480d924..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Memory/4.5.5.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index 984713a..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Memory/4.5.5/LICENSE.TXT +++ /dev/null @@ -1,23 +0,0 @@ -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 deleted file mode 100644 index 64c3957..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Memory/4.5.5/LICENSE.TXT.meta +++ /dev/null @@ -1,7 +0,0 @@ -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 deleted file mode 100644 index 7c56876..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Memory/4.5.5/lib.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index 21cee52..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Memory/4.5.5/lib/netstandard2.0.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index 1e6aef8..0000000 Binary files a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Memory/4.5.5/lib/netstandard2.0/System.Memory.dll and /dev/null 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 deleted file mode 100644 index 6dceb28..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Memory/4.5.5/lib/netstandard2.0/System.Memory.dll.meta +++ /dev/null @@ -1,33 +0,0 @@ -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 deleted file mode 100644 index 9a764f9..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Numerics.Vectors.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index 8d25a69..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Numerics.Vectors/4.4.0.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index 984713a..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Numerics.Vectors/4.4.0/LICENSE.TXT +++ /dev/null @@ -1,23 +0,0 @@ -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 deleted file mode 100644 index abf5d33..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Numerics.Vectors/4.4.0/LICENSE.TXT.meta +++ /dev/null @@ -1,7 +0,0 @@ -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 deleted file mode 100644 index a92e087..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Numerics.Vectors/4.4.0/lib.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index aaa55d1..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Numerics.Vectors/4.4.0/lib/netstandard2.0.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index a808165..0000000 Binary files a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Numerics.Vectors/4.4.0/lib/netstandard2.0/System.Numerics.Vectors.dll and /dev/null 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 deleted file mode 100644 index b5a0ab1..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Numerics.Vectors/4.4.0/lib/netstandard2.0/System.Numerics.Vectors.dll.meta +++ /dev/null @@ -1,33 +0,0 @@ -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.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.meta deleted file mode 100644 index 3e45506..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: cb692e4c9423215479cad5ae0a27a193 -folderAsset: yes -DefaultImporter: - externalObjects: {} - 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 deleted file mode 100644 index 7d88c66..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe/4.5.3.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index 984713a..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe/4.5.3/LICENSE.TXT +++ /dev/null @@ -1,23 +0,0 @@ -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 deleted file mode 100644 index 36397b6..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe/4.5.3/LICENSE.TXT.meta +++ /dev/null @@ -1,7 +0,0 @@ -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 deleted file mode 100644 index bbc4c7e..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe/4.5.3/lib.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index 37240eb..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe/4.5.3/lib/netstandard2.0.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index b17135b..0000000 Binary files a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe/4.5.3/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll and /dev/null differ diff --git a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe/4.5.3/lib/netstandard2.0/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 deleted file mode 100644 index f2fc88a..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Runtime.CompilerServices.Unsafe/4.5.3/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll.meta +++ /dev/null @@ -1,33 +0,0 @@ -fileFormatVersion: 2 -guid: 1f632f6335fa84d4ab38cf5af7380cbd -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.Threading.Tasks.Extensions.meta b/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Threading.Tasks.Extensions.meta deleted file mode 100644 index f483f02..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Threading.Tasks.Extensions.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index e52a5b5..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Threading.Tasks.Extensions/4.5.4.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index 984713a..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Threading.Tasks.Extensions/4.5.4/LICENSE.TXT +++ /dev/null @@ -1,23 +0,0 @@ -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 deleted file mode 100644 index 07442ab..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Threading.Tasks.Extensions/4.5.4/LICENSE.TXT.meta +++ /dev/null @@ -1,7 +0,0 @@ -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 deleted file mode 100644 index ca0fa35..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Threading.Tasks.Extensions/4.5.4/lib.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index 84ee5ef..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Threading.Tasks.Extensions/4.5.4/lib/netstandard2.0.meta +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index dfab234..0000000 Binary files a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Threading.Tasks.Extensions/4.5.4/lib/netstandard2.0/System.Threading.Tasks.Extensions.dll and /dev/null 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 deleted file mode 100644 index f8f21df..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/System.Threading.Tasks.Extensions/4.5.4/lib/netstandard2.0/System.Threading.Tasks.Extensions.dll.meta +++ /dev/null @@ -1,33 +0,0 @@ -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 deleted file mode 100644 index f853b8e..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/YetAnotherHttpHandler.deps.txt +++ /dev/null @@ -1,6 +0,0 @@ -System.IO.Pipelines -System.Buffers -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 deleted file mode 100644 index a0a70c4..0000000 --- a/src/YetAnotherHttpHandler.Unity/Assets/Plugins/YetAnotherHttpHandler.deps.txt.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: 1b8451df6503ca64fac73326dcfd75cd -TextScriptImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/src/YetAnotherHttpHandler.Unity/Packages/manifest.json b/src/YetAnotherHttpHandler.Unity/Packages/manifest.json index 2d68c3b..cf4df15 100644 --- a/src/YetAnotherHttpHandler.Unity/Packages/manifest.json +++ b/src/YetAnotherHttpHandler.Unity/Packages/manifest.json @@ -1,6 +1,7 @@ { "dependencies": { "com.cysharp.yetanotherhttphandler": "file:../../YetAnotherHttpHandler", + "com.cysharp.yetanotherhttphandler.dependencies": "file:../../YetAnotherHttpHandler.Dependencies", "com.unity.collab-proxy": "1.15.15", "com.unity.feature.2d": "1.0.0", "com.unity.ide.rider": "3.0.13", @@ -11,6 +12,7 @@ "com.unity.timeline": "1.6.4", "com.unity.ugui": "1.0.0", "com.unity.visualscripting": "1.7.6", + "org.nuget.grpc.net.client": "2.57.0", "com.unity.modules.ai": "1.0.0", "com.unity.modules.androidjni": "1.0.0", "com.unity.modules.animation": "1.0.0", @@ -42,5 +44,14 @@ "com.unity.modules.vr": "1.0.0", "com.unity.modules.wind": "1.0.0", "com.unity.modules.xr": "1.0.0" - } + }, + "scopedRegistries": [ + { + "name": "Unity NuGet", + "url": "https://unitynuget-registry.azurewebsites.net", + "scopes": [ + "org.nuget" + ] + } + ] } diff --git a/src/YetAnotherHttpHandler.Unity/ProjectSettings/PackageManagerSettings.asset b/src/YetAnotherHttpHandler.Unity/ProjectSettings/PackageManagerSettings.asset index b3a65dd..9ceebe3 100644 --- a/src/YetAnotherHttpHandler.Unity/ProjectSettings/PackageManagerSettings.asset +++ b/src/YetAnotherHttpHandler.Unity/ProjectSettings/PackageManagerSettings.asset @@ -25,20 +25,18 @@ MonoBehaviour: m_Scopes: [] m_IsDefault: 1 m_Capabilities: 7 - m_UserSelectedRegistryName: + - m_Id: scoped:Unity NuGet + m_Name: Unity NuGet + m_Url: https://unitynuget-registry.azurewebsites.net + m_Scopes: + - org.nuget + m_IsDefault: 0 + m_Capabilities: 0 + m_UserSelectedRegistryName: Unity NuGet m_UserAddingNewScopedRegistry: 0 m_RegistryInfoDraft: - m_ErrorMessage: - m_Original: - m_Id: - m_Name: - m_Url: - m_Scopes: [] - m_IsDefault: 0 - m_Capabilities: 0 m_Modified: 0 - m_Name: - m_Url: - m_Scopes: - - - m_SelectedScopeIndex: 0 + m_ErrorMessage: + m_UserModificationsInstanceId: -824 + m_OriginalInstanceId: -826 + m_LoadAssets: 0