-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Although the files on bin and obj are not required, I'm leaving them …
…for now, because the required dll is on bin and I've not yet created a .gitignore
- Loading branch information
1 parent
914aecd
commit 99138a3
Showing
201 changed files
with
3,423 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
Import-Module ./../bin/Debug/netcoreapp2.0/linux-arm/publish/ws281xPowerShell.dll -Force | ||
$LedStripSettings = [PSCustomObject]@{ | ||
NumberOfLeds = 21 | ||
Brightness = 50 | ||
Color = [System.Drawing.Color]::Green | ||
Speed = "Fast" | ||
} | ||
|
||
while($true) | ||
{ | ||
while((Get-GpioPin -Id 26 -PullMode PullUp).Value -eq 'High') | ||
{ | ||
|
||
} | ||
$held = 0 | ||
while((Get-GpioPin -Id 26 -PullMode PullUp).Value -eq 'Low' -AND $held -lt 10) #lt 10 because each time $held is incremented, 100ms have passed, after 10 iterations, 1 second passed | ||
{ | ||
Start-Sleep -Milliseconds 100 | ||
++$held | ||
} | ||
|
||
if($held -lt 10) #realeased before 1s | ||
{ | ||
$LedStripSettings | Set-LedAccrossStrip | ||
} | ||
else # it was pressed at least during 1 second ( might still be being pressed) | ||
{ | ||
Write-Host "Button pressed for at least 1 second. " | ||
Set-RainbowCycle -NumberOfLeds $LedStripSettings.NumberOfLeds -Brightness $LedStripSettings.Brightness -NumberOfCycles 1 | ||
Start-Sleep -Milliseconds 200 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Drawing; | ||
using System.Management.Automation; // PowerShell namespace. | ||
using System.Threading; | ||
|
||
namespace WS281x.CmdLets | ||
{ | ||
|
||
[Cmdlet(VerbsCommon.Set, "LedAccrossStrip")] | ||
public class LedAccrossStrip : Cmdlet | ||
{ | ||
[Parameter(Mandatory = true, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, Position = 0)] | ||
public int NumberOfLeds {get; set;} | ||
|
||
[Parameter(Mandatory = true, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, Position = 1)] | ||
public byte Brightness { get; set; } | ||
|
||
[Parameter(Mandatory = true, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, Position = 2)] | ||
public Color Color { get; set; } | ||
|
||
[Parameter(Mandatory = false, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, Position = 5)] | ||
[ValidateSet("Slow", "Medium","Fast")] | ||
public string Speed { get; set; } | ||
|
||
[Parameter(Mandatory = false)] | ||
public SwitchParameter Invert {get;set;} | ||
|
||
public int GpioPin {get; set;} | ||
|
||
//* SPEED!!!! | ||
private Dictionary<string,int> _speedTranslation; | ||
|
||
public LedAccrossStrip() | ||
{ | ||
Invert = false; | ||
GpioPin = 18; | ||
|
||
} | ||
|
||
protected override void BeginProcessing() | ||
{ | ||
_speedTranslation = new Dictionary<string,int>() | ||
{ | ||
{"Slow", 300}, | ||
{"Medium", 125}, | ||
{"Fast", 50}, | ||
}; | ||
} | ||
|
||
protected override void ProcessRecord() | ||
{ | ||
Settings settings = Settings.CreateDefaultSettings(); | ||
settings.Channel = new Channel(NumberOfLeds, GpioPin, Brightness, Invert, StripType.WS2812_STRIP); | ||
WS281x controller = new WS281x(settings); | ||
|
||
|
||
for(int i = 0 ; i < NumberOfLeds ; ++i) | ||
{ | ||
for(int j = 0 ; j < i ; ++j) | ||
{ | ||
controller.SetLEDColor(j, Color.Empty); | ||
} | ||
controller.SetLEDColor(i,Color); | ||
controller.Render(); | ||
Thread.Sleep(_speedTranslation[Speed]); | ||
} | ||
//"hack". turn the last led of | ||
controller.SetLEDColor(NumberOfLeds-1,Color.Empty); | ||
controller.Render(); | ||
//for some reason it has to be explicitly disposed | ||
controller.Dispose(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+159 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/Microsoft.VisualBasic.dll
Binary file not shown.
Binary file added
BIN
+6 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/Microsoft.Win32.Primitives.dll
Binary file not shown.
Binary file added
BIN
+25 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/Microsoft.Win32.Registry.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+78 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Collections.Concurrent.dll
Binary file not shown.
Binary file added
BIN
+160 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Collections.Immutable.dll
Binary file not shown.
Binary file added
BIN
+36.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Collections.NonGeneric.dll
Binary file not shown.
Binary file added
BIN
+31.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Collections.Specialized.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+62.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.ComponentModel.Annotations.dll
Binary file not shown.
Binary file added
BIN
+4 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.ComponentModel.Composition.dll
Binary file not shown.
Binary file added
BIN
+5.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.ComponentModel.DataAnnotations.dll
Binary file not shown.
Binary file added
BIN
+14.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.ComponentModel.EventBasedAsync.dll
Binary file not shown.
Binary file added
BIN
+19.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.ComponentModel.Primitives.dll
Binary file not shown.
Binary file added
BIN
+245 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.ComponentModel.TypeConverter.dll
Binary file not shown.
Binary file added
BIN
+5.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.ComponentModel.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+7 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Diagnostics.Contracts.dll
Binary file not shown.
Binary file added
BIN
+8.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Diagnostics.Debug.dll
Binary file not shown.
Binary file added
BIN
+27 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Diagnostics.DiagnosticSource.dll
Binary file not shown.
Binary file added
BIN
+15 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Diagnostics.FileVersionInfo.dll
Binary file not shown.
Binary file added
BIN
+77 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Diagnostics.Process.dll
Binary file not shown.
Binary file added
BIN
+16 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Diagnostics.StackTrace.dll
Binary file not shown.
Binary file added
BIN
+11 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Diagnostics.TextWriterTraceListener.dll
Binary file not shown.
Binary file added
BIN
+7 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Diagnostics.Tools.dll
Binary file not shown.
Binary file added
BIN
+40.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Diagnostics.TraceSource.dll
Binary file not shown.
Binary file added
BIN
+9 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Diagnostics.Tracing.dll
Binary file not shown.
Binary file added
BIN
+37 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Drawing.Primitives.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+6.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Dynamic.Runtime.dll
Binary file not shown.
Binary file added
BIN
+7 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Globalization.Calendars.dll
Binary file not shown.
Binary file added
BIN
+7 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Globalization.Extensions.dll
Binary file not shown.
Binary file added
BIN
+75.2 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Globalization.Native.so
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+4 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.IO.Compression.FileSystem.dll
Binary file not shown.
Binary file added
BIN
+5.73 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.IO.Compression.Native.so
Binary file not shown.
Binary file added
BIN
+12.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.IO.Compression.ZipFile.dll
Binary file not shown.
Binary file added
BIN
+106 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.IO.Compression.dll
Binary file not shown.
Binary file added
BIN
+12 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.IO.FileSystem.AccessControl.dll
Binary file not shown.
Binary file added
BIN
+26.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.IO.FileSystem.DriveInfo.dll
Binary file not shown.
Binary file added
BIN
+6.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.IO.FileSystem.Primitives.dll
Binary file not shown.
Binary file added
BIN
+35.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.IO.FileSystem.Watcher.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+29.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.IO.IsolatedStorage.dll
Binary file not shown.
Binary file added
BIN
+31 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.IO.MemoryMappedFiles.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+6.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.IO.UnmanagedMemoryStream.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+525 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Linq.Expressions.dll
Binary file not shown.
Binary file added
BIN
+200 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Linq.Parallel.dll
Binary file not shown.
Binary file added
BIN
+57 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Linq.Queryable.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+2.87 MB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Management.Automation.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+9.76 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Net.Http.Native.so
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+138 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Net.HttpListener.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+34 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Net.NameResolution.dll
Binary file not shown.
Binary file added
BIN
+70 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Net.NetworkInformation.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+74.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Net.Primitives.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+9.8 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Net.Security.Native.so
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+14 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Net.ServicePoint.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+56.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Net.WebClient.dll
Binary file not shown.
Binary file added
BIN
+24 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Net.WebHeaderCollection.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+54.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Net.WebSockets.Client.dll
Binary file not shown.
Binary file added
BIN
+16.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Net.WebSockets.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+143 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Numerics.Vectors.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+2.29 MB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Private.CoreLib.dll
Binary file not shown.
Binary file added
BIN
+718 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Private.DataContractSerialization.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+131 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Private.Xml.Linq.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+25 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Reflection.DispatchProxy.dll
Binary file not shown.
Binary file added
BIN
+6.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Reflection.Emit.ILGeneration.dll
Binary file not shown.
Binary file added
BIN
+6.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Reflection.Emit.Lightweight.dll
Binary file not shown.
Binary file added
BIN
+6 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Reflection.Emit.dll
Binary file not shown.
Binary file added
BIN
+6.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Reflection.Extensions.dll
Binary file not shown.
Binary file added
BIN
+420 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Reflection.Metadata.dll
Binary file not shown.
Binary file added
BIN
+7 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Reflection.Primitives.dll
Binary file not shown.
Binary file added
BIN
+12.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Reflection.TypeExtensions.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+6 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Resources.Reader.dll
Binary file not shown.
Binary file added
BIN
+6.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Resources.ResourceManager.dll
Binary file not shown.
Binary file added
BIN
+15.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Resources.Writer.dll
Binary file not shown.
Binary file added
BIN
+6 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Runtime.CompilerServices.VisualC.dll
Binary file not shown.
Binary file added
BIN
+180 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Runtime.Extensions.dll
Binary file not shown.
Binary file added
BIN
+6 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Runtime.Handles.dll
Binary file not shown.
Binary file added
BIN
+9.5 KB
...bug/netcoreapp2.0/linux-arm/publish/System.Runtime.InteropServices.RuntimeInformation.dll
Binary file not shown.
Binary file added
BIN
+10 KB
...n/Debug/netcoreapp2.0/linux-arm/publish/System.Runtime.InteropServices.WindowsRuntime.dll
Binary file not shown.
Binary file added
BIN
+24 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Runtime.InteropServices.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+55 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Runtime.Numerics.dll
Binary file not shown.
Binary file added
BIN
+112 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Runtime.Serialization.Formatters.dll
Binary file not shown.
Binary file added
BIN
+6.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Runtime.Serialization.Json.dll
Binary file not shown.
Binary file added
BIN
+11.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Runtime.Serialization.Primitives.dll
Binary file not shown.
Binary file added
BIN
+7.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Runtime.Serialization.Xml.dll
Binary file not shown.
Binary file added
BIN
+5.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Runtime.Serialization.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+30 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Security.AccessControl.dll
Binary file not shown.
Binary file added
BIN
+39.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Security.Claims.dll
Binary file not shown.
Binary file added
BIN
+107 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Security.Cryptography.Algorithms.dll
Binary file not shown.
Binary file added
BIN
+22.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Security.Cryptography.Cng.dll
Binary file not shown.
Binary file added
BIN
+38.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Security.Cryptography.Csp.dll
Binary file not shown.
Binary file added
BIN
+30 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Security.Cryptography.Encoding.dll
Binary file not shown.
Binary file added
BIN
+99 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Security.Cryptography.Native.OpenSsl.so
Binary file not shown.
Binary file added
BIN
+37 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Security.Cryptography.OpenSsl.dll
Binary file not shown.
Binary file added
BIN
+34.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Security.Cryptography.Primitives.dll
Binary file not shown.
Binary file added
BIN
+169 KB
...n/Debug/netcoreapp2.0/linux-arm/publish/System.Security.Cryptography.X509Certificates.dll
Binary file not shown.
Binary file added
BIN
+19 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Security.Principal.Windows.dll
Binary file not shown.
Binary file added
BIN
+5.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Security.Principal.dll
Binary file not shown.
Binary file added
BIN
+6.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Security.SecureString.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+4.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.ServiceModel.Web.dll
Binary file not shown.
Binary file added
BIN
+4.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.ServiceProcess.dll
Binary file not shown.
Binary file added
BIN
+6.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Text.Encoding.Extensions.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+100 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Text.RegularExpressions.dll
Binary file not shown.
Binary file added
BIN
+7.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Threading.Overlapped.dll
Binary file not shown.
Binary file added
BIN
+153 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Threading.Tasks.Dataflow.dll
Binary file not shown.
Binary file added
BIN
+9.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Threading.Tasks.Extensions.dll
Binary file not shown.
Binary file added
BIN
+40 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Threading.Tasks.Parallel.dll
Binary file not shown.
Binary file added
BIN
+7 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Threading.Tasks.dll
Binary file not shown.
Binary file added
BIN
+18.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Threading.Thread.dll
Binary file not shown.
Binary file added
BIN
+6.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Threading.ThreadPool.dll
Binary file not shown.
Binary file added
BIN
+6 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Threading.Timer.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+140 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Transactions.Local.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+14.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Web.HttpUtility.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+12 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Xml.ReaderWriter.dll
Binary file not shown.
Binary file added
BIN
+5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Xml.Serialization.dll
Binary file not shown.
Binary file added
BIN
+6.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Xml.XDocument.dll
Binary file not shown.
Binary file added
BIN
+7 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Xml.XPath.XDocument.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+6.5 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Xml.XmlDocument.dll
Binary file not shown.
Binary file added
BIN
+9 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/System.Xml.XmlSerializer.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+560 KB
src/bin/Debug/netcoreapp2.0/linux-arm/publish/libcoreclrtraceptprovider.so
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.