├── .config └── dotnet-tools.json ├── .editorconfig ├── .gitattributes ├── .github ├── actions │ ├── checkout │ │ └── action.yml │ └── create-dll │ │ └── action.yml ├── issue_template.md └── workflows │ ├── activation.yml │ └── main.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .prettierrc.yaml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs └── screenshots │ ├── assembly-version-validation-setting.png │ ├── installed.png │ ├── menu_item.png │ ├── nuspec_editor.png │ ├── nuspec_menu.png │ ├── online.png │ ├── preferences.png │ ├── updates.png │ └── updates_showdowngrades.png ├── plugin-dev-readme.md ├── src ├── Directory.Build.props ├── GlobalShared.DotSettings ├── NuGetForUnity.Cli │ ├── .gitignore │ ├── Fakes │ │ ├── .editorconfig │ │ ├── ApiCompatibilityLevel.cs │ │ ├── Application.cs │ │ ├── AssemblyLoader.cs │ │ ├── AssetDatabase.cs │ │ ├── BuildTarget.cs │ │ ├── Debug.cs │ │ ├── EditorUserBuildSettings.cs │ │ ├── EditorUtility.cs │ │ ├── ISerializationCallbackReceiver.cs │ │ ├── InitializeOnLoadMethodAttribute.cs │ │ ├── JsonUtility.cs │ │ ├── LogType.cs │ │ ├── Mathf.cs │ │ ├── NuGetForUnityUpdater.cs │ │ ├── NugetPackageTextureHelper.cs │ │ ├── NuspecEditor.cs │ │ ├── PlayerSettings.cs │ │ ├── RuntimePlatform.cs │ │ ├── SerializeFieldAttribute.cs │ │ ├── SessionState.cs │ │ ├── StackTraceLogType.cs │ │ ├── Texture2D.cs │ │ └── UnityPreImportedLibraryResolver.cs │ ├── NuGetForUnity.Cli.csproj │ ├── NuGetForUnity.Cli.sln │ ├── NuGetForUnity.Cli.sln.DotSettings │ ├── NugetAssemblyLoadContext.cs │ ├── Program.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ └── launchSettings.json ├── NuGetForUnity.CreateDll │ ├── .gitignore │ ├── NuGetForUnity.CreateDll.csproj │ ├── NuGetForUnity.CreateDll.sln │ ├── NuGetForUnity.CreateDll.sln.DotSettings │ └── Properties │ │ └── AssemblyInfo.cs ├── NuGetForUnity.Packager │ ├── .gitignore │ ├── Assets │ │ ├── Export.cs │ │ ├── Export.cs.meta │ │ ├── NuGet.config │ │ ├── NuGet.config.meta │ │ ├── NuGet.meta │ │ ├── NuGet │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── NuGetForUnity.PluginAPI.dll.meta │ │ │ │ ├── NuGetForUnity.PluginAPI.xml.meta │ │ │ │ └── NugetForUnity.dll.meta │ │ │ ├── LICENSE │ │ │ ├── LICENSE.meta │ │ │ ├── README.pdf │ │ │ ├── README.pdf.meta │ │ │ ├── Resources.meta │ │ │ └── Resources │ │ │ │ ├── defaultIcon.png │ │ │ │ └── defaultIcon.png.meta │ │ ├── packages.config │ │ └── packages.config.meta │ ├── Packages │ │ └── manifest.json │ └── ProjectSettings │ │ ├── AudioManager.asset │ │ ├── ClusterInputManager.asset │ │ ├── DynamicsManager.asset │ │ ├── EditorBuildSettings.asset │ │ ├── EditorSettings.asset │ │ ├── GraphicsSettings.asset │ │ ├── InputManager.asset │ │ ├── NavMeshAreas.asset │ │ ├── NetworkManager.asset │ │ ├── Physics2DSettings.asset │ │ ├── PresetManager.asset │ │ ├── ProjectSettings.asset │ │ ├── ProjectVersion.txt │ │ ├── QualitySettings.asset │ │ ├── TagManager.asset │ │ ├── TimeManager.asset │ │ ├── UnityConnectSettings.asset │ │ └── VFXManager.asset ├── NuGetForUnity.PluginAPI │ ├── .gitignore │ ├── ExtensionPoints │ │ ├── IFoundInstalledPackageHandler.cs │ │ ├── IPackageButtonsHandler.cs │ │ ├── IPackageInstallFileHandler.cs │ │ └── IPackageUninstallHandler.cs │ ├── INugetPlugin.cs │ ├── INugetPluginRegistry.cs │ ├── Models │ │ ├── INugetPackage.cs │ │ ├── INugetPackageIdentifier.cs │ │ ├── INugetPluginService.cs │ │ └── INuspecFile.cs │ ├── NuGetForUnity.PluginAPI.csproj │ ├── NuGetForUnity.PluginAPI.sln │ ├── NuGetForUnity.PluginAPI.sln.DotSettings │ └── PackageUninstallReason.cs ├── NuGetForUnity.Tests │ ├── .gitignore │ ├── Assets │ │ ├── NuGet.config │ │ ├── NuGet.config.meta │ │ ├── PlayTests.meta │ │ ├── PlayTests │ │ │ ├── NuGetForUnity.PlayTests.asmdef │ │ │ ├── NuGetForUnity.PlayTests.asmdef.meta │ │ │ ├── NuGetPlayTests.cs │ │ │ └── NuGetPlayTests.cs.meta │ │ ├── Plugins.meta │ │ ├── Plugins │ │ │ ├── .gitkeep │ │ │ ├── Editor.meta │ │ │ └── Editor │ │ │ │ └── .gitkeep │ │ ├── Tests.meta │ │ ├── Tests │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── .editorconfig │ │ │ │ ├── NuGetForUnity.Editor.Tests.asmdef │ │ │ │ ├── NuGetForUnity.Editor.Tests.asmdef.meta │ │ │ │ ├── NuGetTests.cs │ │ │ │ └── NuGetTests.cs.meta │ │ │ ├── Resources.meta │ │ │ └── Resources │ │ │ │ ├── NuGet.config │ │ │ │ └── NuGet.config.meta │ │ ├── packages.config │ │ └── packages.config.meta │ ├── NuGetForUnity.Tests.sln.DotSettings │ ├── NuGetForUnity.csproj.DotSettings │ ├── Packages │ │ └── manifest.json │ └── ProjectSettings │ │ ├── AudioManager.asset │ │ ├── ClusterInputManager.asset │ │ ├── DynamicsManager.asset │ │ ├── EditorBuildSettings.asset │ │ ├── EditorSettings.asset │ │ ├── GraphicsSettings.asset │ │ ├── InputManager.asset │ │ ├── NavMeshAreas.asset │ │ ├── NetworkManager.asset │ │ ├── Physics2DSettings.asset │ │ ├── PresetManager.asset │ │ ├── ProjectSettings.asset │ │ ├── ProjectVersion.txt │ │ ├── QualitySettings.asset │ │ ├── TagManager.asset │ │ ├── TimeManager.asset │ │ ├── UnityConnectSettings.asset │ │ └── VFXManager.asset ├── NuGetForUnity │ ├── Editor.meta │ ├── Editor │ │ ├── Configuration.meta │ │ ├── Configuration │ │ │ ├── ConfigurationEncryptionHelper.cs │ │ │ ├── ConfigurationEncryptionHelper.cs.meta │ │ │ ├── ConfigurationManager.cs │ │ │ ├── ConfigurationManager.cs.meta │ │ │ ├── NativeRuntimeAssetConfiguration.cs │ │ │ ├── NativeRuntimeAssetConfiguration.cs.meta │ │ │ ├── NativeRuntimeSettings.cs │ │ │ ├── NativeRuntimeSettings.cs.meta │ │ │ ├── NugetConfigFile.cs │ │ │ ├── NugetConfigFile.cs.meta │ │ │ ├── NugetForUnityPluginId.cs │ │ │ ├── NugetForUnityPluginId.cs.meta │ │ │ ├── PackageConfig.cs │ │ │ ├── PackageConfig.cs.meta │ │ │ ├── PackageInstallLocation.cs │ │ │ ├── PackageInstallLocation.cs.meta │ │ │ ├── PackagesConfigFile.cs │ │ │ └── PackagesConfigFile.cs.meta │ │ ├── Helper.meta │ │ ├── Helper │ │ │ ├── AnalyzerHelper.cs │ │ │ ├── AnalyzerHelper.cs.meta │ │ │ ├── AssemblyLoader.cs │ │ │ ├── AssemblyLoader.cs.meta │ │ │ ├── CredentialProviderHelper.cs │ │ │ ├── CredentialProviderHelper.cs.meta │ │ │ ├── FileSystemHelper.cs │ │ │ ├── FileSystemHelper.cs.meta │ │ │ ├── Md5HashHelper.cs │ │ │ ├── Md5HashHelper.cs.meta │ │ │ ├── NugetCliHelper.cs │ │ │ ├── NugetCliHelper.cs.meta │ │ │ ├── NugetPackageTextureHelper.cs │ │ │ ├── NugetPackageTextureHelper.cs.meta │ │ │ ├── PathHelper.cs │ │ │ ├── PathHelper.cs.meta │ │ │ ├── PortableSymbolFileHelper.cs │ │ │ ├── PortableSymbolFileHelper.cs.meta │ │ │ ├── UnityMainThreadDispatcher.cs │ │ │ ├── UnityMainThreadDispatcher.cs.meta │ │ │ ├── UnityPathHelper.cs │ │ │ ├── UnityPathHelper.cs.meta │ │ │ ├── WebRequestHelper.cs │ │ │ └── WebRequestHelper.cs.meta │ │ ├── InstalledPackagesManager.cs │ │ ├── InstalledPackagesManager.cs.meta │ │ ├── Models.meta │ │ ├── Models │ │ │ ├── INugetPackage.cs │ │ │ ├── INugetPackage.cs.meta │ │ │ ├── INugetPackageIdentifier.cs │ │ │ ├── INugetPackageIdentifier.cs.meta │ │ │ ├── NugetFrameworkGroup.cs │ │ │ ├── NugetFrameworkGroup.cs.meta │ │ │ ├── NugetPackageIdEqualityComparer.cs │ │ │ ├── NugetPackageIdEqualityComparer.cs.meta │ │ │ ├── NugetPackageIdentifier.cs │ │ │ ├── NugetPackageIdentifier.cs.meta │ │ │ ├── NugetPackageLocal.cs │ │ │ ├── NugetPackageLocal.cs.meta │ │ │ ├── NugetPackageV2.cs │ │ │ ├── NugetPackageV2.cs.meta │ │ │ ├── NugetPackageV2Base.cs │ │ │ ├── NugetPackageV2Base.cs.meta │ │ │ ├── NugetPackageV3.cs │ │ │ ├── NugetPackageV3.cs.meta │ │ │ ├── NugetPackageVersion.cs │ │ │ ├── NugetPackageVersion.cs.meta │ │ │ ├── PackageInstallOperationResult.cs │ │ │ ├── PackageInstallOperationResult.cs.meta │ │ │ ├── PackageInstallOperationResultEntry.cs │ │ │ ├── PackageInstallOperationResultEntry.cs.meta │ │ │ ├── RepositoryType.cs │ │ │ ├── RepositoryType.cs.meta │ │ │ ├── SerializableNugetPackage.cs │ │ │ ├── SerializableNugetPackage.cs.meta │ │ │ ├── UnityVersion.cs │ │ │ └── UnityVersion.cs.meta │ │ ├── NuGetForUnity.asmdef │ │ ├── NuGetForUnity.asmdef.meta │ │ ├── NugetAssetPostprocessor.cs │ │ ├── NugetAssetPostprocessor.cs.meta │ │ ├── NugetLogger.cs │ │ ├── NugetLogger.cs.meta │ │ ├── NugetPackageInstaller.cs │ │ ├── NugetPackageInstaller.cs.meta │ │ ├── NugetPackageUninstaller.cs │ │ ├── NugetPackageUninstaller.cs.meta │ │ ├── NugetPackageUpdater.cs │ │ ├── NugetPackageUpdater.cs.meta │ │ ├── NuspecContentFile.cs │ │ ├── NuspecContentFile.cs.meta │ │ ├── NuspecFile.cs │ │ ├── NuspecFile.cs.meta │ │ ├── OnLoadNugetPackageRestorer.cs │ │ ├── OnLoadNugetPackageRestorer.cs.meta │ │ ├── PackageCacheManager.cs │ │ ├── PackageCacheManager.cs.meta │ │ ├── PackageContentManager.cs │ │ ├── PackageContentManager.cs.meta │ │ ├── PackageRestorer.cs │ │ ├── PackageRestorer.cs.meta │ │ ├── PackageSource.meta │ │ ├── PackageSource │ │ │ ├── INugetPackageSource.cs │ │ │ ├── INugetPackageSource.cs.meta │ │ │ ├── NugetApiClientV3.cs │ │ │ ├── NugetApiClientV3.cs.meta │ │ │ ├── NugetODataResponse.cs │ │ │ ├── NugetODataResponse.cs.meta │ │ │ ├── NugetPackageSourceCombined.cs │ │ │ ├── NugetPackageSourceCombined.cs.meta │ │ │ ├── NugetPackageSourceCreator.cs │ │ │ ├── NugetPackageSourceCreator.cs.meta │ │ │ ├── NugetPackageSourceLocal.cs │ │ │ ├── NugetPackageSourceLocal.cs.meta │ │ │ ├── NugetPackageSourceV2.cs │ │ │ ├── NugetPackageSourceV2.cs.meta │ │ │ ├── NugetPackageSourceV3.cs │ │ │ └── NugetPackageSourceV3.cs.meta │ │ ├── PluginAPI.meta │ │ ├── PluginAPI │ │ │ ├── NuGetForUnity.PluginAPI.dll │ │ │ ├── NuGetForUnity.PluginAPI.dll.meta │ │ │ ├── NuGetForUnity.PluginAPI.xml │ │ │ └── NuGetForUnity.PluginAPI.xml.meta │ │ ├── PluginSupport.meta │ │ ├── PluginSupport │ │ │ ├── NugetPluginService.cs │ │ │ ├── NugetPluginService.cs.meta │ │ │ ├── PluginRegistry.cs │ │ │ └── PluginRegistry.cs.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── defaultIcon.png │ │ │ └── defaultIcon.png.meta │ │ ├── TargetFrameworkResolver.cs │ │ ├── TargetFrameworkResolver.cs.meta │ │ ├── Ui.meta │ │ ├── Ui │ │ │ ├── DependencyTreeViewer.cs │ │ │ ├── DependencyTreeViewer.cs.meta │ │ │ ├── NuGetForUnityUpdater.cs │ │ │ ├── NuGetForUnityUpdater.cs.meta │ │ │ ├── NugetPreferences.cs │ │ │ ├── NugetPreferences.cs.meta │ │ │ ├── NugetWindow.cs │ │ │ ├── NugetWindow.cs.meta │ │ │ ├── NugetWindowTab.cs │ │ │ ├── NugetWindowTab.cs.meta │ │ │ ├── NuspecEditor.cs │ │ │ ├── NuspecEditor.cs.meta │ │ │ ├── RectHelper.cs │ │ │ ├── RectHelper.cs.meta │ │ │ ├── Styles.cs │ │ │ └── Styles.cs.meta │ │ ├── UnityPreImportedLibraryResolver.cs │ │ ├── UnityPreImportedLibraryResolver.cs.meta │ │ ├── csc.rsp │ │ └── csc.rsp.meta │ ├── LICENSE.md │ ├── LICENSE.md.meta │ ├── README.pdf │ ├── README.pdf.meta │ ├── package.json │ └── package.json.meta └── TestProjects │ ├── ImportAndUseNuGetPackages │ ├── .gitignore │ ├── .vsconfig │ ├── Assets │ │ ├── NuGet.config │ │ ├── NuGet.config.meta │ │ ├── Scenes.meta │ │ ├── Scenes │ │ │ ├── SampleScene.unity │ │ │ └── SampleScene.unity.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── ImportAndUseNuGetPackages.asmdef │ │ │ ├── ImportAndUseNuGetPackages.asmdef.meta │ │ │ ├── ImportAndUseNuGetPackages.csproj.DotSettings │ │ │ ├── ImportAndUseNuGetPackages.csproj.DotSettings.meta │ │ │ ├── ImportAndUseNuGetPackages.csproj.meta │ │ │ ├── UseSerilog.cs │ │ │ ├── UseSerilog.cs.meta │ │ │ ├── UseSystemTextJson.cs │ │ │ └── UseSystemTextJson.cs.meta │ │ ├── packages.config │ │ └── packages.config.meta │ ├── ImportAndUseNuGetPackages.sln.DotSettings │ ├── Packages │ │ ├── manifest.json │ │ └── packages-lock.json │ └── ProjectSettings │ │ ├── AudioManager.asset │ │ ├── ClusterInputManager.asset │ │ ├── DynamicsManager.asset │ │ ├── EditorBuildSettings.asset │ │ ├── EditorSettings.asset │ │ ├── GraphicsSettings.asset │ │ ├── InputManager.asset │ │ ├── MemorySettings.asset │ │ ├── NavMeshAreas.asset │ │ ├── PackageManagerSettings.asset │ │ ├── Packages │ │ └── com.github-joc0de.visual-studio-solution-generator │ │ │ └── Settings.json │ │ ├── Physics2DSettings.asset │ │ ├── PresetManager.asset │ │ ├── ProjectSettings.asset │ │ ├── ProjectVersion.txt │ │ ├── QualitySettings.asset │ │ ├── TagManager.asset │ │ ├── TimeManager.asset │ │ ├── UnityConnectSettings.asset │ │ ├── VFXManager.asset │ │ └── VersionControlSettings.asset │ └── ImportAndUseNuGetPackages2021 │ ├── .gitignore │ ├── .vsconfig │ ├── Assets │ ├── NuGet.config │ ├── NuGet.config.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── SampleScene.unity │ │ └── SampleScene.unity.meta │ ├── Scripts.meta │ ├── Scripts │ │ ├── UseSerilog.cs │ │ ├── UseSerilog.cs.meta │ │ ├── UseSystemTextJson.cs │ │ └── UseSystemTextJson.cs.meta │ ├── packages.config │ └── packages.config.meta │ ├── ImportAndUseNuGetPackages2021.sln.DotSettings │ ├── Packages │ ├── manifest.json │ └── packages-lock.json │ └── ProjectSettings │ ├── AudioManager.asset │ ├── BurstAotSettings_StandaloneWindows.json │ ├── ClusterInputManager.asset │ ├── CommonBurstAotSettings.json │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── MemorySettings.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── PackageManagerSettings.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ ├── VersionControlSettings.asset │ ├── XRSettings.asset │ └── boot.config └── tools ├── build-plugin-api.ps1 ├── build.ps1 ├── format-all.ps1 ├── format-staged.ps1 ├── resharper-cleanupcode.py ├── update-tools.ps1 └── update-version-number.ps1 /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/actions/checkout/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/.github/actions/checkout/action.yml -------------------------------------------------------------------------------- /.github/actions/create-dll/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/.github/actions/create-dll/action.yml -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/workflows/activation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/.github/workflows/activation.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/.prettierrc.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/README.md -------------------------------------------------------------------------------- /docs/screenshots/assembly-version-validation-setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/docs/screenshots/assembly-version-validation-setting.png -------------------------------------------------------------------------------- /docs/screenshots/installed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/docs/screenshots/installed.png -------------------------------------------------------------------------------- /docs/screenshots/menu_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/docs/screenshots/menu_item.png -------------------------------------------------------------------------------- /docs/screenshots/nuspec_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/docs/screenshots/nuspec_editor.png -------------------------------------------------------------------------------- /docs/screenshots/nuspec_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/docs/screenshots/nuspec_menu.png -------------------------------------------------------------------------------- /docs/screenshots/online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/docs/screenshots/online.png -------------------------------------------------------------------------------- /docs/screenshots/preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/docs/screenshots/preferences.png -------------------------------------------------------------------------------- /docs/screenshots/updates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/docs/screenshots/updates.png -------------------------------------------------------------------------------- /docs/screenshots/updates_showdowngrades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/docs/screenshots/updates_showdowngrades.png -------------------------------------------------------------------------------- /plugin-dev-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/plugin-dev-readme.md -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/GlobalShared.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/GlobalShared.DotSettings -------------------------------------------------------------------------------- /src/NuGetForUnity.Cli/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Cli/.gitignore -------------------------------------------------------------------------------- /src/NuGetForUnity.Cli/Fakes/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Cli/Fakes/.editorconfig -------------------------------------------------------------------------------- /src/NuGetForUnity.Cli/Fakes/ApiCompatibilityLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Cli/Fakes/ApiCompatibilityLevel.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.Cli/Fakes/Application.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Cli/Fakes/Application.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.Cli/Fakes/AssemblyLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Cli/Fakes/AssemblyLoader.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.Cli/Fakes/AssetDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Cli/Fakes/AssetDatabase.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.Cli/Fakes/BuildTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Cli/Fakes/BuildTarget.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.Cli/Fakes/Debug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Cli/Fakes/Debug.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.Cli/Fakes/EditorUserBuildSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Cli/Fakes/EditorUserBuildSettings.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.Cli/Fakes/EditorUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Cli/Fakes/EditorUtility.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.Cli/Fakes/ISerializationCallbackReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Cli/Fakes/ISerializationCallbackReceiver.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.Cli/Fakes/InitializeOnLoadMethodAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Cli/Fakes/InitializeOnLoadMethodAttribute.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.Cli/Fakes/JsonUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Cli/Fakes/JsonUtility.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.Cli/Fakes/LogType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Cli/Fakes/LogType.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.Cli/Fakes/Mathf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Cli/Fakes/Mathf.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.Cli/Fakes/NuGetForUnityUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Cli/Fakes/NuGetForUnityUpdater.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.Cli/Fakes/NugetPackageTextureHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Cli/Fakes/NugetPackageTextureHelper.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.Cli/Fakes/NuspecEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Cli/Fakes/NuspecEditor.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.Cli/Fakes/PlayerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Cli/Fakes/PlayerSettings.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.Cli/Fakes/RuntimePlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Cli/Fakes/RuntimePlatform.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.Cli/Fakes/SerializeFieldAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Cli/Fakes/SerializeFieldAttribute.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.Cli/Fakes/SessionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Cli/Fakes/SessionState.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.Cli/Fakes/StackTraceLogType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Cli/Fakes/StackTraceLogType.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.Cli/Fakes/Texture2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Cli/Fakes/Texture2D.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.Cli/Fakes/UnityPreImportedLibraryResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Cli/Fakes/UnityPreImportedLibraryResolver.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.Cli/NuGetForUnity.Cli.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Cli/NuGetForUnity.Cli.csproj -------------------------------------------------------------------------------- /src/NuGetForUnity.Cli/NuGetForUnity.Cli.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Cli/NuGetForUnity.Cli.sln -------------------------------------------------------------------------------- /src/NuGetForUnity.Cli/NuGetForUnity.Cli.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Cli/NuGetForUnity.Cli.sln.DotSettings -------------------------------------------------------------------------------- /src/NuGetForUnity.Cli/NugetAssemblyLoadContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Cli/NugetAssemblyLoadContext.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.Cli/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Cli/Program.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.Cli/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Cli/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.Cli/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Cli/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/NuGetForUnity.CreateDll/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.CreateDll/.gitignore -------------------------------------------------------------------------------- /src/NuGetForUnity.CreateDll/NuGetForUnity.CreateDll.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.CreateDll/NuGetForUnity.CreateDll.csproj -------------------------------------------------------------------------------- /src/NuGetForUnity.CreateDll/NuGetForUnity.CreateDll.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.CreateDll/NuGetForUnity.CreateDll.sln -------------------------------------------------------------------------------- /src/NuGetForUnity.CreateDll/NuGetForUnity.CreateDll.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.CreateDll/NuGetForUnity.CreateDll.sln.DotSettings -------------------------------------------------------------------------------- /src/NuGetForUnity.CreateDll/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.CreateDll/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Packager/.gitignore -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/Assets/Export.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Packager/Assets/Export.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/Assets/Export.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Packager/Assets/Export.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/Assets/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Packager/Assets/NuGet.config -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/Assets/NuGet.config.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Packager/Assets/NuGet.config.meta -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/Assets/NuGet.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Packager/Assets/NuGet.meta -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/Assets/NuGet/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Packager/Assets/NuGet/Editor.meta -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/Assets/NuGet/Editor/NuGetForUnity.PluginAPI.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Packager/Assets/NuGet/Editor/NuGetForUnity.PluginAPI.dll.meta -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/Assets/NuGet/Editor/NuGetForUnity.PluginAPI.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Packager/Assets/NuGet/Editor/NuGetForUnity.PluginAPI.xml.meta -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/Assets/NuGet/Editor/NugetForUnity.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Packager/Assets/NuGet/Editor/NugetForUnity.dll.meta -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/Assets/NuGet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Packager/Assets/NuGet/LICENSE -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/Assets/NuGet/LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Packager/Assets/NuGet/LICENSE.meta -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/Assets/NuGet/README.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Packager/Assets/NuGet/README.pdf -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/Assets/NuGet/README.pdf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Packager/Assets/NuGet/README.pdf.meta -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/Assets/NuGet/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Packager/Assets/NuGet/Resources.meta -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/Assets/NuGet/Resources/defaultIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Packager/Assets/NuGet/Resources/defaultIcon.png -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/Assets/NuGet/Resources/defaultIcon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Packager/Assets/NuGet/Resources/defaultIcon.png.meta -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/Assets/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/Assets/packages.config.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Packager/Assets/packages.config.meta -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Packager/Packages/manifest.json -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Packager/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Packager/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Packager/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Packager/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Packager/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Packager/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Packager/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Packager/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Packager/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Packager/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Packager/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Packager/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.4.30f1 2 | -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Packager/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Packager/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Packager/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Packager/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /src/NuGetForUnity.Packager/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Packager/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /src/NuGetForUnity.PluginAPI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.PluginAPI/.gitignore -------------------------------------------------------------------------------- /src/NuGetForUnity.PluginAPI/ExtensionPoints/IFoundInstalledPackageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.PluginAPI/ExtensionPoints/IFoundInstalledPackageHandler.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.PluginAPI/ExtensionPoints/IPackageButtonsHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.PluginAPI/ExtensionPoints/IPackageButtonsHandler.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.PluginAPI/ExtensionPoints/IPackageInstallFileHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.PluginAPI/ExtensionPoints/IPackageInstallFileHandler.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.PluginAPI/ExtensionPoints/IPackageUninstallHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.PluginAPI/ExtensionPoints/IPackageUninstallHandler.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.PluginAPI/INugetPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.PluginAPI/INugetPlugin.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.PluginAPI/INugetPluginRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.PluginAPI/INugetPluginRegistry.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.PluginAPI/Models/INugetPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.PluginAPI/Models/INugetPackage.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.PluginAPI/Models/INugetPackageIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.PluginAPI/Models/INugetPackageIdentifier.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.PluginAPI/Models/INugetPluginService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.PluginAPI/Models/INugetPluginService.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.PluginAPI/Models/INuspecFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.PluginAPI/Models/INuspecFile.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.PluginAPI/NuGetForUnity.PluginAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.PluginAPI/NuGetForUnity.PluginAPI.csproj -------------------------------------------------------------------------------- /src/NuGetForUnity.PluginAPI/NuGetForUnity.PluginAPI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.PluginAPI/NuGetForUnity.PluginAPI.sln -------------------------------------------------------------------------------- /src/NuGetForUnity.PluginAPI/NuGetForUnity.PluginAPI.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.PluginAPI/NuGetForUnity.PluginAPI.sln.DotSettings -------------------------------------------------------------------------------- /src/NuGetForUnity.PluginAPI/PackageUninstallReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.PluginAPI/PackageUninstallReason.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/.gitignore -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/Assets/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/Assets/NuGet.config -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/Assets/NuGet.config.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/Assets/NuGet.config.meta -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/Assets/PlayTests.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/Assets/PlayTests.meta -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/Assets/PlayTests/NuGetForUnity.PlayTests.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/Assets/PlayTests/NuGetForUnity.PlayTests.asmdef -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/Assets/PlayTests/NuGetForUnity.PlayTests.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/Assets/PlayTests/NuGetForUnity.PlayTests.asmdef.meta -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/Assets/PlayTests/NuGetPlayTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/Assets/PlayTests/NuGetPlayTests.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/Assets/PlayTests/NuGetPlayTests.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/Assets/PlayTests/NuGetPlayTests.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/Assets/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/Assets/Plugins.meta -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/Assets/Plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/Assets/Plugins/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/Assets/Plugins/Editor.meta -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/Assets/Plugins/Editor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/Assets/Tests.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/Assets/Tests.meta -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/Assets/Tests/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/Assets/Tests/Editor.meta -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/Assets/Tests/Editor/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/Assets/Tests/Editor/.editorconfig -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/Assets/Tests/Editor/NuGetForUnity.Editor.Tests.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/Assets/Tests/Editor/NuGetForUnity.Editor.Tests.asmdef -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/Assets/Tests/Editor/NuGetForUnity.Editor.Tests.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/Assets/Tests/Editor/NuGetForUnity.Editor.Tests.asmdef.meta -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/Assets/Tests/Editor/NuGetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/Assets/Tests/Editor/NuGetTests.cs -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/Assets/Tests/Editor/NuGetTests.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/Assets/Tests/Editor/NuGetTests.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/Assets/Tests/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/Assets/Tests/Resources.meta -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/Assets/Tests/Resources/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/Assets/Tests/Resources/NuGet.config -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/Assets/Tests/Resources/NuGet.config.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/Assets/Tests/Resources/NuGet.config.meta -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/Assets/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/Assets/packages.config.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/Assets/packages.config.meta -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/NuGetForUnity.Tests.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/NuGetForUnity.Tests.sln.DotSettings -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/NuGetForUnity.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/NuGetForUnity.csproj.DotSettings -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/Packages/manifest.json -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.4.36f1 2 | -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /src/NuGetForUnity.Tests/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity.Tests/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Configuration.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Configuration.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Configuration/ConfigurationEncryptionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Configuration/ConfigurationEncryptionHelper.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Configuration/ConfigurationEncryptionHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Configuration/ConfigurationEncryptionHelper.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Configuration/ConfigurationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Configuration/ConfigurationManager.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Configuration/ConfigurationManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Configuration/ConfigurationManager.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Configuration/NativeRuntimeAssetConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Configuration/NativeRuntimeAssetConfiguration.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Configuration/NativeRuntimeAssetConfiguration.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Configuration/NativeRuntimeAssetConfiguration.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Configuration/NativeRuntimeSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Configuration/NativeRuntimeSettings.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Configuration/NativeRuntimeSettings.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e8bf61f530f4d9d43962f57efbdd2543 -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Configuration/NugetConfigFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Configuration/NugetConfigFile.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Configuration/NugetConfigFile.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Configuration/NugetConfigFile.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Configuration/NugetForUnityPluginId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Configuration/NugetForUnityPluginId.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Configuration/NugetForUnityPluginId.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Configuration/NugetForUnityPluginId.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Configuration/PackageConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Configuration/PackageConfig.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Configuration/PackageConfig.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Configuration/PackageConfig.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Configuration/PackageInstallLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Configuration/PackageInstallLocation.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Configuration/PackageInstallLocation.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Configuration/PackageInstallLocation.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Configuration/PackagesConfigFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Configuration/PackagesConfigFile.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Configuration/PackagesConfigFile.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Configuration/PackagesConfigFile.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Helper.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Helper.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Helper/AnalyzerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Helper/AnalyzerHelper.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Helper/AnalyzerHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Helper/AnalyzerHelper.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Helper/AssemblyLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Helper/AssemblyLoader.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Helper/AssemblyLoader.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Helper/AssemblyLoader.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Helper/CredentialProviderHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Helper/CredentialProviderHelper.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Helper/CredentialProviderHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Helper/CredentialProviderHelper.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Helper/FileSystemHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Helper/FileSystemHelper.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Helper/FileSystemHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Helper/FileSystemHelper.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Helper/Md5HashHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Helper/Md5HashHelper.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Helper/Md5HashHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Helper/Md5HashHelper.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Helper/NugetCliHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Helper/NugetCliHelper.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Helper/NugetCliHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Helper/NugetCliHelper.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Helper/NugetPackageTextureHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Helper/NugetPackageTextureHelper.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Helper/NugetPackageTextureHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Helper/NugetPackageTextureHelper.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Helper/PathHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Helper/PathHelper.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Helper/PathHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Helper/PathHelper.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Helper/PortableSymbolFileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Helper/PortableSymbolFileHelper.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Helper/PortableSymbolFileHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Helper/PortableSymbolFileHelper.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Helper/UnityMainThreadDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Helper/UnityMainThreadDispatcher.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Helper/UnityMainThreadDispatcher.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Helper/UnityMainThreadDispatcher.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Helper/UnityPathHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Helper/UnityPathHelper.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Helper/UnityPathHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Helper/UnityPathHelper.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Helper/WebRequestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Helper/WebRequestHelper.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Helper/WebRequestHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Helper/WebRequestHelper.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/InstalledPackagesManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/InstalledPackagesManager.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/InstalledPackagesManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/InstalledPackagesManager.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Models.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Models/INugetPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Models/INugetPackage.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Models/INugetPackage.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Models/INugetPackage.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Models/INugetPackageIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Models/INugetPackageIdentifier.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Models/INugetPackageIdentifier.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Models/INugetPackageIdentifier.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Models/NugetFrameworkGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Models/NugetFrameworkGroup.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Models/NugetFrameworkGroup.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Models/NugetFrameworkGroup.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Models/NugetPackageIdEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Models/NugetPackageIdEqualityComparer.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Models/NugetPackageIdEqualityComparer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Models/NugetPackageIdEqualityComparer.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Models/NugetPackageIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Models/NugetPackageIdentifier.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Models/NugetPackageIdentifier.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Models/NugetPackageIdentifier.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Models/NugetPackageLocal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Models/NugetPackageLocal.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Models/NugetPackageLocal.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Models/NugetPackageLocal.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Models/NugetPackageV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Models/NugetPackageV2.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Models/NugetPackageV2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Models/NugetPackageV2.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Models/NugetPackageV2Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Models/NugetPackageV2Base.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Models/NugetPackageV2Base.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Models/NugetPackageV2Base.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Models/NugetPackageV3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Models/NugetPackageV3.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Models/NugetPackageV3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Models/NugetPackageV3.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Models/NugetPackageVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Models/NugetPackageVersion.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Models/NugetPackageVersion.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Models/NugetPackageVersion.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Models/PackageInstallOperationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Models/PackageInstallOperationResult.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Models/PackageInstallOperationResult.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Models/PackageInstallOperationResult.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Models/PackageInstallOperationResultEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Models/PackageInstallOperationResultEntry.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Models/PackageInstallOperationResultEntry.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Models/PackageInstallOperationResultEntry.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Models/RepositoryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Models/RepositoryType.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Models/RepositoryType.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Models/RepositoryType.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Models/SerializableNugetPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Models/SerializableNugetPackage.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Models/SerializableNugetPackage.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Models/SerializableNugetPackage.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Models/UnityVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Models/UnityVersion.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Models/UnityVersion.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Models/UnityVersion.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/NuGetForUnity.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/NuGetForUnity.asmdef -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/NuGetForUnity.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/NuGetForUnity.asmdef.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/NugetAssetPostprocessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/NugetAssetPostprocessor.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/NugetAssetPostprocessor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/NugetAssetPostprocessor.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/NugetLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/NugetLogger.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/NugetLogger.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/NugetLogger.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/NugetPackageInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/NugetPackageInstaller.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/NugetPackageInstaller.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/NugetPackageInstaller.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/NugetPackageUninstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/NugetPackageUninstaller.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/NugetPackageUninstaller.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/NugetPackageUninstaller.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/NugetPackageUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/NugetPackageUpdater.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/NugetPackageUpdater.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/NugetPackageUpdater.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/NuspecContentFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/NuspecContentFile.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/NuspecContentFile.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/NuspecContentFile.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/NuspecFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/NuspecFile.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/NuspecFile.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/NuspecFile.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/OnLoadNugetPackageRestorer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/OnLoadNugetPackageRestorer.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/OnLoadNugetPackageRestorer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/OnLoadNugetPackageRestorer.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/PackageCacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/PackageCacheManager.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/PackageCacheManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/PackageCacheManager.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/PackageContentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/PackageContentManager.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/PackageContentManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/PackageContentManager.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/PackageRestorer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/PackageRestorer.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/PackageRestorer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/PackageRestorer.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/PackageSource.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/PackageSource.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/PackageSource/INugetPackageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/PackageSource/INugetPackageSource.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/PackageSource/INugetPackageSource.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/PackageSource/INugetPackageSource.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/PackageSource/NugetApiClientV3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/PackageSource/NugetApiClientV3.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/PackageSource/NugetApiClientV3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/PackageSource/NugetApiClientV3.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/PackageSource/NugetODataResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/PackageSource/NugetODataResponse.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/PackageSource/NugetODataResponse.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/PackageSource/NugetODataResponse.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/PackageSource/NugetPackageSourceCombined.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/PackageSource/NugetPackageSourceCombined.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/PackageSource/NugetPackageSourceCombined.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/PackageSource/NugetPackageSourceCombined.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/PackageSource/NugetPackageSourceCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/PackageSource/NugetPackageSourceCreator.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/PackageSource/NugetPackageSourceCreator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/PackageSource/NugetPackageSourceCreator.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/PackageSource/NugetPackageSourceLocal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/PackageSource/NugetPackageSourceLocal.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/PackageSource/NugetPackageSourceLocal.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/PackageSource/NugetPackageSourceLocal.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/PackageSource/NugetPackageSourceV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/PackageSource/NugetPackageSourceV2.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/PackageSource/NugetPackageSourceV2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/PackageSource/NugetPackageSourceV2.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/PackageSource/NugetPackageSourceV3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/PackageSource/NugetPackageSourceV3.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/PackageSource/NugetPackageSourceV3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/PackageSource/NugetPackageSourceV3.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/PluginAPI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/PluginAPI.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/PluginAPI/NuGetForUnity.PluginAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/PluginAPI/NuGetForUnity.PluginAPI.dll -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/PluginAPI/NuGetForUnity.PluginAPI.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/PluginAPI/NuGetForUnity.PluginAPI.dll.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/PluginAPI/NuGetForUnity.PluginAPI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/PluginAPI/NuGetForUnity.PluginAPI.xml -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/PluginAPI/NuGetForUnity.PluginAPI.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/PluginAPI/NuGetForUnity.PluginAPI.xml.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/PluginSupport.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/PluginSupport.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/PluginSupport/NugetPluginService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/PluginSupport/NugetPluginService.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/PluginSupport/NugetPluginService.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/PluginSupport/NugetPluginService.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/PluginSupport/PluginRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/PluginSupport/PluginRegistry.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/PluginSupport/PluginRegistry.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/PluginSupport/PluginRegistry.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Resources.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Resources/defaultIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Resources/defaultIcon.png -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Resources/defaultIcon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Resources/defaultIcon.png.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/TargetFrameworkResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/TargetFrameworkResolver.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/TargetFrameworkResolver.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/TargetFrameworkResolver.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Ui.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Ui.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Ui/DependencyTreeViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Ui/DependencyTreeViewer.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Ui/DependencyTreeViewer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Ui/DependencyTreeViewer.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Ui/NuGetForUnityUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Ui/NuGetForUnityUpdater.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Ui/NuGetForUnityUpdater.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Ui/NuGetForUnityUpdater.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Ui/NugetPreferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Ui/NugetPreferences.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Ui/NugetPreferences.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Ui/NugetPreferences.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Ui/NugetWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Ui/NugetWindow.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Ui/NugetWindow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Ui/NugetWindow.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Ui/NugetWindowTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Ui/NugetWindowTab.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Ui/NugetWindowTab.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Ui/NugetWindowTab.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Ui/NuspecEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Ui/NuspecEditor.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Ui/NuspecEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Ui/NuspecEditor.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Ui/RectHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Ui/RectHelper.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Ui/RectHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Ui/RectHelper.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Ui/Styles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Ui/Styles.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/Ui/Styles.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/Ui/Styles.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/UnityPreImportedLibraryResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/UnityPreImportedLibraryResolver.cs -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/UnityPreImportedLibraryResolver.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/UnityPreImportedLibraryResolver.cs.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/csc.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/csc.rsp -------------------------------------------------------------------------------- /src/NuGetForUnity/Editor/csc.rsp.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/Editor/csc.rsp.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/LICENSE.md -------------------------------------------------------------------------------- /src/NuGetForUnity/LICENSE.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/LICENSE.md.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/README.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/README.pdf -------------------------------------------------------------------------------- /src/NuGetForUnity/README.pdf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/README.pdf.meta -------------------------------------------------------------------------------- /src/NuGetForUnity/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/package.json -------------------------------------------------------------------------------- /src/NuGetForUnity/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/NuGetForUnity/package.json.meta -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/.gitignore -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/.vsconfig -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/Assets/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/Assets/NuGet.config -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/Assets/NuGet.config.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/Assets/NuGet.config.meta -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/Assets/Scenes.meta -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/Assets/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/Assets/Scenes/SampleScene.unity.meta -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/Assets/Scripts.meta -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/Assets/Scripts/ImportAndUseNuGetPackages.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ImportAndUseNuGetPackages" 3 | } 4 | -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/Assets/Scripts/ImportAndUseNuGetPackages.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/Assets/Scripts/ImportAndUseNuGetPackages.asmdef.meta -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/Assets/Scripts/ImportAndUseNuGetPackages.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/Assets/Scripts/ImportAndUseNuGetPackages.csproj.DotSettings -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/Assets/Scripts/ImportAndUseNuGetPackages.csproj.DotSettings.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/Assets/Scripts/ImportAndUseNuGetPackages.csproj.DotSettings.meta -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/Assets/Scripts/ImportAndUseNuGetPackages.csproj.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/Assets/Scripts/ImportAndUseNuGetPackages.csproj.meta -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/Assets/Scripts/UseSerilog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/Assets/Scripts/UseSerilog.cs -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/Assets/Scripts/UseSerilog.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/Assets/Scripts/UseSerilog.cs.meta -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/Assets/Scripts/UseSystemTextJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/Assets/Scripts/UseSystemTextJson.cs -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/Assets/Scripts/UseSystemTextJson.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/Assets/Scripts/UseSystemTextJson.cs.meta -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/Assets/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/Assets/packages.config -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/Assets/packages.config.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/Assets/packages.config.meta -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/ImportAndUseNuGetPackages.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/ImportAndUseNuGetPackages.sln.DotSettings -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/Packages/manifest.json -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/Packages/packages-lock.json -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/Packages/com.github-joc0de.visual-studio-solution-generator/Settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/Packages/com.github-joc0de.visual-studio-solution-generator/Settings.json -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/.gitignore -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/.vsconfig -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/Assets/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/Assets/NuGet.config -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/Assets/NuGet.config.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/Assets/NuGet.config.meta -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/Assets/Scenes.meta -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/Assets/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/Assets/Scenes/SampleScene.unity.meta -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/Assets/Scripts.meta -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/Assets/Scripts/UseSerilog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/Assets/Scripts/UseSerilog.cs -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/Assets/Scripts/UseSerilog.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/Assets/Scripts/UseSerilog.cs.meta -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/Assets/Scripts/UseSystemTextJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/Assets/Scripts/UseSystemTextJson.cs -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/Assets/Scripts/UseSystemTextJson.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/Assets/Scripts/UseSystemTextJson.cs.meta -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/Assets/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/Assets/packages.config -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/Assets/packages.config.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/Assets/packages.config.meta -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/ImportAndUseNuGetPackages2021.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/ImportAndUseNuGetPackages2021.sln.DotSettings -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/Packages/manifest.json -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/Packages/packages-lock.json -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/BurstAotSettings_StandaloneWindows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/BurstAotSettings_StandaloneWindows.json -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/CommonBurstAotSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/CommonBurstAotSettings.json -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /src/TestProjects/ImportAndUseNuGetPackages2021/ProjectSettings/boot.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/build-plugin-api.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/tools/build-plugin-api.ps1 -------------------------------------------------------------------------------- /tools/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/tools/build.ps1 -------------------------------------------------------------------------------- /tools/format-all.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/tools/format-all.ps1 -------------------------------------------------------------------------------- /tools/format-staged.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/tools/format-staged.ps1 -------------------------------------------------------------------------------- /tools/resharper-cleanupcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/tools/resharper-cleanupcode.py -------------------------------------------------------------------------------- /tools/update-tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/tools/update-tools.ps1 -------------------------------------------------------------------------------- /tools/update-version-number.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlitchEnzo/NuGetForUnity/HEAD/tools/update-version-number.ps1 --------------------------------------------------------------------------------