diff --git a/Chunked-Test.ps1 b/Chunked-Test.ps1
new file mode 100644
index 0000000..bc73d51
--- /dev/null
+++ b/Chunked-Test.ps1
@@ -0,0 +1,135 @@
+# Chunked upload test with large Windows install.wim file
+Import-Module ./Module/PSMinIO/PSMinIO.psd1 -Force
+
+Write-Host "=== PSMinIO Chunked Upload Test ===" -ForegroundColor Cyan
+Write-Host ""
+
+# Test credentials
+$endpoint = "https://api.s3.gracesolution.info"
+$accessKey = "T34Wg85SAwezUa3sk3m4"
+$secretKey = "PxEmnbQoQJTJsDocSEV6mSSscDpJMiJCayPv93xe"
+
+# Large test file
+$testFile = "C:\Users\gsadmin\Downloads\windows_10_enterprise_ltsc_2021_x64\sources\install.wim"
+
+# Check if file exists
+if (-not (Test-Path $testFile)) {
+ Write-Host "ERROR: Test file not found: $testFile" -ForegroundColor Red
+ exit 1
+}
+
+# Get file info
+$fileInfo = Get-Item $testFile
+Write-Host "Test file: $($fileInfo.Name)" -ForegroundColor Yellow
+Write-Host "File size: $([math]::Round($fileInfo.Length / 1MB, 2)) MB ($($fileInfo.Length) bytes)" -ForegroundColor Yellow
+Write-Host ""
+
+# Connect
+Write-Host "1. Connecting to MinIO..." -ForegroundColor Yellow
+try {
+ $connection = Connect-MinIO -Endpoint $endpoint -AccessKey $accessKey -SecretKey $secretKey -Verbose
+ Write-Host "SUCCESS: Connected to $($connection.EndpointUrl)" -ForegroundColor Green
+} catch {
+ Write-Host "FAILED: $($_.Exception.Message)" -ForegroundColor Red
+ exit 1
+}
+
+# Get bucket
+$buckets = Get-MinIOBucket
+if ($buckets.Count -eq 0) {
+ Write-Host "ERROR: No buckets available for testing" -ForegroundColor Red
+ exit 1
+}
+$testBucket = $buckets[0].Name
+Write-Host "Using bucket: $testBucket" -ForegroundColor Yellow
+Write-Host ""
+
+# Test chunked upload with different chunk sizes
+$chunkSizes = @(
+ @{ Size = "10MB"; Bytes = 10MB },
+ @{ Size = "50MB"; Bytes = 50MB }
+)
+
+foreach ($chunkConfig in $chunkSizes) {
+ Write-Host "2. Testing chunked upload with $($chunkConfig.Size) chunks..." -ForegroundColor Yellow
+
+ try {
+ $startTime = Get-Date
+
+ # Perform chunked upload
+ $uploadResult = New-MinIOObjectChunked -BucketName $testBucket -Files $testFile -ChunkSize $chunkConfig.Bytes -Verbose
+
+ $endTime = Get-Date
+ $duration = $endTime - $startTime
+ $speedMBps = [math]::Round(($fileInfo.Length / 1MB) / $duration.TotalSeconds, 2)
+
+ Write-Host "SUCCESS: Chunked upload completed!" -ForegroundColor Green
+ Write-Host "Duration: $($duration.ToString('mm\:ss\.fff'))" -ForegroundColor Gray
+ Write-Host "Average speed: $speedMBps MB/s" -ForegroundColor Gray
+ Write-Host ""
+
+ # Display result
+ $uploadResult | Format-Table ObjectName, BucketName, Size, @{
+ Name = "SizeMB"
+ Expression = { [math]::Round($_.Size / 1MB, 2) }
+ }
+
+ # Test chunked download
+ Write-Host "3. Testing chunked download with $($chunkConfig.Size) chunks..." -ForegroundColor Yellow
+
+ $downloadFile = "downloaded-$($fileInfo.Name)"
+
+ try {
+ $downloadStartTime = Get-Date
+
+ # Perform chunked download
+ $downloadResult = Get-MinIOObjectContentChunked -BucketName $testBucket -ObjectName $fileInfo.Name -FilePath $downloadFile -ChunkSize $chunkConfig.Bytes -Force -Verbose
+
+ $downloadEndTime = Get-Date
+ $downloadDuration = $downloadEndTime - $downloadStartTime
+ $downloadSpeedMBps = [math]::Round(($fileInfo.Length / 1MB) / $downloadDuration.TotalSeconds, 2)
+
+ Write-Host "SUCCESS: Chunked download completed!" -ForegroundColor Green
+ Write-Host "Duration: $($downloadDuration.ToString('mm\:ss\.fff'))" -ForegroundColor Gray
+ Write-Host "Average speed: $downloadSpeedMBps MB/s" -ForegroundColor Gray
+
+ # Verify file size
+ $downloadedFileInfo = Get-Item $downloadFile
+ if ($downloadedFileInfo.Length -eq $fileInfo.Length) {
+ Write-Host "SUCCESS: File size verification passed ($($downloadedFileInfo.Length) bytes)" -ForegroundColor Green
+ } else {
+ Write-Host "WARNING: File size mismatch - Original: $($fileInfo.Length), Downloaded: $($downloadedFileInfo.Length)" -ForegroundColor Yellow
+ }
+
+ # Cleanup downloaded file
+ Remove-Item $downloadFile -Force -ErrorAction SilentlyContinue
+
+ } catch {
+ Write-Host "FAILED: Download error - $($_.Exception.Message)" -ForegroundColor Red
+ }
+
+ # Cleanup uploaded file from bucket
+ Write-Host "4. Cleaning up uploaded file..." -ForegroundColor Yellow
+ try {
+ Remove-MinIOObject -BucketName $testBucket -ObjectName $fileInfo.Name -Force -Verbose
+ Write-Host "SUCCESS: Cleanup completed" -ForegroundColor Green
+ } catch {
+ Write-Host "WARNING: Cleanup failed - $($_.Exception.Message)" -ForegroundColor Yellow
+ }
+
+ Write-Host ""
+ Write-Host "--- Test with $($chunkConfig.Size) chunks completed ---" -ForegroundColor Cyan
+ Write-Host ""
+
+ # Only test one chunk size for now to avoid long test times
+ break
+
+ } catch {
+ Write-Host "FAILED: Upload error - $($_.Exception.Message)" -ForegroundColor Red
+ Write-Host "Inner Exception: $($_.Exception.InnerException.Message)" -ForegroundColor Red
+ break
+ }
+}
+
+Write-Host "=== Chunked Test Suite Complete ===" -ForegroundColor Cyan
+Write-Host "✅ Large file chunked upload/download with progress tracking" -ForegroundColor Green
diff --git a/Debug-Test.ps1 b/Debug-Test.ps1
new file mode 100644
index 0000000..ed10379
--- /dev/null
+++ b/Debug-Test.ps1
@@ -0,0 +1,39 @@
+# Debug test for PSMinIO module
+Import-Module ./Module/PSMinIO/PSMinIO.psd1 -Force
+
+Write-Host "=== PSMinIO Debug Test ===" -ForegroundColor Cyan
+
+# Test credentials
+$endpoint = "https://api.s3.gracesolution.info"
+$accessKey = "T34Wg85SAwezUa3sk3m4"
+$secretKey = "PxEmnbQoQJTJsDocSEV6mSSscDpJMiJCayPv93xe"
+
+Write-Host "1. Connecting..." -ForegroundColor Yellow
+try {
+ $connection = Connect-MinIO -Endpoint $endpoint -AccessKey $accessKey -SecretKey $secretKey
+ Write-Host "SUCCESS: Connected to $($connection.EndpointUrl)" -ForegroundColor Green
+
+ # Check if connection is stored in session variable
+ Write-Host "2. Checking session variable..." -ForegroundColor Yellow
+ $sessionConnection = Get-Variable -Name "MinIOConnection" -ErrorAction SilentlyContinue
+ if ($sessionConnection) {
+ Write-Host "SUCCESS: Session variable exists with value type: $($sessionConnection.Value.GetType().Name)" -ForegroundColor Green
+ Write-Host "Session connection endpoint: $($sessionConnection.Value.EndpointUrl)" -ForegroundColor Gray
+ } else {
+ Write-Host "FAILED: Session variable not found" -ForegroundColor Red
+ }
+
+ # Try to manually call Get-MinIOBucket with explicit connection
+ Write-Host "3. Testing with explicit connection..." -ForegroundColor Yellow
+ try {
+ $buckets = Get-MinIOBucket -MinIOConnection $connection
+ Write-Host "SUCCESS: Found $($buckets.Count) buckets with explicit connection" -ForegroundColor Green
+ } catch {
+ Write-Host "FAILED: $($_.Exception.Message)" -ForegroundColor Red
+ }
+
+} catch {
+ Write-Host "FAILED: $($_.Exception.Message)" -ForegroundColor Red
+}
+
+Write-Host "Debug test completed!" -ForegroundColor Cyan
diff --git a/File-Handle-Test.ps1 b/File-Handle-Test.ps1
new file mode 100644
index 0000000..067fa4a
--- /dev/null
+++ b/File-Handle-Test.ps1
@@ -0,0 +1,93 @@
+# Test file handle release
+Import-Module ./Module/PSMinIO/PSMinIO.psd1 -Force
+
+Write-Host "=== File Handle Test ===" -ForegroundColor Cyan
+
+# Test credentials
+$endpoint = "https://api.s3.gracesolution.info"
+$accessKey = "T34Wg85SAwezUa3sk3m4"
+$secretKey = "PxEmnbQoQJTJsDocSEV6mSSscDpJMiJCayPv93xe"
+
+# Connect
+$connection = Connect-MinIO -Endpoint $endpoint -AccessKey $accessKey -SecretKey $secretKey
+$buckets = Get-MinIOBucket
+$testBucket = $buckets[0].Name
+
+Write-Host "Testing file handle release with bucket: $testBucket" -ForegroundColor Yellow
+
+# Test 1: Create file, upload, try to delete immediately
+Write-Host "1. Testing immediate file deletion after upload..." -ForegroundColor Yellow
+$testFile1 = "handle-test-1.txt"
+"Test content 1" | Out-File -FilePath $testFile1 -Encoding UTF8
+
+try {
+ # Upload
+ $result = New-MinIOObject -BucketName $testBucket -Files $testFile1
+ Write-Host "Upload successful" -ForegroundColor Green
+
+ # Try to delete immediately
+ Remove-Item $testFile1 -Force
+ Write-Host "SUCCESS: File deleted immediately after upload" -ForegroundColor Green
+} catch {
+ Write-Host "FAILED: $($_.Exception.Message)" -ForegroundColor Red
+}
+
+# Test 2: Create file, upload, wait a bit, then delete
+Write-Host "2. Testing file deletion after short delay..." -ForegroundColor Yellow
+$testFile2 = "handle-test-2.txt"
+"Test content 2" | Out-File -FilePath $testFile2 -Encoding UTF8
+
+try {
+ # Upload
+ $result = New-MinIOObject -BucketName $testBucket -Files $testFile2
+ Write-Host "Upload successful" -ForegroundColor Green
+
+ # Wait a bit
+ Start-Sleep -Seconds 2
+
+ # Try to delete
+ Remove-Item $testFile2 -Force
+ Write-Host "SUCCESS: File deleted after delay" -ForegroundColor Green
+} catch {
+ Write-Host "FAILED: $($_.Exception.Message)" -ForegroundColor Red
+}
+
+# Test 3: Download and immediate delete
+Write-Host "3. Testing download and immediate delete..." -ForegroundColor Yellow
+$downloadFile = "downloaded-handle-test.txt"
+
+try {
+ # Download
+ $result = Get-MinIOObjectContent -BucketName $testBucket -ObjectName $testFile1 -FilePath $downloadFile -Force
+ Write-Host "Download successful" -ForegroundColor Green
+
+ # Try to delete immediately
+ Remove-Item $downloadFile -Force
+ Write-Host "SUCCESS: Downloaded file deleted immediately" -ForegroundColor Green
+} catch {
+ Write-Host "FAILED: $($_.Exception.Message)" -ForegroundColor Red
+}
+
+# Test 4: Force garbage collection and retry
+Write-Host "4. Testing with garbage collection..." -ForegroundColor Yellow
+$testFile3 = "handle-test-3.txt"
+"Test content 3" | Out-File -FilePath $testFile3 -Encoding UTF8
+
+try {
+ # Upload
+ $result = New-MinIOObject -BucketName $testBucket -Files $testFile3
+ Write-Host "Upload successful" -ForegroundColor Green
+
+ # Force garbage collection
+ [System.GC]::Collect()
+ [System.GC]::WaitForPendingFinalizers()
+ [System.GC]::Collect()
+
+ # Try to delete
+ Remove-Item $testFile3 -Force
+ Write-Host "SUCCESS: File deleted after GC" -ForegroundColor Green
+} catch {
+ Write-Host "FAILED: $($_.Exception.Message)" -ForegroundColor Red
+}
+
+Write-Host "File handle test completed!" -ForegroundColor Cyan
diff --git a/Final-Clean-Test.ps1 b/Final-Clean-Test.ps1
new file mode 100644
index 0000000..c42dec9
--- /dev/null
+++ b/Final-Clean-Test.ps1
@@ -0,0 +1,92 @@
+# Final clean test for PSMinIO module with MinIO 4.0.7
+Import-Module ./Module/PSMinIO/PSMinIO.psd1 -Force
+
+Write-Host "=== PSMinIO Module Final Test ===" -ForegroundColor Cyan
+Write-Host ""
+
+# Test credentials
+$endpoint = "https://api.s3.gracesolution.info"
+$accessKey = "T34Wg85SAwezUa3sk3m4"
+$secretKey = "PxEmnbQoQJTJsDocSEV6mSSscDpJMiJCayPv93xe"
+
+# Test 1: Connection with automatic session variable
+Write-Host "1. Connection Test (with automatic session variable)..." -ForegroundColor Yellow
+try {
+ $connection = Connect-MinIO -Endpoint $endpoint -AccessKey $accessKey -SecretKey $secretKey -Verbose
+ Write-Host "SUCCESS: Connected to $($connection.EndpointUrl)" -ForegroundColor Green
+} catch {
+ Write-Host "FAILED: $($_.Exception.Message)" -ForegroundColor Red
+ exit 1
+}
+
+# Test 2: Bucket Listing (using session variable)
+Write-Host "2. Bucket Listing Test (using session variable)..." -ForegroundColor Yellow
+try {
+ $buckets = Get-MinIOBucket -Verbose
+ Write-Host "SUCCESS: Found $($buckets.Count) buckets" -ForegroundColor Green
+ if ($buckets.Count -gt 0) {
+ $buckets | Format-Table Name, CreationDate
+ }
+} catch {
+ Write-Host "FAILED: $($_.Exception.Message)" -ForegroundColor Red
+}
+
+# Test 3: Bucket Listing (with explicit connection)
+Write-Host "3. Bucket Listing Test (with explicit connection)..." -ForegroundColor Yellow
+try {
+ $buckets2 = Get-MinIOBucket -MinIOConnection $connection -Verbose
+ Write-Host "SUCCESS: Found $($buckets2.Count) buckets with explicit connection" -ForegroundColor Green
+} catch {
+ Write-Host "FAILED: $($_.Exception.Message)" -ForegroundColor Red
+}
+
+# Test 4: Create test bucket if none exist
+if ($buckets.Count -eq 0) {
+ Write-Host "4. Creating Test Bucket..." -ForegroundColor Yellow
+ try {
+ $testBucketName = "psminiotest$(Get-Random -Minimum 1000 -Maximum 9999)"
+ New-MinIOBucket -BucketName $testBucketName -Verbose
+ Write-Host "SUCCESS: Created bucket $testBucketName" -ForegroundColor Green
+ $buckets = Get-MinIOBucket
+ } catch {
+ Write-Host "FAILED: $($_.Exception.Message)" -ForegroundColor Red
+ }
+}
+
+# Test 5: File Upload (if we have buckets)
+if ($buckets.Count -gt 0) {
+ $testBucket = $buckets[0].Name
+ Write-Host "5. File Upload Test to bucket '$testBucket'..." -ForegroundColor Yellow
+
+ # Create test file
+ $testFile = "test-upload.txt"
+ "Test content created at $(Get-Date)" | Out-File -FilePath $testFile -Encoding UTF8
+
+ try {
+ $uploadResult = New-MinIOObject -BucketName $testBucket -Files $testFile -Verbose
+ Write-Host "SUCCESS: Uploaded $testFile" -ForegroundColor Green
+ $uploadResult | Format-Table ObjectName, BucketName, Size
+ } catch {
+ Write-Host "FAILED: $($_.Exception.Message)" -ForegroundColor Red
+ }
+
+ # Test 6: File Download
+ Write-Host "6. File Download Test..." -ForegroundColor Yellow
+ try {
+ $downloadFile = "downloaded-test.txt"
+ $downloadResult = Get-MinIOObjectContent -BucketName $testBucket -ObjectName $testFile -FilePath $downloadFile -Force -Verbose
+ Write-Host "SUCCESS: Downloaded to $($downloadResult.FullName)" -ForegroundColor Green
+ Write-Host "Content: $(Get-Content $downloadFile)" -ForegroundColor Gray
+ } catch {
+ Write-Host "FAILED: $($_.Exception.Message)" -ForegroundColor Red
+ }
+
+ # Cleanup test files
+ @($testFile, $downloadFile) | ForEach-Object {
+ if (Test-Path $_) { Remove-Item $_ -Force }
+ }
+}
+
+Write-Host ""
+Write-Host "=== Test Suite Complete ===" -ForegroundColor Cyan
+Write-Host "✅ MinIO 4.0.7 with clean logging and automatic session management" -ForegroundColor Green
diff --git a/Final-Test.ps1 b/Final-Test.ps1
new file mode 100644
index 0000000..23b6609
--- /dev/null
+++ b/Final-Test.ps1
@@ -0,0 +1,109 @@
+# Final comprehensive test for PSMinIO module
+Import-Module ./Module/PSMinIO/PSMinIO.psd1 -Force
+
+Write-Host "=== PSMinIO Module Test Suite ===" -ForegroundColor Cyan
+Write-Host ""
+
+# Test credentials
+$endpoint = "https://api.s3.gracesolution.info"
+$accessKey = "T34Wg85SAwezUa3sk3m4"
+$secretKey = "PxEmnbQoQJTJsDocSEV6mSSscDpJMiJCayPv93xe"
+
+# Test 1: Connection
+Write-Host "1. Connection Test..." -ForegroundColor Yellow
+try {
+ $connection = Connect-MinIO -Endpoint $endpoint -AccessKey $accessKey -SecretKey $secretKey
+ Write-Host "SUCCESS: Connected to $($connection.EndpointUrl)" -ForegroundColor Green
+} catch {
+ Write-Host "FAILED: $($_.Exception.Message)" -ForegroundColor Red
+ exit 1
+}
+
+# Test 2: Bucket Listing
+Write-Host "2. Bucket Listing Test..." -ForegroundColor Yellow
+try {
+ $buckets = Get-MinIOBucket
+ Write-Host "SUCCESS: Found $($buckets.Count) buckets" -ForegroundColor Green
+ if ($buckets.Count -gt 0) {
+ $buckets | Select-Object Name, CreationDate | Format-Table
+ }
+} catch {
+ Write-Host "FAILED: $($_.Exception.Message)" -ForegroundColor Red
+}
+
+# Test 3: Create test bucket if none exist
+if ($buckets.Count -eq 0) {
+ Write-Host "3. Creating Test Bucket..." -ForegroundColor Yellow
+ try {
+ $testBucketName = "psminiotest$(Get-Random -Minimum 1000 -Maximum 9999)"
+ New-MinIOBucket -BucketName $testBucketName
+ Write-Host "SUCCESS: Created bucket $testBucketName" -ForegroundColor Green
+ $buckets = Get-MinIOBucket
+ } catch {
+ Write-Host "FAILED: $($_.Exception.Message)" -ForegroundColor Red
+ }
+}
+
+# Test 4: File Upload
+if ($buckets.Count -gt 0) {
+ $testBucket = $buckets[0].Name
+ Write-Host "4. File Upload Test to bucket '$testBucket'..." -ForegroundColor Yellow
+
+ # Create test file
+ $testFile = "test-upload.txt"
+ "Test content created at $(Get-Date)" | Out-File -FilePath $testFile -Encoding UTF8
+
+ try {
+ $uploadResult = New-MinIOObject -BucketName $testBucket -Files $testFile
+ Write-Host "SUCCESS: Uploaded $testFile" -ForegroundColor Green
+ $uploadResult | Format-Table ObjectName, BucketName, Size
+ } catch {
+ Write-Host "FAILED: $($_.Exception.Message)" -ForegroundColor Red
+ }
+
+ # Test 5: File Download
+ Write-Host "5. File Download Test..." -ForegroundColor Yellow
+ try {
+ $downloadFile = "downloaded-test.txt"
+ $downloadResult = Get-MinIOObjectContent -BucketName $testBucket -ObjectName $testFile -FilePath $downloadFile -Force
+ Write-Host "SUCCESS: Downloaded to $($downloadResult.FullName)" -ForegroundColor Green
+ Write-Host "Content: $(Get-Content $downloadFile)" -ForegroundColor Gray
+ } catch {
+ Write-Host "FAILED: $($_.Exception.Message)" -ForegroundColor Red
+ }
+
+ # Test 6: Chunked Upload
+ Write-Host "6. Chunked Upload Test..." -ForegroundColor Yellow
+ try {
+ $chunkedFile = "chunked-test.txt"
+ $content = @()
+ for ($i = 1; $i -le 100; $i++) {
+ $content += "Line $i of chunked test file created at $(Get-Date)"
+ }
+ $content | Out-File -FilePath $chunkedFile -Encoding UTF8
+
+ $chunkedResult = New-MinIOObjectChunked -BucketName $testBucket -Files $chunkedFile -ChunkSize 1KB
+ Write-Host "SUCCESS: Chunked upload completed" -ForegroundColor Green
+ $chunkedResult | Format-Table ObjectName, BucketName, Size
+ } catch {
+ Write-Host "FAILED: $($_.Exception.Message)" -ForegroundColor Red
+ }
+
+ # Test 7: Chunked Download
+ Write-Host "7. Chunked Download Test..." -ForegroundColor Yellow
+ try {
+ $chunkedDownload = "chunked-downloaded.txt"
+ $chunkedDownloadResult = Get-MinIOObjectContentChunked -BucketName $testBucket -ObjectName $chunkedFile -FilePath $chunkedDownload -ChunkSize 1KB -Force
+ Write-Host "SUCCESS: Chunked download completed to $($chunkedDownloadResult.FullName)" -ForegroundColor Green
+ } catch {
+ Write-Host "FAILED: $($_.Exception.Message)" -ForegroundColor Red
+ }
+
+ # Cleanup test files
+ @($testFile, $downloadFile, $chunkedFile, $chunkedDownload) | ForEach-Object {
+ if (Test-Path $_) { Remove-Item $_ -Force }
+ }
+}
+
+Write-Host ""
+Write-Host "=== Test Suite Complete ===" -ForegroundColor Cyan
diff --git a/Large-File-Test.ps1 b/Large-File-Test.ps1
new file mode 100644
index 0000000..aa41b1f
--- /dev/null
+++ b/Large-File-Test.ps1
@@ -0,0 +1,105 @@
+# Large file chunked upload test
+Import-Module ./Module/PSMinIO/PSMinIO.psd1 -Force
+
+Write-Host "=== Large File Chunked Upload Test ===" -ForegroundColor Cyan
+Write-Host ""
+
+# Test file
+$testFile = "C:\Users\gsadmin\Downloads\windows_10_enterprise_ltsc_2021_x64\sources\install.wim"
+
+# Check file
+if (Test-Path $testFile) {
+ $fileInfo = Get-Item $testFile
+ Write-Host "File: $($fileInfo.Name)" -ForegroundColor Yellow
+ Write-Host "Size: $([math]::Round($fileInfo.Length / 1GB, 2)) GB ($([math]::Round($fileInfo.Length / 1MB, 0)) MB)" -ForegroundColor Yellow
+} else {
+ Write-Host "File not found!" -ForegroundColor Red
+ exit 1
+}
+
+# Connect
+Write-Host "Connecting..." -ForegroundColor Yellow
+$connection = Connect-MinIO -Endpoint "https://api.s3.gracesolution.info" -AccessKey "T34Wg85SAwezUa3sk3m4" -SecretKey "PxEmnbQoQJTJsDocSEV6mSSscDpJMiJCayPv93xe"
+
+# Get bucket
+$buckets = Get-MinIOBucket
+$testBucket = $buckets[0].Name
+Write-Host "Using bucket: $testBucket" -ForegroundColor Yellow
+Write-Host ""
+
+# Test chunked upload with 50MB chunks
+Write-Host "Starting chunked upload with 50MB chunks..." -ForegroundColor Yellow
+Write-Host "This may take several minutes for a 3.7GB file..." -ForegroundColor Gray
+
+try {
+ $startTime = Get-Date
+
+ $result = New-MinIOObjectChunked -BucketName $testBucket -Files $testFile -ChunkSize 50MB -Verbose
+
+ $endTime = Get-Date
+ $duration = $endTime - $startTime
+ $speedMBps = [math]::Round(($fileInfo.Length / 1MB) / $duration.TotalSeconds, 2)
+
+ Write-Host ""
+ Write-Host "SUCCESS: Chunked upload completed!" -ForegroundColor Green
+ Write-Host "Duration: $($duration.ToString('hh\:mm\:ss'))" -ForegroundColor Gray
+ Write-Host "Average speed: $speedMBps MB/s" -ForegroundColor Gray
+ Write-Host ""
+
+ $result | Format-Table ObjectName, BucketName, @{Name="SizeGB";Expression={[math]::Round($_.Size/1GB,2)}}
+
+ # Test chunked download of first 100MB only (to save time)
+ Write-Host "Testing partial chunked download (first 100MB)..." -ForegroundColor Yellow
+
+ $downloadFile = "partial-download-test.wim"
+
+ try {
+ $downloadStartTime = Get-Date
+
+ # Download with 10MB chunks
+ $downloadResult = Get-MinIOObjectContentChunked -BucketName $testBucket -ObjectName $fileInfo.Name -FilePath $downloadFile -ChunkSize 10MB -Force -Verbose
+
+ $downloadEndTime = Get-Date
+ $downloadDuration = $downloadEndTime - $downloadStartTime
+
+ Write-Host ""
+ Write-Host "SUCCESS: Chunked download completed!" -ForegroundColor Green
+ Write-Host "Duration: $($downloadDuration.ToString('hh\:mm\:ss'))" -ForegroundColor Gray
+
+ # Check downloaded file size
+ $downloadedFileInfo = Get-Item $downloadFile
+ Write-Host "Downloaded: $([math]::Round($downloadedFileInfo.Length / 1GB, 2)) GB" -ForegroundColor Gray
+
+ if ($downloadedFileInfo.Length -eq $fileInfo.Length) {
+ Write-Host "SUCCESS: File size verification passed" -ForegroundColor Green
+ } else {
+ Write-Host "INFO: Partial download completed (expected for large files)" -ForegroundColor Yellow
+ }
+
+ # Cleanup downloaded file
+ Remove-Item $downloadFile -Force -ErrorAction SilentlyContinue
+
+ } catch {
+ Write-Host "Download test failed: $($_.Exception.Message)" -ForegroundColor Red
+ }
+
+ # Cleanup uploaded file
+ Write-Host ""
+ Write-Host "Cleaning up uploaded file..." -ForegroundColor Yellow
+ try {
+ Remove-MinIOObject -BucketName $testBucket -ObjectName $fileInfo.Name -Force
+ Write-Host "SUCCESS: Cleanup completed" -ForegroundColor Green
+ } catch {
+ Write-Host "WARNING: Cleanup failed - $($_.Exception.Message)" -ForegroundColor Yellow
+ }
+
+} catch {
+ Write-Host ""
+ Write-Host "FAILED: $($_.Exception.Message)" -ForegroundColor Red
+ if ($_.Exception.InnerException) {
+ Write-Host "Inner Exception: $($_.Exception.InnerException.Message)" -ForegroundColor Red
+ }
+}
+
+Write-Host ""
+Write-Host "=== Large File Test Complete ===" -ForegroundColor Cyan
diff --git a/Module/PSMinIO/bin/CommunityToolkit.HighPerformance.dll b/Module/PSMinIO/bin/CommunityToolkit.HighPerformance.dll
new file mode 100644
index 0000000..a8e240e
Binary files /dev/null and b/Module/PSMinIO/bin/CommunityToolkit.HighPerformance.dll differ
diff --git a/Module/PSMinIO/bin/Microsoft.Bcl.HashCode.dll b/Module/PSMinIO/bin/Microsoft.Bcl.HashCode.dll
new file mode 100644
index 0000000..0de0f25
Binary files /dev/null and b/Module/PSMinIO/bin/Microsoft.Bcl.HashCode.dll differ
diff --git a/Module/PSMinIO/bin/Minio.dll b/Module/PSMinIO/bin/Minio.dll
index c2c02da..5ae010a 100644
Binary files a/Module/PSMinIO/bin/Minio.dll and b/Module/PSMinIO/bin/Minio.dll differ
diff --git a/Module/PSMinIO/bin/Newtonsoft.Json.dll b/Module/PSMinIO/bin/Newtonsoft.Json.dll
new file mode 100644
index 0000000..1ffeabe
Binary files /dev/null and b/Module/PSMinIO/bin/Newtonsoft.Json.dll differ
diff --git a/Module/PSMinIO/bin/PSMinIO.dll b/Module/PSMinIO/bin/PSMinIO.dll
index 43eab57..65c8da0 100644
Binary files a/Module/PSMinIO/bin/PSMinIO.dll and b/Module/PSMinIO/bin/PSMinIO.dll differ
diff --git a/Module/PSMinIO/bin/PSMinIO.pdb b/Module/PSMinIO/bin/PSMinIO.pdb
index 13752e4..266d540 100644
Binary files a/Module/PSMinIO/bin/PSMinIO.pdb and b/Module/PSMinIO/bin/PSMinIO.pdb differ
diff --git a/Module/PSMinIO/bin/PSMinIO.psd1 b/Module/PSMinIO/bin/PSMinIO.psd1
new file mode 100644
index 0000000..c252b91
--- /dev/null
+++ b/Module/PSMinIO/bin/PSMinIO.psd1
@@ -0,0 +1,139 @@
+@{
+ # Script module or binary module file associated with this manifest.
+ RootModule = 'bin\PSMinIO.dll'
+
+ # Version number of this module.
+ ModuleVersion = '2025.07.10.1200'
+
+ # Supported PSEditions
+ CompatiblePSEditions = @('Desktop', 'Core')
+
+ # ID used to uniquely identify this module
+ GUID = 'a1b2c3d4-e5f6-7890-abcd-ef1234567890'
+
+ # Author of this module
+ Author = 'PSMinIO Team'
+
+ # Company or vendor of this module
+ CompanyName = 'PSMinIO'
+
+ # Copyright statement for this module
+ Copyright = '(c) 2025 PSMinIO Team. All rights reserved.'
+
+ # Description of the functionality provided by this module
+ Description = 'A PowerShell module for MinIO object storage operations built on the Minio .NET SDK'
+
+ # Minimum version of the PowerShell engine required by this module
+ PowerShellVersion = '5.1'
+
+ # Name of the PowerShell host required by this module
+ # PowerShellHostName = ''
+
+ # Minimum version of the PowerShell host required by this module
+ # PowerShellHostVersion = ''
+
+ # Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
+ DotNetFrameworkVersion = '4.7.2'
+
+ # Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
+ CLRVersion = '4.0'
+
+ # Processor architecture (None, X86, Amd64) required by this module
+ # ProcessorArchitecture = ''
+
+ # Modules that must be imported into the global environment prior to importing this module
+ # RequiredModules = @()
+
+ # Assemblies that must be loaded prior to importing this module
+ RequiredAssemblies = @('bin\PSMinIO.dll', 'bin\Minio.dll')
+
+ # Script files (.ps1) that are run in the caller's environment prior to importing this module.
+ # ScriptsToProcess = @()
+
+ # Type files (.ps1xml) to be loaded when importing this module
+ TypesToProcess = @('types\PSMinIO.Types.ps1xml')
+
+ # Format files (.ps1xml) to be loaded when importing this module
+ FormatsToProcess = @('types\PSMinIO.Format.ps1xml')
+
+ # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
+ # NestedModules = @()
+
+ # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
+ FunctionsToExport = @()
+
+ # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
+ CmdletsToExport = @(
+ 'Connect-MinIO',
+ 'Get-MinIOBucket',
+ 'New-MinIOBucket',
+ 'Remove-MinIOBucket',
+ 'Test-MinIOBucketExists',
+ 'Get-MinIOObject',
+ 'New-MinIOObject',
+ 'New-MinIOObjectChunked',
+ 'New-MinIOFolder',
+ 'Get-MinIOObjectContent',
+ 'Get-MinIOObjectContentChunked',
+ 'Remove-MinIOObject',
+ 'Get-MinIOBucketPolicy',
+ 'Set-MinIOBucketPolicy',
+ 'Get-MinIOStats'
+ )
+
+ # Variables to export from this module
+ VariablesToExport = @()
+
+ # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
+ AliasesToExport = @()
+
+ # DSC resources to export from this module
+ # DscResourcesToExport = @()
+
+ # List of all modules packaged with this module
+ # ModuleList = @()
+
+ # List of all files packaged with this module
+ FileList = @(
+ 'PSMinIO.psd1',
+ 'bin\PSMinIO.dll',
+ 'bin\Minio.dll',
+ 'types\PSMinIO.Types.ps1xml',
+ 'types\PSMinIO.Format.ps1xml'
+ )
+
+ # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
+ PrivateData = @{
+ PSData = @{
+ # Tags applied to this module. These help with module discovery in online galleries.
+ Tags = @('MinIO', 'ObjectStorage', 'S3', 'Cloud', 'Storage', 'Bucket', 'Object')
+
+ # A URL to the license for this module.
+ LicenseUri = 'https://github.com/PSMinIO/PSMinIO/blob/main/LICENSE'
+
+ # A URL to the main website for this project.
+ ProjectUri = 'https://github.com/PSMinIO/PSMinIO'
+
+ # A URL to an icon representing this module.
+ # IconUri = ''
+
+ # ReleaseNotes of this module
+ ReleaseNotes = 'Initial release of PSMinIO module with comprehensive MinIO object storage operations support.'
+
+ # Prerelease string of this module
+ # Prerelease = ''
+
+ # Flag to indicate whether the module requires explicit user acceptance for install/update/save
+ # RequireLicenseAcceptance = $false
+
+ # External dependent modules of this module
+ # ExternalModuleDependencies = @()
+ }
+ }
+
+ # HelpInfo URI of this module
+ # HelpInfoURI = ''
+
+ # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
+ # DefaultCommandPrefix = ''
+}
diff --git a/Module/PSMinIO/bin/System.Memory.dll b/Module/PSMinIO/bin/System.Memory.dll
new file mode 100644
index 0000000..1e6aef8
Binary files /dev/null and b/Module/PSMinIO/bin/System.Memory.dll differ
diff --git a/Module/PSMinIO/bin/System.Reactive.dll b/Module/PSMinIO/bin/System.Reactive.dll
new file mode 100644
index 0000000..ec69a7f
Binary files /dev/null and b/Module/PSMinIO/bin/System.Reactive.dll differ
diff --git a/Module/PSMinIO/bin/System.Runtime.CompilerServices.Unsafe.dll b/Module/PSMinIO/bin/System.Runtime.CompilerServices.Unsafe.dll
new file mode 100644
index 0000000..b17135b
Binary files /dev/null and b/Module/PSMinIO/bin/System.Runtime.CompilerServices.Unsafe.dll differ
diff --git a/Module/PSMinIO/bin/System.Text.Json.dll b/Module/PSMinIO/bin/System.Text.Json.dll
new file mode 100644
index 0000000..802d8bd
Binary files /dev/null and b/Module/PSMinIO/bin/System.Text.Json.dll differ
diff --git a/Module/PSMinIO/bin/System.Threading.Tasks.Extensions.dll b/Module/PSMinIO/bin/System.Threading.Tasks.Extensions.dll
new file mode 100644
index 0000000..dfab234
Binary files /dev/null and b/Module/PSMinIO/bin/System.Threading.Tasks.Extensions.dll differ
diff --git a/PSMinIO.csproj b/PSMinIO.csproj
index b375560..f9179e1 100644
--- a/PSMinIO.csproj
+++ b/PSMinIO.csproj
@@ -35,7 +35,7 @@
-
+
diff --git a/Quick-Test.ps1 b/Quick-Test.ps1
new file mode 100644
index 0000000..9e6f0b9
--- /dev/null
+++ b/Quick-Test.ps1
@@ -0,0 +1,32 @@
+# Quick test for PSMinIO module
+Import-Module ./Module/PSMinIO/PSMinIO.psd1 -Force
+
+Write-Host "=== Quick PSMinIO Test ===" -ForegroundColor Cyan
+
+# Test credentials
+$endpoint = "https://api.s3.gracesolution.info"
+$accessKey = "T34Wg85SAwezUa3sk3m4"
+$secretKey = "PxEmnbQoQJTJsDocSEV6mSSscDpJMiJCayPv93xe"
+
+Write-Host "1. Connecting..." -ForegroundColor Yellow
+try {
+ $connection = Connect-MinIO -Endpoint $endpoint -AccessKey $accessKey -SecretKey $secretKey
+ Write-Host "SUCCESS: Connected to $($connection.EndpointUrl)" -ForegroundColor Green
+} catch {
+ Write-Host "FAILED: $($_.Exception.Message)" -ForegroundColor Red
+ exit 1
+}
+
+Write-Host "2. Testing bucket listing..." -ForegroundColor Yellow
+try {
+ $buckets = Get-MinIOBucket
+ Write-Host "SUCCESS: Found $($buckets.Count) buckets" -ForegroundColor Green
+ if ($buckets.Count -gt 0) {
+ $buckets | Format-Table Name, CreationDate
+ }
+} catch {
+ Write-Host "FAILED: $($_.Exception.Message)" -ForegroundColor Red
+ Write-Host "Inner Exception: $($_.Exception.InnerException.Message)" -ForegroundColor Red
+}
+
+Write-Host "Test completed!" -ForegroundColor Cyan
diff --git a/Session-Debug.ps1 b/Session-Debug.ps1
new file mode 100644
index 0000000..54fb022
--- /dev/null
+++ b/Session-Debug.ps1
@@ -0,0 +1,40 @@
+# Debug session variable issue
+Import-Module ./Module/PSMinIO/PSMinIO.psd1 -Force
+
+Write-Host "=== Session Variable Debug ===" -ForegroundColor Cyan
+
+# Test credentials
+$endpoint = "https://api.s3.gracesolution.info"
+$accessKey = "T34Wg85SAwezUa3sk3m4"
+$secretKey = "PxEmnbQoQJTJsDocSEV6mSSscDpJMiJCayPv93xe"
+
+Write-Host "1. Before connection - checking variables..." -ForegroundColor Yellow
+Get-Variable -Name "*MinIO*" -Scope Global -ErrorAction SilentlyContinue | ForEach-Object {
+ Write-Host "Found: $($_.Name) = $($_.Value)" -ForegroundColor Gray
+}
+
+Write-Host "2. Connecting..." -ForegroundColor Yellow
+$connection = Connect-MinIO -Endpoint $endpoint -AccessKey $accessKey -SecretKey $secretKey
+
+Write-Host "3. After connection - checking variables..." -ForegroundColor Yellow
+Get-Variable -Name "*MinIO*" -Scope Global -ErrorAction SilentlyContinue | ForEach-Object {
+ Write-Host "Found: $($_.Name) = $($_.Value)" -ForegroundColor Gray
+}
+
+Write-Host "4. Checking specific variable..." -ForegroundColor Yellow
+try {
+ $var = Get-Variable -Name "MinIOConnection" -Scope Global -ErrorAction Stop
+ Write-Host "SUCCESS: Variable exists with value: $($var.Value)" -ForegroundColor Green
+} catch {
+ Write-Host "FAILED: Variable not found: $($_.Exception.Message)" -ForegroundColor Red
+}
+
+Write-Host "5. Testing Get-MinIOBucket with verbose..." -ForegroundColor Yellow
+try {
+ $buckets = Get-MinIOBucket -Verbose
+ Write-Host "SUCCESS: Found $($buckets.Count) buckets" -ForegroundColor Green
+} catch {
+ Write-Host "FAILED: $($_.Exception.Message)" -ForegroundColor Red
+}
+
+Write-Host "Debug completed!" -ForegroundColor Cyan
diff --git a/Session-Test.ps1 b/Session-Test.ps1
new file mode 100644
index 0000000..7c64386
--- /dev/null
+++ b/Session-Test.ps1
@@ -0,0 +1,48 @@
+# Session variable test for PSMinIO module
+Import-Module ./Module/PSMinIO/PSMinIO.psd1 -Force
+
+Write-Host "=== Session Variable Test ===" -ForegroundColor Cyan
+
+# Test credentials
+$endpoint = "https://api.s3.gracesolution.info"
+$accessKey = "T34Wg85SAwezUa3sk3m4"
+$secretKey = "PxEmnbQoQJTJsDocSEV6mSSscDpJMiJCayPv93xe"
+
+Write-Host "1. Before connection - checking existing variables..." -ForegroundColor Yellow
+Get-Variable -Name "*MinIO*" -ErrorAction SilentlyContinue | ForEach-Object {
+ Write-Host "Found variable: $($_.Name) = $($_.Value)" -ForegroundColor Gray
+}
+
+Write-Host "2. Connecting with verbose output..." -ForegroundColor Yellow
+try {
+ $connection = Connect-MinIO -Endpoint $endpoint -AccessKey $accessKey -SecretKey $secretKey -Verbose
+ Write-Host "SUCCESS: Connected" -ForegroundColor Green
+
+ Write-Host "3. After connection - checking variables..." -ForegroundColor Yellow
+ Get-Variable -Name "*MinIO*" -ErrorAction SilentlyContinue | ForEach-Object {
+ Write-Host "Found variable: $($_.Name) = $($_.Value)" -ForegroundColor Gray
+ }
+
+ # Try to manually set the session variable
+ Write-Host "4. Manually setting session variable..." -ForegroundColor Yellow
+ Set-Variable -Name "MinIOConnection" -Value $connection -Scope Global
+
+ Write-Host "5. After manual set - checking variables..." -ForegroundColor Yellow
+ Get-Variable -Name "*MinIO*" -ErrorAction SilentlyContinue | ForEach-Object {
+ Write-Host "Found variable: $($_.Name) = $($_.Value)" -ForegroundColor Gray
+ }
+
+ # Now try Get-MinIOBucket without explicit connection
+ Write-Host "6. Testing Get-MinIOBucket without explicit connection..." -ForegroundColor Yellow
+ try {
+ $buckets = Get-MinIOBucket -Verbose
+ Write-Host "SUCCESS: Found $($buckets.Count) buckets" -ForegroundColor Green
+ } catch {
+ Write-Host "FAILED: $($_.Exception.Message)" -ForegroundColor Red
+ }
+
+} catch {
+ Write-Host "FAILED: $($_.Exception.Message)" -ForegroundColor Red
+}
+
+Write-Host "Session test completed!" -ForegroundColor Cyan
diff --git a/Simple-Chunked-Test.ps1 b/Simple-Chunked-Test.ps1
new file mode 100644
index 0000000..29fa95b
--- /dev/null
+++ b/Simple-Chunked-Test.ps1
@@ -0,0 +1,48 @@
+# Simple chunked upload test
+Import-Module ./Module/PSMinIO/PSMinIO.psd1 -Force
+
+Write-Host "=== Simple Chunked Test ===" -ForegroundColor Cyan
+
+# Test file
+$testFile = "C:\Users\gsadmin\Downloads\windows_10_enterprise_ltsc_2021_x64\sources\install.wim"
+
+# Check file
+if (Test-Path $testFile) {
+ $fileInfo = Get-Item $testFile
+ Write-Host "File found: $($fileInfo.Name)" -ForegroundColor Green
+ Write-Host "Size: $([math]::Round($fileInfo.Length / 1GB, 2)) GB" -ForegroundColor Yellow
+} else {
+ Write-Host "File not found!" -ForegroundColor Red
+ exit 1
+}
+
+# Connect
+Write-Host "Connecting..." -ForegroundColor Yellow
+$connection = Connect-MinIO -Endpoint "https://api.s3.gracesolution.info" -AccessKey "T34Wg85SAwezUa3sk3m4" -SecretKey "PxEmnbQoQJTJsDocSEV6mSSscDpJMiJCayPv93xe"
+
+# Get bucket
+$buckets = Get-MinIOBucket
+$testBucket = $buckets[0].Name
+Write-Host "Using bucket: $testBucket" -ForegroundColor Yellow
+
+# Test chunked upload with 50MB chunks
+Write-Host "Starting chunked upload with 50MB chunks..." -ForegroundColor Yellow
+try {
+ $startTime = Get-Date
+ $result = New-MinIOObjectChunked -BucketName $testBucket -Files $testFile -ChunkSize 50MB -Verbose
+ $endTime = Get-Date
+
+ $duration = $endTime - $startTime
+ $speedMBps = [math]::Round(($fileInfo.Length / 1MB) / $duration.TotalSeconds, 2)
+
+ Write-Host "SUCCESS!" -ForegroundColor Green
+ Write-Host "Duration: $($duration.ToString('hh\:mm\:ss'))" -ForegroundColor Gray
+ Write-Host "Speed: $speedMBps MB/s" -ForegroundColor Gray
+
+ $result | Format-Table ObjectName, BucketName, @{Name="SizeGB";Expression={[math]::Round($_.Size/1GB,2)}}
+
+} catch {
+ Write-Host "FAILED: $($_.Exception.Message)" -ForegroundColor Red
+}
+
+Write-Host "Test completed!" -ForegroundColor Cyan
diff --git a/Simple-Test.ps1 b/Simple-Test.ps1
new file mode 100644
index 0000000..3851e97
--- /dev/null
+++ b/Simple-Test.ps1
@@ -0,0 +1,34 @@
+# Simple test script for PSMinIO module
+Import-Module ./Module/PSMinIO/PSMinIO.psd1 -Force
+
+Write-Host "=== Testing PSMinIO Module ===" -ForegroundColor Cyan
+
+# Test credentials
+$endpoint = "https://api.s3.gracesolution.info"
+$accessKey = "T34Wg85SAwezUa3sk3m4"
+$secretKey = "PxEmnbQoQJTJsDocSEV6mSSscDpJMiJCayPv93xe"
+
+# Test 1: Connection
+Write-Host "1. Testing Connection..." -ForegroundColor Yellow
+try {
+ $connection = Connect-MinIO -Endpoint $endpoint -AccessKey $accessKey -SecretKey $secretKey
+ Write-Host "✓ Connection successful" -ForegroundColor Green
+ Write-Host " Endpoint: $($connection.EndpointUrl)" -ForegroundColor Gray
+} catch {
+ Write-Host "✗ Connection failed: $($_.Exception.Message)" -ForegroundColor Red
+ exit 1
+}
+
+# Test 2: Bucket Listing
+Write-Host "2. Testing Bucket Listing..." -ForegroundColor Yellow
+try {
+ $buckets = Get-MinIOBucket
+ Write-Host "✓ Found $($buckets.Count) buckets" -ForegroundColor Green
+ if ($buckets.Count -gt 0) {
+ $buckets | Select-Object -First 3 | Format-Table Name, CreationDate
+ }
+} catch {
+ Write-Host "✗ Bucket listing failed: $($_.Exception.Message)" -ForegroundColor Red
+}
+
+Write-Host "Tests completed!" -ForegroundColor Cyan
diff --git a/Test-PSMinIO.ps1 b/Test-PSMinIO.ps1
new file mode 100644
index 0000000..acf92d7
--- /dev/null
+++ b/Test-PSMinIO.ps1
@@ -0,0 +1,107 @@
+# Test script for PSMinIO module
+Import-Module ./Module/PSMinIO/PSMinIO.psd1 -Force
+
+Write-Host "=== Testing PSMinIO Module ===" -ForegroundColor Cyan
+Write-Host ""
+
+# Test credentials
+$endpoint = "https://api.s3.gracesolution.info"
+$accessKey = "T34Wg85SAwezUa3sk3m4"
+$secretKey = "PxEmnbQoQJTJsDocSEV6mSSscDpJMiJCayPv93xe"
+
+# Test 1: Connection
+Write-Host "1. Testing Connection..." -ForegroundColor Yellow
+try {
+ $connection = Connect-MinIO -Endpoint $endpoint -AccessKey $accessKey -SecretKey $secretKey -TestConnection
+ Write-Host "✓ Connection successful" -ForegroundColor Green
+ Write-Host " Endpoint: $($connection.EndpointUrl)" -ForegroundColor Gray
+} catch {
+ Write-Host "✗ Connection failed: $($_.Exception.Message)" -ForegroundColor Red
+ exit 1
+}
+Write-Host ""
+
+# Test 2: Bucket Listing
+Write-Host "2. Testing Bucket Listing..." -ForegroundColor Yellow
+try {
+ $buckets = Get-MinIOBucket
+ Write-Host "✓ Found $($buckets.Count) buckets" -ForegroundColor Green
+ if ($buckets.Count -gt 0) {
+ $buckets | Select-Object -First 3 | Format-Table Name, CreationDate, @{Name="Size";Expression={$_.SizeFormatted}}
+ }
+} catch {
+ Write-Host "✗ Bucket listing failed: $($_.Exception.Message)" -ForegroundColor Red
+}
+Write-Host ""
+
+# Test 3: Create test file for upload
+Write-Host "3. Creating test file..." -ForegroundColor Yellow
+$testFile = "test-upload.txt"
+$testContent = "This is a test file created at $(Get-Date) for PSMinIO testing."
+Set-Content -Path $testFile -Value $testContent
+Write-Host "✓ Created test file: $testFile" -ForegroundColor Green
+Write-Host ""
+
+# Test 4: File Upload (if we have buckets)
+if ($buckets -and $buckets.Count -gt 0) {
+ $testBucket = $buckets[0].Name
+ Write-Host "4. Testing File Upload to bucket '$testBucket'..." -ForegroundColor Yellow
+ try {
+ $uploadResult = New-MinIOObject -BucketName $testBucket -Files $testFile
+ Write-Host "✓ File upload successful" -ForegroundColor Green
+ $uploadResult | Format-Table ObjectName, BucketName, Size
+ } catch {
+ Write-Host "✗ File upload failed: $($_.Exception.Message)" -ForegroundColor Red
+ }
+ Write-Host ""
+
+ # Test 5: File Download
+ Write-Host "5. Testing File Download..." -ForegroundColor Yellow
+ $downloadFile = "downloaded-test.txt"
+ try {
+ $downloadResult = Get-MinIOObjectContent -BucketName $testBucket -ObjectName $testFile -FilePath $downloadFile -Force
+ Write-Host "✓ File download successful" -ForegroundColor Green
+ Write-Host " Downloaded to: $($downloadResult.FullName)" -ForegroundColor Gray
+ Write-Host " Content: $(Get-Content $downloadFile)" -ForegroundColor Gray
+ } catch {
+ Write-Host "✗ File download failed: $($_.Exception.Message)" -ForegroundColor Red
+ }
+ Write-Host ""
+
+ # Test 6: Chunked Upload
+ Write-Host "6. Testing Chunked Upload..." -ForegroundColor Yellow
+ $chunkedFile = "chunked-test.txt"
+ $chunkedContent = ("This is a chunked upload test file created at $(Get-Date).`n") * 100
+ Set-Content -Path $chunkedFile -Value $chunkedContent
+ try {
+ $chunkedResult = New-MinIOObjectChunked -BucketName $testBucket -Files $chunkedFile -ChunkSize 1KB
+ Write-Host "✓ Chunked upload successful" -ForegroundColor Green
+ $chunkedResult | Format-Table ObjectName, BucketName, Size
+ } catch {
+ Write-Host "✗ Chunked upload failed: $($_.Exception.Message)" -ForegroundColor Red
+ }
+ Write-Host ""
+
+ # Test 7: Chunked Download
+ Write-Host "7. Testing Chunked Download..." -ForegroundColor Yellow
+ $chunkedDownload = "chunked-downloaded.txt"
+ try {
+ $chunkedDownloadResult = Get-MinIOObjectContentChunked -BucketName $testBucket -ObjectName $chunkedFile -FilePath $chunkedDownload -ChunkSize 1KB -Force
+ Write-Host "✓ Chunked download successful" -ForegroundColor Green
+ Write-Host " Downloaded to: $($chunkedDownloadResult.FullName)" -ForegroundColor Gray
+ } catch {
+ Write-Host "✗ Chunked download failed: $($_.Exception.Message)" -ForegroundColor Red
+ }
+} else {
+ Write-Host "4-7. Skipping upload/download tests - no buckets available" -ForegroundColor Yellow
+}
+
+Write-Host ""
+Write-Host "=== Test Summary ===" -ForegroundColor Cyan
+Write-Host "All tests completed. Check results above." -ForegroundColor White
+
+# Cleanup
+if (Test-Path $testFile) { Remove-Item $testFile -Force }
+if (Test-Path $downloadFile) { Remove-Item $downloadFile -Force }
+if (Test-Path $chunkedFile) { Remove-Item $chunkedFile -Force }
+if (Test-Path $chunkedDownload) { Remove-Item $chunkedDownload -Force }
diff --git a/Verbose-Test.ps1 b/Verbose-Test.ps1
new file mode 100644
index 0000000..6a91896
--- /dev/null
+++ b/Verbose-Test.ps1
@@ -0,0 +1,27 @@
+# Verbose test for PSMinIO module
+Import-Module ./Module/PSMinIO/PSMinIO.psd1 -Force
+
+Write-Host "=== Verbose PSMinIO Test ===" -ForegroundColor Cyan
+
+# Test credentials
+$endpoint = "https://api.s3.gracesolution.info"
+$accessKey = "T34Wg85SAwezUa3sk3m4"
+$secretKey = "PxEmnbQoQJTJsDocSEV6mSSscDpJMiJCayPv93xe"
+
+Write-Host "1. Connecting with verbose..." -ForegroundColor Yellow
+try {
+ $connection = Connect-MinIO -Endpoint $endpoint -AccessKey $accessKey -SecretKey $secretKey -Verbose
+ Write-Host "SUCCESS: Connected to $($connection.EndpointUrl)" -ForegroundColor Green
+
+ Write-Host "2. Testing bucket listing with verbose..." -ForegroundColor Yellow
+ $buckets = Get-MinIOBucket -Verbose
+ Write-Host "SUCCESS: Found $($buckets.Count) buckets" -ForegroundColor Green
+ if ($buckets.Count -gt 0) {
+ $buckets | Format-Table Name, CreationDate
+ }
+} catch {
+ Write-Host "FAILED: $($_.Exception.Message)" -ForegroundColor Red
+ Write-Host "Inner Exception: $($_.Exception.InnerException.Message)" -ForegroundColor Red
+}
+
+Write-Host "Test completed!" -ForegroundColor Cyan
diff --git a/src/Cmdlets/ConnectMinIOCmdlet.cs b/src/Cmdlets/ConnectMinIOCmdlet.cs
index 88b8511..cc43e37 100644
--- a/src/Cmdlets/ConnectMinIOCmdlet.cs
+++ b/src/Cmdlets/ConnectMinIOCmdlet.cs
@@ -57,11 +57,11 @@ namespace PSMinIO.Cmdlets
public SwitchParameter TestConnection { get; set; }
///
- /// Store the connection in a session variable for reuse
+ /// Store the connection in a session variable for reuse (default: MinIOConnection)
///
[Parameter]
[ValidateNotNullOrEmpty]
- public string? SessionVariable { get; set; }
+ public string SessionVariable { get; set; } = "MinIOConnection";
///
/// Skip SSL certificate validation (use with caution)
@@ -69,18 +69,6 @@ namespace PSMinIO.Cmdlets
[Parameter]
public SwitchParameter SkipCertificateValidation { get; set; }
- ///
- /// Accept self-signed certificates
- ///
- [Parameter]
- public SwitchParameter AcceptSelfSignedCertificates { get; set; }
-
- ///
- /// Accept certificates with hostname mismatches
- ///
- [Parameter]
- public SwitchParameter AcceptHostnameMismatch { get; set; }
-
///
/// Processes the cmdlet
///
@@ -147,6 +135,7 @@ namespace PSMinIO.Cmdlets
// Store in session variable if requested
if (!string.IsNullOrWhiteSpace(SessionVariable))
{
+ // Set variable in session state
SessionState.PSVariable.Set(SessionVariable, connection);
MinIOLogger.WriteVerbose(this, "Connection stored in session variable: {0}", SessionVariable!);
}
diff --git a/src/Cmdlets/GetMinIOObjectContentCmdlet.cs b/src/Cmdlets/GetMinIOObjectContentCmdlet.cs
index 51d5661..548ec40 100644
--- a/src/Cmdlets/GetMinIOObjectContentCmdlet.cs
+++ b/src/Cmdlets/GetMinIOObjectContentCmdlet.cs
@@ -175,7 +175,10 @@ namespace PSMinIO.Cmdlets
try
{
var testFile = Path.Combine(FilePath.DirectoryName ?? ".", $".psminiotest_{Guid.NewGuid():N}");
- File.WriteAllText(testFile, "test");
+ using (var testStream = File.Create(testFile))
+ {
+ testStream.WriteByte(0);
+ }
File.Delete(testFile);
}
catch (Exception ex)
diff --git a/src/Cmdlets/NewMinIOObjectChunkedCmdlet.cs b/src/Cmdlets/NewMinIOObjectChunkedCmdlet.cs
index 9bfa019..0774a6b 100644
--- a/src/Cmdlets/NewMinIOObjectChunkedCmdlet.cs
+++ b/src/Cmdlets/NewMinIOObjectChunkedCmdlet.cs
@@ -36,7 +36,7 @@ namespace PSMinIO.Cmdlets
///
[Parameter(ParameterSetName = "Files")]
[ValidateNotNullOrEmpty]
- [Alias("Folder", "Prefix")]
+ [Alias("Prefix")]
public string? BucketDirectory { get; set; }
///
@@ -44,7 +44,7 @@ namespace PSMinIO.Cmdlets
///
[Parameter(Position = 1, Mandatory = true, ValueFromPipelineByPropertyName = true, ParameterSetName = "Directory")]
[ValidateNotNull]
- [Alias("Dir", "Folder")]
+ [Alias("Dir")]
public DirectoryInfo? Directory { get; set; }
///
diff --git a/src/Cmdlets/NewMinIOObjectCmdlet.cs b/src/Cmdlets/NewMinIOObjectCmdlet.cs
index a32b373..3861cc1 100644
--- a/src/Cmdlets/NewMinIOObjectCmdlet.cs
+++ b/src/Cmdlets/NewMinIOObjectCmdlet.cs
@@ -36,7 +36,7 @@ namespace PSMinIO.Cmdlets
///
[Parameter(ParameterSetName = "Files")]
[ValidateNotNullOrEmpty]
- [Alias("Folder", "Prefix")]
+ [Alias("Prefix")]
public string? BucketDirectory { get; set; }
///
@@ -44,7 +44,7 @@ namespace PSMinIO.Cmdlets
///
[Parameter(Position = 1, Mandatory = true, ValueFromPipelineByPropertyName = true, ParameterSetName = "Directory")]
[ValidateNotNull]
- [Alias("Dir", "Folder")]
+ [Alias("Dir")]
public DirectoryInfo? Directory { get; set; }
///
diff --git a/src/Models/MinIOObjectInfo.cs b/src/Models/MinIOObjectInfo.cs
index 56e973f..24b9a3e 100644
--- a/src/Models/MinIOObjectInfo.cs
+++ b/src/Models/MinIOObjectInfo.cs
@@ -237,7 +237,13 @@ namespace PSMinIO.Models
///
public override int GetHashCode()
{
- return HashCode.Combine(Name, BucketName?.ToLowerInvariant());
+ unchecked
+ {
+ int hash = 17;
+ hash = hash * 23 + (Name?.GetHashCode() ?? 0);
+ hash = hash * 23 + (BucketName?.ToLowerInvariant()?.GetHashCode() ?? 0);
+ return hash;
+ }
}
}
}
diff --git a/src/Utils/MinIOClientWrapper.cs b/src/Utils/MinIOClientWrapper.cs
index 69b7fbf..f80f6a4 100644
--- a/src/Utils/MinIOClientWrapper.cs
+++ b/src/Utils/MinIOClientWrapper.cs
@@ -383,19 +383,23 @@ namespace PSMinIO.Utils
contentType = GetContentType(filePath);
}
+ // Use explicit file stream management to ensure proper handle release
+ using var fileStream = new FileStream(filePath, FileMode.Open, FileAccess.Read, FileShare.Read);
+
var args = new PutObjectArgs()
.WithBucket(bucketName)
.WithObject(objectName)
- .WithFileName(filePath)
+ .WithStreamData(fileStream)
+ .WithObjectSize(fileSize)
.WithContentType(contentType);
- // Progress tracking not available in MinIO 5.0.0
+ // Progress tracking not available in MinIO 4.0.7
// progressCallback is ignored for now
- var result = Task.Run(async () =>
+ Task.Run(async () =>
await _client.PutObjectAsync(args, CancellationToken)).GetAwaiter().GetResult();
- return result.Etag ?? string.Empty;
+ return string.Empty; // MinIO 4.0.7 PutObjectAsync returns void
}
catch (Exception ex)
{
@@ -481,10 +485,10 @@ namespace PSMinIO.Utils
// Progress tracking not available in MinIO 5.0.0
// progressCallback is ignored for now
- var result = Task.Run(async () =>
+ Task.Run(async () =>
await _client.PutObjectAsync(args, CancellationToken)).GetAwaiter().GetResult();
- return result.Etag ?? string.Empty;
+ return string.Empty; // MinIO 4.0.7 PutObjectAsync returns void
}
catch (Exception ex)
{
diff --git a/src/Utils/MinIOLogger.cs b/src/Utils/MinIOLogger.cs
index 216a8e4..89e1c7b 100644
--- a/src/Utils/MinIOLogger.cs
+++ b/src/Utils/MinIOLogger.cs
@@ -178,13 +178,12 @@ namespace PSMinIO.Utils
private static string FormatLogMessage(LogLevel level, string message, params object[] args)
{
var timestamp = DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss.fff");
- var levelString = level.ToString().ToUpperInvariant();
// Process arguments to format byte sizes intelligently
var processedArgs = ProcessLogArguments(args);
var formattedMessage = processedArgs.Length > 0 ? string.Format(message, processedArgs) : message;
- return $"{timestamp} - [{levelString}] - {formattedMessage}";
+ return $"{timestamp} - {formattedMessage}";
}
///
diff --git a/temp-deps/nuget.exe b/temp-deps/nuget.exe
new file mode 100644
index 0000000..ed048fe
Binary files /dev/null and b/temp-deps/nuget.exe differ
diff --git a/temp-deps/packages/NetFx.System.Runtime.CompilerServices.Unsafe.4.0.0/.signature.p7s b/temp-deps/packages/NetFx.System.Runtime.CompilerServices.Unsafe.4.0.0/.signature.p7s
new file mode 100644
index 0000000..64ffe8c
Binary files /dev/null and b/temp-deps/packages/NetFx.System.Runtime.CompilerServices.Unsafe.4.0.0/.signature.p7s differ
diff --git a/temp-deps/packages/NetFx.System.Runtime.CompilerServices.Unsafe.4.0.0/lib/net40/NetFx.System.Runtime.CompilerServices.Unsafe.dll b/temp-deps/packages/NetFx.System.Runtime.CompilerServices.Unsafe.4.0.0/lib/net40/NetFx.System.Runtime.CompilerServices.Unsafe.dll
new file mode 100644
index 0000000..e45cb82
Binary files /dev/null and b/temp-deps/packages/NetFx.System.Runtime.CompilerServices.Unsafe.4.0.0/lib/net40/NetFx.System.Runtime.CompilerServices.Unsafe.dll differ
diff --git a/temp-deps/packages/NetFx.System.Runtime.CompilerServices.Unsafe.4.0.0/lib/net40/NetFx.System.Runtime.CompilerServices.Unsafe.xml b/temp-deps/packages/NetFx.System.Runtime.CompilerServices.Unsafe.4.0.0/lib/net40/NetFx.System.Runtime.CompilerServices.Unsafe.xml
new file mode 100644
index 0000000..9bf58ac
--- /dev/null
+++ b/temp-deps/packages/NetFx.System.Runtime.CompilerServices.Unsafe.4.0.0/lib/net40/NetFx.System.Runtime.CompilerServices.Unsafe.xml
@@ -0,0 +1,353 @@
+
+
+
+ NetFx.System.Runtime.CompilerServices.Unsafe
+
+
+
+
+ Contains generic, low-level functionality for manipulating pointers.
+
+
+
+
+ Reads a value of type from the given location.
+
+ The type to read.
+ The location to read from.
+ An object of type read from the given location.
+
+
+
+ Reads a value of type from the given location.
+
+ The type to read.
+ The location to read from.
+ An object of type read from the given location.
+
+
+
+ Reads a value of type from the given location.
+
+ The type to read.
+ The location to read from.
+ An object of type read from the given location.
+
+
+
+ Writes a value of type to the given location.
+
+ The type of value to write.
+ The location to write to.
+ The value to write.
+
+
+
+ Writes a value of type to the given location.
+
+ The type of value to write.
+ The location to write to.
+ The value to write.
+
+
+
+ Writes a value of type to the given location.
+
+ The type of value to write.
+ The location to write to.
+ The value to write.
+
+
+
+ Copies a value of type to the given location.
+
+ The type of value to copy.
+ The location to copy to.
+ A reference to the value to copy.
+
+
+
+ Copies a value of type to the given location.
+
+ The type of value to copy.
+ The location to copy to.
+ A pointer to the value to copy.
+
+
+
+ Returns a pointer to the given by-ref parameter.
+
+ The type of object.
+ The object whose pointer is obtained.
+ A pointer to the given value.
+
+
+
+ Returns the size of an object of the given type parameter.
+
+ The type of object whose size is retrieved.
+ The size of an object of type .
+
+
+
+ Casts the given object to the specified type, performs no dynamic type checking.
+
+ The type which the object will be cast to.
+ The object to cast.
+ The original object, casted to the given type.
+
+
+
+ Reinterprets the given location as a reference to a value of type .
+
+ The type of the interpreted location.
+ The location of the value to reference.
+ A reference to a value of type .
+
+
+
+ Reinterprets the given read-only reference as a reference.
+
+ The type of reference.
+ The read-only reference to reinterpret.
+ A reference to a value of type .
+
+
+
+ Reinterprets the given reference as a reference to a value of type .
+
+ The type of reference to reinterpret.
+ The desired type of the reference.
+ The reference to reinterpret.
+ A reference to a value of type .
+
+
+
+ Returns a reference to the value type contained with the specified box object.
+
+ The type of the value type contained within the box.
+ The boxed value type.
+ A reference to a value of type in the box object.
+
+
+
+ Adds an element offset to the given reference.
+
+ The type of reference.
+ The reference to add the offset to.
+ The offset to add.
+ A new reference that reflects the addition of offset to pointer.
+
+
+
+ Adds an element offset to the given pointer.
+
+ The type of reference.
+ The pointer to add the offset to.
+ The offset to add.
+ A new pointer that reflects the addition of offset to pointer.
+
+
+
+ Adds an element offset to the given reference.
+
+ The type of reference.
+ The reference to add the offset to.
+ The offset to add.
+ A new reference that reflects the addition of offset to pointer.
+
+
+
+ Adds an element offset to the given reference.
+
+ The type of reference.
+ The reference to add the offset to.
+ The offset to add.
+ A new reference that reflects the addition of offset to pointer.
+
+
+
+ Adds a byte offset to the given reference.
+
+ The type of reference.
+ The reference to add the offset to.
+ The offset to add.
+ A new reference that reflects the addition of byte offset to pointer.
+
+
+
+ Adds a byte offset to the given reference.
+
+ The type of reference.
+ The reference to add the offset to.
+ The offset to add.
+ A new reference that reflects the addition of byte offset to pointer.
+
+
+
+ Subtracts an element offset from the given reference.
+
+ The type of reference.
+ The reference to subtract the offset from.
+ The offset to subtract.
+ A new reference that reflects the subraction of offset from pointer.
+
+
+
+ Subtracts an element offset from the given reference.
+
+ The type of reference.
+ The reference to subtract the offset from.
+ The offset to subtract.
+ A new reference that reflects the subraction of offset from pointer.
+
+
+
+ Subtracts an element offset from the given reference.
+
+ The type of reference.
+ The reference to subtract the offset from.
+ The offset to subtract.
+ A new reference that reflects the subraction of offset from pointer.
+
+
+
+ Subtracts a byte offset from the given reference.
+
+ The type of reference.
+ The reference to subtract the offset from.
+ The offset to subtract.
+ A new reference that reflects the subraction of byte offset from pointer.
+
+
+
+ Subtracts a byte offset from the given reference.
+
+ The type of reference.
+ The reference to subtract the offset from.
+ The offset to subtract.
+ A new reference that reflects the subraction of byte offset from pointer.
+
+
+
+ Determines the byte offset from origin to target from the given references.
+
+ The type of reference.
+ The reference to origin.
+ The reference to target.
+ Byte offset from origin to target i.e. - .
+
+
+
+ Determines whether the specified references point to the same location.
+
+ The first reference to compare.
+ The second reference to compare.
+ true if and point to the same location; otherwise false.
+
+
+
+ Determines whether the memory address referenced by is greater than the memory address referenced by .
+
+ The first reference to compare.
+ The second reference to compare.
+ true if the memory address referenced by is greater than the memory address referenced by ; otherwise false.
+
+ This check is conceptually similar to "(void*)(&left) > (void*)(&right)". Both parameters must reference the same object, array, or span;
+ or the objects being referenced must both be pinned; or both references must represent unmanaged pointers; otherwise the result is undefined.
+
+
+
+
+ Determines whether the memory address referenced by is less than the memory address referenced by .
+
+ The first reference to compare.
+ The second reference to compare.
+ true if the memory address referenced by is less than the memory address referenced by ; otherwise false.
+
+ This check is conceptually similar to "(void*)(&left) < (void*)(&right)". Both parameters must reference the same object, array, or span;
+ or the objects being referenced must both be pinned; or both references must represent unmanaged pointers; otherwise the result is undefined.
+
+
+
+
+ Returns if a given reference to a value of type is a null reference.
+
+ The reference to check.
+ This check is conceptually similar to "(void*)(&source) == nullptr".
+
+
+
+ Returns a reference to a value of type that is a null reference.
+
+
+
+
+ Copies bytes from the source address to the destination address.
+
+ The destination address to copy to.
+ The source address to copy from.
+ The number of bytes to copy.
+
+
+
+ Copies bytes from the source address to the destination address.
+
+ The destination address to copy to.
+ The source address to copy from.
+ The number of bytes to copy.
+
+
+
+ Copies bytes from the source address to the destination address
+ without assuming architecture dependent alignment of the addresses.
+
+ The destination address to copy to.
+ The source address to copy from.
+ The number of bytes to copy.
+
+
+
+ Copies bytes from the source address to the destination address
+ without assuming architecture dependent alignment of the addresses.
+
+ The destination address to copy to.
+ The source address to copy from.
+ The number of bytes to copy.
+
+
+
+ Initializes a block of memory at the given location with a given initial value.
+
+ The address of the start of the memory block to initialize.
+ The value to initialize the block to.
+ The number of bytes to initialize.
+
+
+
+ Initializes a block of memory at the given location with a given initial value.
+
+ The address of the start of the memory block to initialize.
+ The value to initialize the block to.
+ The number of bytes to initialize.
+
+
+
+ Initializes a block of memory at the given location with a given initial value
+ without assuming architecture dependent alignment of the address.
+
+ The address of the start of the memory block to initialize.
+ The value to initialize the block to.
+ The number of bytes to initialize.
+
+
+
+ Initializes a block of memory at the given location with a given initial value
+ without assuming architecture dependent alignment of the address.
+
+ The address of the start of the memory block to initialize.
+ The value to initialize the block to.
+ The number of bytes to initialize.
+
+
+
\ No newline at end of file
diff --git a/temp-deps/packages/NetFx.System.Runtime.CompilerServices.Unsafe.4.0.0/netfx-icon-128x128.png b/temp-deps/packages/NetFx.System.Runtime.CompilerServices.Unsafe.4.0.0/netfx-icon-128x128.png
new file mode 100644
index 0000000..4b89cc2
Binary files /dev/null and b/temp-deps/packages/NetFx.System.Runtime.CompilerServices.Unsafe.4.0.0/netfx-icon-128x128.png differ
diff --git a/temp-deps/packages/NetFx.System.Runtime.CompilerServices.Unsafe.4.0.0/readme.md b/temp-deps/packages/NetFx.System.Runtime.CompilerServices.Unsafe.4.0.0/readme.md
new file mode 100644
index 0000000..e3481e5
--- /dev/null
+++ b/temp-deps/packages/NetFx.System.Runtime.CompilerServices.Unsafe.4.0.0/readme.md
@@ -0,0 +1,48 @@
+System.Runtime.CompilerServices.Unsafe Polyfill for .NET Framework 4.0
+========
+
+[](https://www.nuget.org/packages/NetFx.System.Runtime.CompilerServices.Unsafe)
+[](https://dev.azure.com/NightOwl888/NetFx.Polyfills/_build?definitionId=4&_a=summary)
+[](https://github.com/NightOwl888/NetFx.Polyfills/blob/main/LICENSE)
+[](https://github.com/sponsors/NightOwl888)
+
+Provides the System.Runtime.CompilerServices.Unsafe class, which provides generic, low-level functionality for manipulating pointers.
+
+Commonly Used Types:
+- System.Runtime.CompilerServices.Unsafe
+
+------------
+
+This package adds support for System.Runtime.CompilerServices.Unsafe on .NET Framework 4.0.
+
+This is a compilation using the System.Runtime.CompilerServices.Unsafe source code from .NET Core 6.0.28. All tests are passing.
+
+This is not meant to be an upgrade to System.Runtime.CompilerServices.Unsafe 6.0.0, it is simply to add support on the `net40` target for all of the existing APIs in System.Runtime.CompilerServices.Unsafe 6.0.0. It is recommended to use the official release of System.Runtime.CompilerServices.Unsafe on newer versions of .NET.
+
+## Interop with System.Runtime.CompilerServices.Unsafe on Targets > net40
+
+Since the runtime for `net40` hasn't been supported for many years, most likely you will be using a newer runtime with this library. But you may be interoperating with other components that target System.Runtime.CompilerServices.Unsafe, which will cause type collisions by default.
+
+In this case, it is recommended to remove System.Runtime.CompilerServices.Unsafe from compilation and add NetFx.System.Runtime.CompilerServices.Unsafe in its place. Add the following to your `.csproj` or `.vbproj` file. This example is for using `net452`.
+
+```xml
+
+
+
+
+
+```
+
+> **NOTE:** Only SDK-style projects are supported using this method.
+
+For transitive dependencies (that is, dependencies that are not directly referenced) that have a `net40` target, consider [forcing a specific target framework](https://duanenewman.net/blog/post/forcing-a-specific-target-platform-with-packagereference/).
+
+## Saying Thanks
+
+If you find this library to be useful, please star us [on GitHub](https://github.com/NightOwl888/NetFx.Polyfills) and consider a sponsorship so we can continue bringing you great free tools like this one. It really would make a big difference!
+
+[](https://github.com/sponsors/NightOwl888)
\ No newline at end of file
diff --git a/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.0.0/.signature.p7s b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.0.0/.signature.p7s
new file mode 100644
index 0000000..0b7f0c9
Binary files /dev/null and b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.0.0/.signature.p7s differ
diff --git a/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.0.0/ThirdPartyNotices.txt b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.0.0/ThirdPartyNotices.txt
new file mode 100644
index 0000000..55cfb20
--- /dev/null
+++ b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.0.0/ThirdPartyNotices.txt
@@ -0,0 +1,31 @@
+This Microsoft .NET Library may incorporate components from the projects listed
+below. Microsoft licenses these components under the Microsoft .NET Library
+software license terms. The original copyright notices and the licenses under
+which Microsoft received such components are set forth below for informational
+purposes only. Microsoft reserves all rights not expressly granted herein,
+whether by implication, estoppel or otherwise.
+
+1. .NET Core (https://github.com/dotnet/core/)
+
+.NET Core
+Copyright (c) .NET Foundation and Contributors
+
+The MIT License (MIT)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
\ No newline at end of file
diff --git a/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.0.0/dotnet_library_license.txt b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.0.0/dotnet_library_license.txt
new file mode 100644
index 0000000..92b6c44
--- /dev/null
+++ b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.0.0/dotnet_library_license.txt
@@ -0,0 +1,128 @@
+
+MICROSOFT SOFTWARE LICENSE TERMS
+
+
+MICROSOFT .NET LIBRARY
+
+These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft
+
+· updates,
+
+· supplements,
+
+· Internet-based services, and
+
+· support services
+
+for this software, unless other terms accompany those items. If so, those terms apply.
+
+BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE.
+
+
+IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE PERPETUAL RIGHTS BELOW.
+
+1. INSTALLATION AND USE RIGHTS.
+
+a. Installation and Use. You may install and use any number of copies of the software to design, develop and test your programs.
+
+b. Third Party Programs. The software may include third party programs that Microsoft, not the third party, licenses to you under this agreement. Notices, if any, for the third party program are included for your information only.
+
+2. ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.
+
+a. DISTRIBUTABLE CODE. The software is comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in programs you develop if you comply with the terms below.
+
+i. Right to Use and Distribute.
+
+· You may copy and distribute the object code form of the software.
+
+· Third Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs.
+
+ii. Distribution Requirements. For any Distributable Code you distribute, you must
+
+· add significant primary functionality to it in your programs;
+
+· require distributors and external end users to agree to terms that protect it at least as much as this agreement;
+
+· display your valid copyright notice on your programs; and
+
+· indemnify, defend, and hold harmless Microsoft from any claims, including attorneys’ fees, related to the distribution or use of your programs.
+
+iii. Distribution Restrictions. You may not
+
+· alter any copyright, trademark or patent notice in the Distributable Code;
+
+· use Microsoft’s trademarks in your programs’ names or in a way that suggests your programs come from or are endorsed by Microsoft;
+
+· include Distributable Code in malicious, deceptive or unlawful programs; or
+
+· modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that
+
+· the code be disclosed or distributed in source code form; or
+
+· others have the right to modify it.
+
+3. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not
+
+· work around any technical limitations in the software;
+
+· reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;
+
+· publish the software for others to copy;
+
+· rent, lease or lend the software;
+
+· transfer the software or this agreement to any third party; or
+
+· use the software for commercial software hosting services.
+
+4. BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software.
+
+5. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.
+
+6. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting.
+
+7. SUPPORT SERVICES. Because this software is “as is,” we may not provide support services for it.
+
+8. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.
+
+9. APPLICABLE LAW.
+
+a. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.
+
+b. Outside the United States. If you acquired the software in any other country, the laws of that country apply.
+
+10. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.
+
+11. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS OR STATUTORY GUARANTEES UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
+
+FOR AUSTRALIA – YOU HAVE STATUTORY GUARANTEES UNDER THE AUSTRALIAN CONSUMER LAW AND NOTHING IN THESE TERMS IS INTENDED TO AFFECT THOSE RIGHTS.
+
+12. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.
+
+This limitation applies to
+
+· anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and
+
+· claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.
+
+It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.
+
+Please note: As this software is distributed in Quebec, Canada, some of the clauses in this agreement are provided below in French.
+
+Remarque : Ce logiciel étant distribué au Québec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en français.
+
+EXONÉRATION DE GARANTIE. Le logiciel visé par une licence est offert « tel quel ». Toute utilisation de ce logiciel est à votre seule risque et péril. Microsoft n’accorde aucune autre garantie expresse. Vous pouvez bénéficier de droits additionnels en vertu du droit local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualité marchande, d’adéquation à un usage particulier et d’absence de contrefaçon sont exclues.
+
+LIMITATION DES DOMMAGES-INTÉRÊTS ET EXCLUSION DE RESPONSABILITÉ POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement à hauteur de 5,00 $ US. Vous ne pouvez prétendre à aucune indemnisation pour les autres dommages, y compris les dommages spéciaux, indirects ou accessoires et pertes de bénéfices.
+
+Cette limitation concerne :
+
+· tout ce qui est relié au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et
+
+· les réclamations au titre de violation de contrat ou de garantie, ou au titre de responsabilité stricte, de négligence ou d’une autre faute dans la limite autorisée par la loi en vigueur.
+
+Elle s’applique également, même si Microsoft connaissait ou devrait connaître l’éventualité d’un tel dommage. Si votre pays n’autorise pas l’exclusion ou la limitation de responsabilité pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l’exclusion ci-dessus ne s’appliquera pas à votre égard.
+
+EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas.
+
+
diff --git a/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.0.0/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.0.0/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll
new file mode 100644
index 0000000..c42243e
Binary files /dev/null and b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.0.0/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll differ
diff --git a/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.0.0/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.0.0/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml
new file mode 100644
index 0000000..3e0759f
--- /dev/null
+++ b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.0.0/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml
@@ -0,0 +1,92 @@
+
+
+
+ System.Runtime.CompilerServices.Unsafe
+
+
+
+
+ Contains generic, low-level functionality for manipulating pointers.
+
+
+
+
+ Reads a value of type T from the given location.
+
+ The type to read.
+ The location to read from.
+ An object of type T read from the given location.
+
+
+
+ Writes a value of type T to the given location.
+
+ The type of value to write.
+ The location to write to.
+ The value to write.
+
+
+
+ Copies a value of type T to the given location.
+
+ The type of value to copy.
+ The location to copy to.
+ A reference to the value to copy.
+
+
+
+ Copies a value of type T to the given location.
+
+ The type of value to copy.
+ The location to copy to.
+ A pointer to the value to copy.
+
+
+
+ Returns a pointer to the given by-ref parameter.
+
+ The type of object.
+ The object whose pointer is obtained.
+ A pointer to the given value.
+
+
+
+ Returns the size of an object of the given type parameter.
+
+ The type of object whose size is retrieved.
+ The size of an object of type T.
+
+
+
+ Casts the given object to the specified type.
+
+ The type which the object will be cast to.
+ The object to cast.
+ The original object, casted to the given type.
+
+
+
+ Reinterprets the given location as a reference to a value of type T.
+
+ The type of the interpreted location.
+ The location of the value to reference.
+ A reference to a value of type T.
+
+
+
+ Copies bytes from the source address to the destination address.
+
+ The destination address to copy to.
+ The source address to copy from.
+ The number of bytes to copy.
+
+
+
+ Initializes a block of memory at the given location with a given initial value.
+
+ The address of the start of the memory block to initialize.
+ The value to initialize the block to.
+ The number of bytes to initialize.
+
+
+
diff --git a/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/.signature.p7s b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/.signature.p7s
new file mode 100644
index 0000000..0b25909
Binary files /dev/null and b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/.signature.p7s differ
diff --git a/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/LICENSE.TXT b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/LICENSE.TXT
new file mode 100644
index 0000000..984713a
--- /dev/null
+++ b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/LICENSE.TXT
@@ -0,0 +1,23 @@
+The MIT License (MIT)
+
+Copyright (c) .NET Foundation and Contributors
+
+All rights reserved.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/THIRD-PARTY-NOTICES.TXT b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/THIRD-PARTY-NOTICES.TXT
new file mode 100644
index 0000000..db542ca
--- /dev/null
+++ b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/THIRD-PARTY-NOTICES.TXT
@@ -0,0 +1,309 @@
+.NET Core uses third-party libraries or other resources that may be
+distributed under licenses different than the .NET Core software.
+
+In the event that we accidentally failed to list a required notice, please
+bring it to our attention. Post an issue or email us:
+
+ dotnet@microsoft.com
+
+The attached notices are provided for information only.
+
+License notice for Slicing-by-8
+-------------------------------
+
+http://sourceforge.net/projects/slicing-by-8/
+
+Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved
+
+
+This software program is licensed subject to the BSD License, available at
+http://www.opensource.org/licenses/bsd-license.html.
+
+
+License notice for Unicode data
+-------------------------------
+
+http://www.unicode.org/copyright.html#License
+
+Copyright © 1991-2017 Unicode, Inc. All rights reserved.
+Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of the Unicode data files and any associated documentation
+(the "Data Files") or Unicode software and any associated documentation
+(the "Software") to deal in the Data Files or Software
+without restriction, including without limitation the rights to use,
+copy, modify, merge, publish, distribute, and/or sell copies of
+the Data Files or Software, and to permit persons to whom the Data Files
+or Software are furnished to do so, provided that either
+(a) this copyright and permission notice appear with all copies
+of the Data Files or Software, or
+(b) this copyright and permission notice appear in associated
+Documentation.
+
+THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
+ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
+WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT OF THIRD PARTY RIGHTS.
+IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS
+NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL
+DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
+PERFORMANCE OF THE DATA FILES OR SOFTWARE.
+
+Except as contained in this notice, the name of a copyright holder
+shall not be used in advertising or otherwise to promote the sale,
+use or other dealings in these Data Files or Software without prior
+written authorization of the copyright holder.
+
+License notice for Zlib
+-----------------------
+
+https://github.com/madler/zlib
+http://zlib.net/zlib_license.html
+
+/* zlib.h -- interface of the 'zlib' general purpose compression library
+ version 1.2.11, January 15th, 2017
+
+ Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler
+
+ This software is provided 'as-is', without any express or implied
+ warranty. In no event will the authors be held liable for any damages
+ arising from the use of this software.
+
+ Permission is granted to anyone to use this software for any purpose,
+ including commercial applications, and to alter it and redistribute it
+ freely, subject to the following restrictions:
+
+ 1. The origin of this software must not be misrepresented; you must not
+ claim that you wrote the original software. If you use this software
+ in a product, an acknowledgment in the product documentation would be
+ appreciated but is not required.
+ 2. Altered source versions must be plainly marked as such, and must not be
+ misrepresented as being the original software.
+ 3. This notice may not be removed or altered from any source distribution.
+
+ Jean-loup Gailly Mark Adler
+ jloup@gzip.org madler@alumni.caltech.edu
+
+*/
+
+License notice for Mono
+-------------------------------
+
+http://www.mono-project.com/docs/about-mono/
+
+Copyright (c) .NET Foundation Contributors
+
+MIT License
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the Software), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+License notice for International Organization for Standardization
+-----------------------------------------------------------------
+
+Portions (C) International Organization for Standardization 1986:
+ Permission to copy in any form is granted for use with
+ conforming SGML systems and applications as defined in
+ ISO 8879, provided this notice is included in all copies.
+
+License notice for Intel
+------------------------
+
+"Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this
+list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright notice,
+this list of conditions and the following disclaimer in the documentation
+and/or other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+License notice for Xamarin and Novell
+-------------------------------------
+
+Copyright (c) 2015 Xamarin, Inc (http://www.xamarin.com)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+Copyright (c) 2011 Novell, Inc (http://www.novell.com)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+Third party notice for W3C
+--------------------------
+
+"W3C SOFTWARE AND DOCUMENT NOTICE AND LICENSE
+Status: This license takes effect 13 May, 2015.
+This work is being provided by the copyright holders under the following license.
+License
+By obtaining and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions.
+Permission to copy, modify, and distribute this work, with or without modification, for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the work or portions thereof, including modifications:
+The full text of this NOTICE in a location viewable to users of the redistributed or derivative work.
+Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, the W3C Software and Document Short Notice should be included.
+Notice of any changes or modifications, through a copyright statement on the new code or document such as "This software or document includes material copied from or derived from [title and URI of the W3C document]. Copyright © [YEAR] W3C® (MIT, ERCIM, Keio, Beihang)."
+Disclaimers
+THIS WORK IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENT WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.
+COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENT.
+The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the work without specific, written prior permission. Title to copyright in this work will at all times remain with copyright holders."
+
+License notice for Bit Twiddling Hacks
+--------------------------------------
+
+Bit Twiddling Hacks
+
+By Sean Eron Anderson
+seander@cs.stanford.edu
+
+Individually, the code snippets here are in the public domain (unless otherwise
+noted) — feel free to use them however you please. The aggregate collection and
+descriptions are © 1997-2005 Sean Eron Anderson. The code and descriptions are
+distributed in the hope that they will be useful, but WITHOUT ANY WARRANTY and
+without even the implied warranty of merchantability or fitness for a particular
+purpose.
+
+License notice for Brotli
+--------------------------------------
+
+Copyright (c) 2009, 2010, 2013-2016 by the Brotli Authors.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+compress_fragment.c:
+Copyright (c) 2011, Google Inc.
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are
+met:
+
+ * Redistributions of source code must retain the above copyright
+notice, this list of conditions and the following disclaimer.
+ * Redistributions in binary form must reproduce the above
+copyright notice, this list of conditions and the following disclaimer
+in the documentation and/or other materials provided with the
+distribution.
+ * Neither the name of Google Inc. nor the names of its
+contributors may be used to endorse or promote products derived from
+this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+""AS IS"" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+decode_fuzzer.c:
+Copyright (c) 2015 The Chromium Authors. All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are
+met:
+
+ * Redistributions of source code must retain the above copyright
+notice, this list of conditions and the following disclaimer.
+ * Redistributions in binary form must reproduce the above
+copyright notice, this list of conditions and the following disclaimer
+in the documentation and/or other materials provided with the
+distribution.
+ * Neither the name of Google Inc. nor the names of its
+contributors may be used to endorse or promote products derived from
+this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+""AS IS"" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
+
diff --git a/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/lib/net461/System.Runtime.CompilerServices.Unsafe.dll b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/lib/net461/System.Runtime.CompilerServices.Unsafe.dll
new file mode 100644
index 0000000..de9e124
Binary files /dev/null and b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/lib/net461/System.Runtime.CompilerServices.Unsafe.dll differ
diff --git a/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/lib/net461/System.Runtime.CompilerServices.Unsafe.xml b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/lib/net461/System.Runtime.CompilerServices.Unsafe.xml
new file mode 100644
index 0000000..6a7cfcf
--- /dev/null
+++ b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/lib/net461/System.Runtime.CompilerServices.Unsafe.xml
@@ -0,0 +1,200 @@
+
+
+ System.Runtime.CompilerServices.Unsafe
+
+
+
+ Contains generic, low-level functionality for manipulating pointers.
+
+
+ Adds an element offset to the given reference.
+ The reference to add the offset to.
+ The offset to add.
+ The type of reference.
+ A new reference that reflects the addition of offset to pointer.
+
+
+ Adds an element offset to the given reference.
+ The reference to add the offset to.
+ The offset to add.
+ The type of reference.
+ A new reference that reflects the addition of offset to pointer.
+
+
+ Adds a byte offset to the given reference.
+ The reference to add the offset to.
+ The offset to add.
+ The type of reference.
+ A new reference that reflects the addition of byte offset to pointer.
+
+
+ Determines whether the specified references point to the same location.
+ The first reference to compare.
+ The second reference to compare.
+ The type of reference.
+ true if left and right point to the same location; otherwise, false.
+
+
+ Casts the given object to the specified type.
+ The object to cast.
+ The type which the object will be cast to.
+ The original object, casted to the given type.
+
+
+ Reinterprets the given reference as a reference to a value of type TTo.
+ The reference to reinterpret.
+ The type of reference to reinterpret..
+ The desired type of the reference.
+ A reference to a value of type TTo.
+
+
+ Returns a pointer to the given by-ref parameter.
+ The object whose pointer is obtained.
+ The type of object.
+ A pointer to the given value.
+
+
+ Reinterprets the given location as a reference to a value of type T.
+ The location of the value to reference.
+ The type of the interpreted location.
+ A reference to a value of type T.
+
+
+ Determines the byte offset from origin to target from the given references.
+ The reference to origin.
+ The reference to target.
+ The type of reference.
+ Byte offset from origin to target i.e. target - origin.
+
+
+ Copies a value of type T to the given location.
+ The location to copy to.
+ A reference to the value to copy.
+ The type of value to copy.
+
+
+ Copies a value of type T to the given location.
+ The location to copy to.
+ A pointer to the value to copy.
+ The type of value to copy.
+
+
+ Copies bytes from the source address to the destination address.
+ The destination address to copy to.
+ The source address to copy from.
+ The number of bytes to copy.
+
+
+ Copies bytes from the source address to the destination address.
+ The destination address to copy to.
+ The source address to copy from.
+ The number of bytes to copy.
+
+
+ Copies bytes from the source address to the destination address
+without assuming architecture dependent alignment of the addresses.
+ The destination address to copy to.
+ The source address to copy from.
+ The number of bytes to copy.
+
+
+ Copies bytes from the source address to the destination address
+without assuming architecture dependent alignment of the addresses.
+ The destination address to copy to.
+ The source address to copy from.
+ The number of bytes to copy.
+
+
+ Initializes a block of memory at the given location with a given initial value.
+ The address of the start of the memory block to initialize.
+ The value to initialize the block to.
+ The number of bytes to initialize.
+
+
+ Initializes a block of memory at the given location with a given initial value.
+ The address of the start of the memory block to initialize.
+ The value to initialize the block to.
+ The number of bytes to initialize.
+
+
+ Initializes a block of memory at the given location with a given initial value
+without assuming architecture dependent alignment of the address.
+ The address of the start of the memory block to initialize.
+ The value to initialize the block to.
+ The number of bytes to initialize.
+
+
+ Initializes a block of memory at the given location with a given initial value
+without assuming architecture dependent alignment of the address.
+ The address of the start of the memory block to initialize.
+ The value to initialize the block to.
+ The number of bytes to initialize.
+
+
+ Reads a value of type T from the given location.
+ The location to read from.
+ The type to read.
+ An object of type T read from the given location.
+
+
+ Reads a value of type T from the given location
+without assuming architecture dependent alignment of the addresses.
+ The location to read from.
+ The type to read.
+ An object of type T read from the given location.
+
+
+ Reads a value of type T from the given location
+without assuming architecture dependent alignment of the addresses.
+ The location to read from.
+ The type to read.
+ An object of type T read from the given location.
+
+
+ Returns the size of an object of the given type parameter.
+ The type of object whose size is retrieved.
+ The size of an object of type T.
+
+
+ Subtracts an element offset from the given reference.
+ The reference to subtract the offset from.
+ The offset to subtract.
+ The type of reference.
+ A new reference that reflects the subraction of offset from pointer.
+
+
+ Subtracts an element offset from the given reference.
+ The reference to subtract the offset from.
+ The offset to subtract.
+ The type of reference.
+ A new reference that reflects the subraction of offset from pointer.
+
+
+ Subtracts a byte offset from the given reference.
+ The reference to subtract the offset from.
+
+ The type of reference.
+ A new reference that reflects the subraction of byte offset from pointer.
+
+
+ Writes a value of type T to the given location.
+ The location to write to.
+ The value to write.
+ The type of value to write.
+
+
+ Writes a value of type T to the given location
+without assuming architecture dependent alignment of the addresses.
+ The location to write to.
+ The value to write.
+ The type of value to write.
+
+
+ Writes a value of type T to the given location
+without assuming architecture dependent alignment of the addresses.
+ The location to write to.
+ The value to write.
+ The type of value to write.
+
+
+
\ No newline at end of file
diff --git a/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll
new file mode 100644
index 0000000..e717510
Binary files /dev/null and b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll differ
diff --git a/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml
new file mode 100644
index 0000000..6a7cfcf
--- /dev/null
+++ b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml
@@ -0,0 +1,200 @@
+
+
+ System.Runtime.CompilerServices.Unsafe
+
+
+
+ Contains generic, low-level functionality for manipulating pointers.
+
+
+ Adds an element offset to the given reference.
+ The reference to add the offset to.
+ The offset to add.
+ The type of reference.
+ A new reference that reflects the addition of offset to pointer.
+
+
+ Adds an element offset to the given reference.
+ The reference to add the offset to.
+ The offset to add.
+ The type of reference.
+ A new reference that reflects the addition of offset to pointer.
+
+
+ Adds a byte offset to the given reference.
+ The reference to add the offset to.
+ The offset to add.
+ The type of reference.
+ A new reference that reflects the addition of byte offset to pointer.
+
+
+ Determines whether the specified references point to the same location.
+ The first reference to compare.
+ The second reference to compare.
+ The type of reference.
+ true if left and right point to the same location; otherwise, false.
+
+
+ Casts the given object to the specified type.
+ The object to cast.
+ The type which the object will be cast to.
+ The original object, casted to the given type.
+
+
+ Reinterprets the given reference as a reference to a value of type TTo.
+ The reference to reinterpret.
+ The type of reference to reinterpret..
+ The desired type of the reference.
+ A reference to a value of type TTo.
+
+
+ Returns a pointer to the given by-ref parameter.
+ The object whose pointer is obtained.
+ The type of object.
+ A pointer to the given value.
+
+
+ Reinterprets the given location as a reference to a value of type T.
+ The location of the value to reference.
+ The type of the interpreted location.
+ A reference to a value of type T.
+
+
+ Determines the byte offset from origin to target from the given references.
+ The reference to origin.
+ The reference to target.
+ The type of reference.
+ Byte offset from origin to target i.e. target - origin.
+
+
+ Copies a value of type T to the given location.
+ The location to copy to.
+ A reference to the value to copy.
+ The type of value to copy.
+
+
+ Copies a value of type T to the given location.
+ The location to copy to.
+ A pointer to the value to copy.
+ The type of value to copy.
+
+
+ Copies bytes from the source address to the destination address.
+ The destination address to copy to.
+ The source address to copy from.
+ The number of bytes to copy.
+
+
+ Copies bytes from the source address to the destination address.
+ The destination address to copy to.
+ The source address to copy from.
+ The number of bytes to copy.
+
+
+ Copies bytes from the source address to the destination address
+without assuming architecture dependent alignment of the addresses.
+ The destination address to copy to.
+ The source address to copy from.
+ The number of bytes to copy.
+
+
+ Copies bytes from the source address to the destination address
+without assuming architecture dependent alignment of the addresses.
+ The destination address to copy to.
+ The source address to copy from.
+ The number of bytes to copy.
+
+
+ Initializes a block of memory at the given location with a given initial value.
+ The address of the start of the memory block to initialize.
+ The value to initialize the block to.
+ The number of bytes to initialize.
+
+
+ Initializes a block of memory at the given location with a given initial value.
+ The address of the start of the memory block to initialize.
+ The value to initialize the block to.
+ The number of bytes to initialize.
+
+
+ Initializes a block of memory at the given location with a given initial value
+without assuming architecture dependent alignment of the address.
+ The address of the start of the memory block to initialize.
+ The value to initialize the block to.
+ The number of bytes to initialize.
+
+
+ Initializes a block of memory at the given location with a given initial value
+without assuming architecture dependent alignment of the address.
+ The address of the start of the memory block to initialize.
+ The value to initialize the block to.
+ The number of bytes to initialize.
+
+
+ Reads a value of type T from the given location.
+ The location to read from.
+ The type to read.
+ An object of type T read from the given location.
+
+
+ Reads a value of type T from the given location
+without assuming architecture dependent alignment of the addresses.
+ The location to read from.
+ The type to read.
+ An object of type T read from the given location.
+
+
+ Reads a value of type T from the given location
+without assuming architecture dependent alignment of the addresses.
+ The location to read from.
+ The type to read.
+ An object of type T read from the given location.
+
+
+ Returns the size of an object of the given type parameter.
+ The type of object whose size is retrieved.
+ The size of an object of type T.
+
+
+ Subtracts an element offset from the given reference.
+ The reference to subtract the offset from.
+ The offset to subtract.
+ The type of reference.
+ A new reference that reflects the subraction of offset from pointer.
+
+
+ Subtracts an element offset from the given reference.
+ The reference to subtract the offset from.
+ The offset to subtract.
+ The type of reference.
+ A new reference that reflects the subraction of offset from pointer.
+
+
+ Subtracts a byte offset from the given reference.
+ The reference to subtract the offset from.
+
+ The type of reference.
+ A new reference that reflects the subraction of byte offset from pointer.
+
+
+ Writes a value of type T to the given location.
+ The location to write to.
+ The value to write.
+ The type of value to write.
+
+
+ Writes a value of type T to the given location
+without assuming architecture dependent alignment of the addresses.
+ The location to write to.
+ The value to write.
+ The type of value to write.
+
+
+ Writes a value of type T to the given location
+without assuming architecture dependent alignment of the addresses.
+ The location to write to.
+ The value to write.
+ The type of value to write.
+
+
+
\ No newline at end of file
diff --git a/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll
new file mode 100644
index 0000000..b50dbc4
Binary files /dev/null and b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll differ
diff --git a/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml
new file mode 100644
index 0000000..6a7cfcf
--- /dev/null
+++ b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml
@@ -0,0 +1,200 @@
+
+
+ System.Runtime.CompilerServices.Unsafe
+
+
+
+ Contains generic, low-level functionality for manipulating pointers.
+
+
+ Adds an element offset to the given reference.
+ The reference to add the offset to.
+ The offset to add.
+ The type of reference.
+ A new reference that reflects the addition of offset to pointer.
+
+
+ Adds an element offset to the given reference.
+ The reference to add the offset to.
+ The offset to add.
+ The type of reference.
+ A new reference that reflects the addition of offset to pointer.
+
+
+ Adds a byte offset to the given reference.
+ The reference to add the offset to.
+ The offset to add.
+ The type of reference.
+ A new reference that reflects the addition of byte offset to pointer.
+
+
+ Determines whether the specified references point to the same location.
+ The first reference to compare.
+ The second reference to compare.
+ The type of reference.
+ true if left and right point to the same location; otherwise, false.
+
+
+ Casts the given object to the specified type.
+ The object to cast.
+ The type which the object will be cast to.
+ The original object, casted to the given type.
+
+
+ Reinterprets the given reference as a reference to a value of type TTo.
+ The reference to reinterpret.
+ The type of reference to reinterpret..
+ The desired type of the reference.
+ A reference to a value of type TTo.
+
+
+ Returns a pointer to the given by-ref parameter.
+ The object whose pointer is obtained.
+ The type of object.
+ A pointer to the given value.
+
+
+ Reinterprets the given location as a reference to a value of type T.
+ The location of the value to reference.
+ The type of the interpreted location.
+ A reference to a value of type T.
+
+
+ Determines the byte offset from origin to target from the given references.
+ The reference to origin.
+ The reference to target.
+ The type of reference.
+ Byte offset from origin to target i.e. target - origin.
+
+
+ Copies a value of type T to the given location.
+ The location to copy to.
+ A reference to the value to copy.
+ The type of value to copy.
+
+
+ Copies a value of type T to the given location.
+ The location to copy to.
+ A pointer to the value to copy.
+ The type of value to copy.
+
+
+ Copies bytes from the source address to the destination address.
+ The destination address to copy to.
+ The source address to copy from.
+ The number of bytes to copy.
+
+
+ Copies bytes from the source address to the destination address.
+ The destination address to copy to.
+ The source address to copy from.
+ The number of bytes to copy.
+
+
+ Copies bytes from the source address to the destination address
+without assuming architecture dependent alignment of the addresses.
+ The destination address to copy to.
+ The source address to copy from.
+ The number of bytes to copy.
+
+
+ Copies bytes from the source address to the destination address
+without assuming architecture dependent alignment of the addresses.
+ The destination address to copy to.
+ The source address to copy from.
+ The number of bytes to copy.
+
+
+ Initializes a block of memory at the given location with a given initial value.
+ The address of the start of the memory block to initialize.
+ The value to initialize the block to.
+ The number of bytes to initialize.
+
+
+ Initializes a block of memory at the given location with a given initial value.
+ The address of the start of the memory block to initialize.
+ The value to initialize the block to.
+ The number of bytes to initialize.
+
+
+ Initializes a block of memory at the given location with a given initial value
+without assuming architecture dependent alignment of the address.
+ The address of the start of the memory block to initialize.
+ The value to initialize the block to.
+ The number of bytes to initialize.
+
+
+ Initializes a block of memory at the given location with a given initial value
+without assuming architecture dependent alignment of the address.
+ The address of the start of the memory block to initialize.
+ The value to initialize the block to.
+ The number of bytes to initialize.
+
+
+ Reads a value of type T from the given location.
+ The location to read from.
+ The type to read.
+ An object of type T read from the given location.
+
+
+ Reads a value of type T from the given location
+without assuming architecture dependent alignment of the addresses.
+ The location to read from.
+ The type to read.
+ An object of type T read from the given location.
+
+
+ Reads a value of type T from the given location
+without assuming architecture dependent alignment of the addresses.
+ The location to read from.
+ The type to read.
+ An object of type T read from the given location.
+
+
+ Returns the size of an object of the given type parameter.
+ The type of object whose size is retrieved.
+ The size of an object of type T.
+
+
+ Subtracts an element offset from the given reference.
+ The reference to subtract the offset from.
+ The offset to subtract.
+ The type of reference.
+ A new reference that reflects the subraction of offset from pointer.
+
+
+ Subtracts an element offset from the given reference.
+ The reference to subtract the offset from.
+ The offset to subtract.
+ The type of reference.
+ A new reference that reflects the subraction of offset from pointer.
+
+
+ Subtracts a byte offset from the given reference.
+ The reference to subtract the offset from.
+
+ The type of reference.
+ A new reference that reflects the subraction of byte offset from pointer.
+
+
+ Writes a value of type T to the given location.
+ The location to write to.
+ The value to write.
+ The type of value to write.
+
+
+ Writes a value of type T to the given location
+without assuming architecture dependent alignment of the addresses.
+ The location to write to.
+ The value to write.
+ The type of value to write.
+
+
+ Writes a value of type T to the given location
+without assuming architecture dependent alignment of the addresses.
+ The location to write to.
+ The value to write.
+ The type of value to write.
+
+
+
\ No newline at end of file
diff --git a/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll
new file mode 100644
index 0000000..b17135b
Binary files /dev/null and b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll differ
diff --git a/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml
new file mode 100644
index 0000000..6a7cfcf
--- /dev/null
+++ b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml
@@ -0,0 +1,200 @@
+
+
+ System.Runtime.CompilerServices.Unsafe
+
+
+
+ Contains generic, low-level functionality for manipulating pointers.
+
+
+ Adds an element offset to the given reference.
+ The reference to add the offset to.
+ The offset to add.
+ The type of reference.
+ A new reference that reflects the addition of offset to pointer.
+
+
+ Adds an element offset to the given reference.
+ The reference to add the offset to.
+ The offset to add.
+ The type of reference.
+ A new reference that reflects the addition of offset to pointer.
+
+
+ Adds a byte offset to the given reference.
+ The reference to add the offset to.
+ The offset to add.
+ The type of reference.
+ A new reference that reflects the addition of byte offset to pointer.
+
+
+ Determines whether the specified references point to the same location.
+ The first reference to compare.
+ The second reference to compare.
+ The type of reference.
+ true if left and right point to the same location; otherwise, false.
+
+
+ Casts the given object to the specified type.
+ The object to cast.
+ The type which the object will be cast to.
+ The original object, casted to the given type.
+
+
+ Reinterprets the given reference as a reference to a value of type TTo.
+ The reference to reinterpret.
+ The type of reference to reinterpret..
+ The desired type of the reference.
+ A reference to a value of type TTo.
+
+
+ Returns a pointer to the given by-ref parameter.
+ The object whose pointer is obtained.
+ The type of object.
+ A pointer to the given value.
+
+
+ Reinterprets the given location as a reference to a value of type T.
+ The location of the value to reference.
+ The type of the interpreted location.
+ A reference to a value of type T.
+
+
+ Determines the byte offset from origin to target from the given references.
+ The reference to origin.
+ The reference to target.
+ The type of reference.
+ Byte offset from origin to target i.e. target - origin.
+
+
+ Copies a value of type T to the given location.
+ The location to copy to.
+ A reference to the value to copy.
+ The type of value to copy.
+
+
+ Copies a value of type T to the given location.
+ The location to copy to.
+ A pointer to the value to copy.
+ The type of value to copy.
+
+
+ Copies bytes from the source address to the destination address.
+ The destination address to copy to.
+ The source address to copy from.
+ The number of bytes to copy.
+
+
+ Copies bytes from the source address to the destination address.
+ The destination address to copy to.
+ The source address to copy from.
+ The number of bytes to copy.
+
+
+ Copies bytes from the source address to the destination address
+without assuming architecture dependent alignment of the addresses.
+ The destination address to copy to.
+ The source address to copy from.
+ The number of bytes to copy.
+
+
+ Copies bytes from the source address to the destination address
+without assuming architecture dependent alignment of the addresses.
+ The destination address to copy to.
+ The source address to copy from.
+ The number of bytes to copy.
+
+
+ Initializes a block of memory at the given location with a given initial value.
+ The address of the start of the memory block to initialize.
+ The value to initialize the block to.
+ The number of bytes to initialize.
+
+
+ Initializes a block of memory at the given location with a given initial value.
+ The address of the start of the memory block to initialize.
+ The value to initialize the block to.
+ The number of bytes to initialize.
+
+
+ Initializes a block of memory at the given location with a given initial value
+without assuming architecture dependent alignment of the address.
+ The address of the start of the memory block to initialize.
+ The value to initialize the block to.
+ The number of bytes to initialize.
+
+
+ Initializes a block of memory at the given location with a given initial value
+without assuming architecture dependent alignment of the address.
+ The address of the start of the memory block to initialize.
+ The value to initialize the block to.
+ The number of bytes to initialize.
+
+
+ Reads a value of type T from the given location.
+ The location to read from.
+ The type to read.
+ An object of type T read from the given location.
+
+
+ Reads a value of type T from the given location
+without assuming architecture dependent alignment of the addresses.
+ The location to read from.
+ The type to read.
+ An object of type T read from the given location.
+
+
+ Reads a value of type T from the given location
+without assuming architecture dependent alignment of the addresses.
+ The location to read from.
+ The type to read.
+ An object of type T read from the given location.
+
+
+ Returns the size of an object of the given type parameter.
+ The type of object whose size is retrieved.
+ The size of an object of type T.
+
+
+ Subtracts an element offset from the given reference.
+ The reference to subtract the offset from.
+ The offset to subtract.
+ The type of reference.
+ A new reference that reflects the subraction of offset from pointer.
+
+
+ Subtracts an element offset from the given reference.
+ The reference to subtract the offset from.
+ The offset to subtract.
+ The type of reference.
+ A new reference that reflects the subraction of offset from pointer.
+
+
+ Subtracts a byte offset from the given reference.
+ The reference to subtract the offset from.
+
+ The type of reference.
+ A new reference that reflects the subraction of byte offset from pointer.
+
+
+ Writes a value of type T to the given location.
+ The location to write to.
+ The value to write.
+ The type of value to write.
+
+
+ Writes a value of type T to the given location
+without assuming architecture dependent alignment of the addresses.
+ The location to write to.
+ The value to write.
+ The type of value to write.
+
+
+ Writes a value of type T to the given location
+without assuming architecture dependent alignment of the addresses.
+ The location to write to.
+ The value to write.
+ The type of value to write.
+
+
+
\ No newline at end of file
diff --git a/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/ref/net461/System.Runtime.CompilerServices.Unsafe.dll b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/ref/net461/System.Runtime.CompilerServices.Unsafe.dll
new file mode 100644
index 0000000..ac64866
Binary files /dev/null and b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/ref/net461/System.Runtime.CompilerServices.Unsafe.dll differ
diff --git a/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/ref/net461/System.Runtime.CompilerServices.Unsafe.xml b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/ref/net461/System.Runtime.CompilerServices.Unsafe.xml
new file mode 100644
index 0000000..6a7cfcf
--- /dev/null
+++ b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/ref/net461/System.Runtime.CompilerServices.Unsafe.xml
@@ -0,0 +1,200 @@
+
+
+ System.Runtime.CompilerServices.Unsafe
+
+
+
+ Contains generic, low-level functionality for manipulating pointers.
+
+
+ Adds an element offset to the given reference.
+ The reference to add the offset to.
+ The offset to add.
+ The type of reference.
+ A new reference that reflects the addition of offset to pointer.
+
+
+ Adds an element offset to the given reference.
+ The reference to add the offset to.
+ The offset to add.
+ The type of reference.
+ A new reference that reflects the addition of offset to pointer.
+
+
+ Adds a byte offset to the given reference.
+ The reference to add the offset to.
+ The offset to add.
+ The type of reference.
+ A new reference that reflects the addition of byte offset to pointer.
+
+
+ Determines whether the specified references point to the same location.
+ The first reference to compare.
+ The second reference to compare.
+ The type of reference.
+ true if left and right point to the same location; otherwise, false.
+
+
+ Casts the given object to the specified type.
+ The object to cast.
+ The type which the object will be cast to.
+ The original object, casted to the given type.
+
+
+ Reinterprets the given reference as a reference to a value of type TTo.
+ The reference to reinterpret.
+ The type of reference to reinterpret..
+ The desired type of the reference.
+ A reference to a value of type TTo.
+
+
+ Returns a pointer to the given by-ref parameter.
+ The object whose pointer is obtained.
+ The type of object.
+ A pointer to the given value.
+
+
+ Reinterprets the given location as a reference to a value of type T.
+ The location of the value to reference.
+ The type of the interpreted location.
+ A reference to a value of type T.
+
+
+ Determines the byte offset from origin to target from the given references.
+ The reference to origin.
+ The reference to target.
+ The type of reference.
+ Byte offset from origin to target i.e. target - origin.
+
+
+ Copies a value of type T to the given location.
+ The location to copy to.
+ A reference to the value to copy.
+ The type of value to copy.
+
+
+ Copies a value of type T to the given location.
+ The location to copy to.
+ A pointer to the value to copy.
+ The type of value to copy.
+
+
+ Copies bytes from the source address to the destination address.
+ The destination address to copy to.
+ The source address to copy from.
+ The number of bytes to copy.
+
+
+ Copies bytes from the source address to the destination address.
+ The destination address to copy to.
+ The source address to copy from.
+ The number of bytes to copy.
+
+
+ Copies bytes from the source address to the destination address
+without assuming architecture dependent alignment of the addresses.
+ The destination address to copy to.
+ The source address to copy from.
+ The number of bytes to copy.
+
+
+ Copies bytes from the source address to the destination address
+without assuming architecture dependent alignment of the addresses.
+ The destination address to copy to.
+ The source address to copy from.
+ The number of bytes to copy.
+
+
+ Initializes a block of memory at the given location with a given initial value.
+ The address of the start of the memory block to initialize.
+ The value to initialize the block to.
+ The number of bytes to initialize.
+
+
+ Initializes a block of memory at the given location with a given initial value.
+ The address of the start of the memory block to initialize.
+ The value to initialize the block to.
+ The number of bytes to initialize.
+
+
+ Initializes a block of memory at the given location with a given initial value
+without assuming architecture dependent alignment of the address.
+ The address of the start of the memory block to initialize.
+ The value to initialize the block to.
+ The number of bytes to initialize.
+
+
+ Initializes a block of memory at the given location with a given initial value
+without assuming architecture dependent alignment of the address.
+ The address of the start of the memory block to initialize.
+ The value to initialize the block to.
+ The number of bytes to initialize.
+
+
+ Reads a value of type T from the given location.
+ The location to read from.
+ The type to read.
+ An object of type T read from the given location.
+
+
+ Reads a value of type T from the given location
+without assuming architecture dependent alignment of the addresses.
+ The location to read from.
+ The type to read.
+ An object of type T read from the given location.
+
+
+ Reads a value of type T from the given location
+without assuming architecture dependent alignment of the addresses.
+ The location to read from.
+ The type to read.
+ An object of type T read from the given location.
+
+
+ Returns the size of an object of the given type parameter.
+ The type of object whose size is retrieved.
+ The size of an object of type T.
+
+
+ Subtracts an element offset from the given reference.
+ The reference to subtract the offset from.
+ The offset to subtract.
+ The type of reference.
+ A new reference that reflects the subraction of offset from pointer.
+
+
+ Subtracts an element offset from the given reference.
+ The reference to subtract the offset from.
+ The offset to subtract.
+ The type of reference.
+ A new reference that reflects the subraction of offset from pointer.
+
+
+ Subtracts a byte offset from the given reference.
+ The reference to subtract the offset from.
+
+ The type of reference.
+ A new reference that reflects the subraction of byte offset from pointer.
+
+
+ Writes a value of type T to the given location.
+ The location to write to.
+ The value to write.
+ The type of value to write.
+
+
+ Writes a value of type T to the given location
+without assuming architecture dependent alignment of the addresses.
+ The location to write to.
+ The value to write.
+ The type of value to write.
+
+
+ Writes a value of type T to the given location
+without assuming architecture dependent alignment of the addresses.
+ The location to write to.
+ The value to write.
+ The type of value to write.
+
+
+
\ No newline at end of file
diff --git a/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll
new file mode 100644
index 0000000..7f71a4b
Binary files /dev/null and b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll differ
diff --git a/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml
new file mode 100644
index 0000000..6a7cfcf
--- /dev/null
+++ b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml
@@ -0,0 +1,200 @@
+
+
+ System.Runtime.CompilerServices.Unsafe
+
+
+
+ Contains generic, low-level functionality for manipulating pointers.
+
+
+ Adds an element offset to the given reference.
+ The reference to add the offset to.
+ The offset to add.
+ The type of reference.
+ A new reference that reflects the addition of offset to pointer.
+
+
+ Adds an element offset to the given reference.
+ The reference to add the offset to.
+ The offset to add.
+ The type of reference.
+ A new reference that reflects the addition of offset to pointer.
+
+
+ Adds a byte offset to the given reference.
+ The reference to add the offset to.
+ The offset to add.
+ The type of reference.
+ A new reference that reflects the addition of byte offset to pointer.
+
+
+ Determines whether the specified references point to the same location.
+ The first reference to compare.
+ The second reference to compare.
+ The type of reference.
+ true if left and right point to the same location; otherwise, false.
+
+
+ Casts the given object to the specified type.
+ The object to cast.
+ The type which the object will be cast to.
+ The original object, casted to the given type.
+
+
+ Reinterprets the given reference as a reference to a value of type TTo.
+ The reference to reinterpret.
+ The type of reference to reinterpret..
+ The desired type of the reference.
+ A reference to a value of type TTo.
+
+
+ Returns a pointer to the given by-ref parameter.
+ The object whose pointer is obtained.
+ The type of object.
+ A pointer to the given value.
+
+
+ Reinterprets the given location as a reference to a value of type T.
+ The location of the value to reference.
+ The type of the interpreted location.
+ A reference to a value of type T.
+
+
+ Determines the byte offset from origin to target from the given references.
+ The reference to origin.
+ The reference to target.
+ The type of reference.
+ Byte offset from origin to target i.e. target - origin.
+
+
+ Copies a value of type T to the given location.
+ The location to copy to.
+ A reference to the value to copy.
+ The type of value to copy.
+
+
+ Copies a value of type T to the given location.
+ The location to copy to.
+ A pointer to the value to copy.
+ The type of value to copy.
+
+
+ Copies bytes from the source address to the destination address.
+ The destination address to copy to.
+ The source address to copy from.
+ The number of bytes to copy.
+
+
+ Copies bytes from the source address to the destination address.
+ The destination address to copy to.
+ The source address to copy from.
+ The number of bytes to copy.
+
+
+ Copies bytes from the source address to the destination address
+without assuming architecture dependent alignment of the addresses.
+ The destination address to copy to.
+ The source address to copy from.
+ The number of bytes to copy.
+
+
+ Copies bytes from the source address to the destination address
+without assuming architecture dependent alignment of the addresses.
+ The destination address to copy to.
+ The source address to copy from.
+ The number of bytes to copy.
+
+
+ Initializes a block of memory at the given location with a given initial value.
+ The address of the start of the memory block to initialize.
+ The value to initialize the block to.
+ The number of bytes to initialize.
+
+
+ Initializes a block of memory at the given location with a given initial value.
+ The address of the start of the memory block to initialize.
+ The value to initialize the block to.
+ The number of bytes to initialize.
+
+
+ Initializes a block of memory at the given location with a given initial value
+without assuming architecture dependent alignment of the address.
+ The address of the start of the memory block to initialize.
+ The value to initialize the block to.
+ The number of bytes to initialize.
+
+
+ Initializes a block of memory at the given location with a given initial value
+without assuming architecture dependent alignment of the address.
+ The address of the start of the memory block to initialize.
+ The value to initialize the block to.
+ The number of bytes to initialize.
+
+
+ Reads a value of type T from the given location.
+ The location to read from.
+ The type to read.
+ An object of type T read from the given location.
+
+
+ Reads a value of type T from the given location
+without assuming architecture dependent alignment of the addresses.
+ The location to read from.
+ The type to read.
+ An object of type T read from the given location.
+
+
+ Reads a value of type T from the given location
+without assuming architecture dependent alignment of the addresses.
+ The location to read from.
+ The type to read.
+ An object of type T read from the given location.
+
+
+ Returns the size of an object of the given type parameter.
+ The type of object whose size is retrieved.
+ The size of an object of type T.
+
+
+ Subtracts an element offset from the given reference.
+ The reference to subtract the offset from.
+ The offset to subtract.
+ The type of reference.
+ A new reference that reflects the subraction of offset from pointer.
+
+
+ Subtracts an element offset from the given reference.
+ The reference to subtract the offset from.
+ The offset to subtract.
+ The type of reference.
+ A new reference that reflects the subraction of offset from pointer.
+
+
+ Subtracts a byte offset from the given reference.
+ The reference to subtract the offset from.
+
+ The type of reference.
+ A new reference that reflects the subraction of byte offset from pointer.
+
+
+ Writes a value of type T to the given location.
+ The location to write to.
+ The value to write.
+ The type of value to write.
+
+
+ Writes a value of type T to the given location
+without assuming architecture dependent alignment of the addresses.
+ The location to write to.
+ The value to write.
+ The type of value to write.
+
+
+ Writes a value of type T to the given location
+without assuming architecture dependent alignment of the addresses.
+ The location to write to.
+ The value to write.
+ The type of value to write.
+
+
+
\ No newline at end of file
diff --git a/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll
new file mode 100644
index 0000000..50bf259
Binary files /dev/null and b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll differ
diff --git a/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml
new file mode 100644
index 0000000..6a7cfcf
--- /dev/null
+++ b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml
@@ -0,0 +1,200 @@
+
+
+ System.Runtime.CompilerServices.Unsafe
+
+
+
+ Contains generic, low-level functionality for manipulating pointers.
+
+
+ Adds an element offset to the given reference.
+ The reference to add the offset to.
+ The offset to add.
+ The type of reference.
+ A new reference that reflects the addition of offset to pointer.
+
+
+ Adds an element offset to the given reference.
+ The reference to add the offset to.
+ The offset to add.
+ The type of reference.
+ A new reference that reflects the addition of offset to pointer.
+
+
+ Adds a byte offset to the given reference.
+ The reference to add the offset to.
+ The offset to add.
+ The type of reference.
+ A new reference that reflects the addition of byte offset to pointer.
+
+
+ Determines whether the specified references point to the same location.
+ The first reference to compare.
+ The second reference to compare.
+ The type of reference.
+ true if left and right point to the same location; otherwise, false.
+
+
+ Casts the given object to the specified type.
+ The object to cast.
+ The type which the object will be cast to.
+ The original object, casted to the given type.
+
+
+ Reinterprets the given reference as a reference to a value of type TTo.
+ The reference to reinterpret.
+ The type of reference to reinterpret..
+ The desired type of the reference.
+ A reference to a value of type TTo.
+
+
+ Returns a pointer to the given by-ref parameter.
+ The object whose pointer is obtained.
+ The type of object.
+ A pointer to the given value.
+
+
+ Reinterprets the given location as a reference to a value of type T.
+ The location of the value to reference.
+ The type of the interpreted location.
+ A reference to a value of type T.
+
+
+ Determines the byte offset from origin to target from the given references.
+ The reference to origin.
+ The reference to target.
+ The type of reference.
+ Byte offset from origin to target i.e. target - origin.
+
+
+ Copies a value of type T to the given location.
+ The location to copy to.
+ A reference to the value to copy.
+ The type of value to copy.
+
+
+ Copies a value of type T to the given location.
+ The location to copy to.
+ A pointer to the value to copy.
+ The type of value to copy.
+
+
+ Copies bytes from the source address to the destination address.
+ The destination address to copy to.
+ The source address to copy from.
+ The number of bytes to copy.
+
+
+ Copies bytes from the source address to the destination address.
+ The destination address to copy to.
+ The source address to copy from.
+ The number of bytes to copy.
+
+
+ Copies bytes from the source address to the destination address
+without assuming architecture dependent alignment of the addresses.
+ The destination address to copy to.
+ The source address to copy from.
+ The number of bytes to copy.
+
+
+ Copies bytes from the source address to the destination address
+without assuming architecture dependent alignment of the addresses.
+ The destination address to copy to.
+ The source address to copy from.
+ The number of bytes to copy.
+
+
+ Initializes a block of memory at the given location with a given initial value.
+ The address of the start of the memory block to initialize.
+ The value to initialize the block to.
+ The number of bytes to initialize.
+
+
+ Initializes a block of memory at the given location with a given initial value.
+ The address of the start of the memory block to initialize.
+ The value to initialize the block to.
+ The number of bytes to initialize.
+
+
+ Initializes a block of memory at the given location with a given initial value
+without assuming architecture dependent alignment of the address.
+ The address of the start of the memory block to initialize.
+ The value to initialize the block to.
+ The number of bytes to initialize.
+
+
+ Initializes a block of memory at the given location with a given initial value
+without assuming architecture dependent alignment of the address.
+ The address of the start of the memory block to initialize.
+ The value to initialize the block to.
+ The number of bytes to initialize.
+
+
+ Reads a value of type T from the given location.
+ The location to read from.
+ The type to read.
+ An object of type T read from the given location.
+
+
+ Reads a value of type T from the given location
+without assuming architecture dependent alignment of the addresses.
+ The location to read from.
+ The type to read.
+ An object of type T read from the given location.
+
+
+ Reads a value of type T from the given location
+without assuming architecture dependent alignment of the addresses.
+ The location to read from.
+ The type to read.
+ An object of type T read from the given location.
+
+
+ Returns the size of an object of the given type parameter.
+ The type of object whose size is retrieved.
+ The size of an object of type T.
+
+
+ Subtracts an element offset from the given reference.
+ The reference to subtract the offset from.
+ The offset to subtract.
+ The type of reference.
+ A new reference that reflects the subraction of offset from pointer.
+
+
+ Subtracts an element offset from the given reference.
+ The reference to subtract the offset from.
+ The offset to subtract.
+ The type of reference.
+ A new reference that reflects the subraction of offset from pointer.
+
+
+ Subtracts a byte offset from the given reference.
+ The reference to subtract the offset from.
+
+ The type of reference.
+ A new reference that reflects the subraction of byte offset from pointer.
+
+
+ Writes a value of type T to the given location.
+ The location to write to.
+ The value to write.
+ The type of value to write.
+
+
+ Writes a value of type T to the given location
+without assuming architecture dependent alignment of the addresses.
+ The location to write to.
+ The value to write.
+ The type of value to write.
+
+
+ Writes a value of type T to the given location
+without assuming architecture dependent alignment of the addresses.
+ The location to write to.
+ The value to write.
+ The type of value to write.
+
+
+
\ No newline at end of file
diff --git a/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/useSharedDesignerContext.txt b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/useSharedDesignerContext.txt
new file mode 100644
index 0000000..e69de29
diff --git a/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/version.txt b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/version.txt
new file mode 100644
index 0000000..8d6cdd6
--- /dev/null
+++ b/temp-deps/packages/System.Runtime.CompilerServices.Unsafe.4.5.3/version.txt
@@ -0,0 +1 @@
+7601f4f6225089ffb291dc7d58293c7bbf5c5d4f