Skip to content

Instantly share code, notes, and snippets.

@stelf
Created July 21, 2021 13:58
Show Gist options
  • Save stelf/7b38edd8e40628f8eceafc925f30ebeb to your computer and use it in GitHub Desktop.
Save stelf/7b38edd8e40628f8eceafc925f30ebeb to your computer and use it in GitHub Desktop.
manual (&local) installation of Oracle.ManagedDataAccess.Core dependencies from nuget v2.0 API
function Install-CollectDependencies {
Set-PackageSource -SourceName nuget.org -NewLocation https://www.nuget.org/api/v2
Install-Package System.Numerics.Vectors,System.ValueTuple -SkipDependencies -Destination packages
Install-Package System.Runtime.CompilerServices.Unsafe -SkipDependencies -Destination packages
Install-Package System.Memory,System.ValueTuple -SkipDependencies -Destination packages
Install-Package System.Threading,System.Threading.Tasks -SkipDependencies -Destination packages
Install-Package Runtime.Native.System,System.Runtime.Handles,System.Runtime.InteropServices -SkipDependencies -Destination packages
Install-Package System.Reflection.Extensions -SkipDependencies -Destination packages
Install-Package System.Console,System.AppContext,System.Collections -SkipDependencies -Destination packages
Install-Package Microsoft.Win32.Primitives,System.Globalization.Calendars -SkipDependencies -Destination packages
Install-Package System.IO.Compression,System.Buffers,System.Diagnostics.Debug -Destination packages
Install-Package System.IO,System.IO.Compression.ZipFile,System.Runtime.InteropServices.RuntimeInformation -SkipDependencies -Destination packages
Install-Package System.Security.Claims,System.Runtime.Extensions,System.Security.Principal.Windows,System.Security.AccessControl -SkipDependencies -Destination packages
Install-Package System.IO.FileSystem.Primitives,System.IO.FileSystem,System.IO.FileSystem.AccessControl,System.DirectoryServices -SkipDependencies -Destination packages
Install-Package System.Security.Cryptography.Primitives,System.Security.Cryptography.Algorithms -SkipDependencies -Destination packages
Install-Package System.Security.Cryptography.X509Certificates -SkipDependencies -Destination packages
Install-Package System.Security.Cryptography.Encoding,System.Net.Primitives,System.Net.Sockets -SkipDependencies -Destination packages
Install-Package System.Threading.Tasks.Extensions,System.Text.RegularExpressions -SkipDependencies -Destination packages
Install-Package System.Text.RegularExpressions,System.Text.Encoding.Extensions -SkipDependencies -Destination packages
Install-Package System.Threading.Tasks.Extensions,System.Text.RegularExpressions -SkipDependencies -Destination packages
Install-Package System.Text.RegularExpressions,System.Text.Encoding.Extensions -SkipDependencies -Destination packages
Install-Package System.Threading.Tasks.Extensions,System.Text.RegularExpressions -SkipDependencies -Destination packages
Install-Package System.Text.Encoding.Extensions,System.Xml.ReaderWriter -SkipDependencies -Destination packages
Install-Package System.Threading.Tasks.Extensions,System.Text.RegularExpressions -SkipDependencies -Destination packages
Install-Package System.Xml.ReaderWriter,System.Text.Encoding.Extensions -SkipDependencies -Destination packages
Install-Package System.Text.Encodings.Web,Microsoft.Bcl.AsyncInterfaces -SkipDependencies -Destination packages
Install-Package System.Text.Json,System.DirectoryServices.Protocols -SkipDependencies -Destination packages
Install-Package System.Diagnostics.Contracts,System.Reflection.TypeExtensions,System.Linq.Expressions -SkipDependencies -Destination packages
Install-Package System.Diagnostics.Tools,System.Linq,System.Threading.Timer -SkipDependencies -Destination packages
Install-Package System.Collections.Concurrent,System.Xml.XDocument,System.ObjectModel -SkipDependencies -Destination packages
Install-Package -Name NETStandard.Library -Destination packages
Install-Package -Provider NuGet Oracle.ManagedDataAccess -Destination packages
Write-Output Installing Oracle connector... -Destination packages
Install-Package -Name Oracle.ManagedDataAccess.Core -Destination packages -SkipDependencies
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment