├── .vs └── XCI Tool │ └── v14 │ └── .suo ├── README.md ├── XCI Tool.ico ├── XCI Tool.png ├── XCI Tool.sln ├── XCI Tool ├── App.config ├── BetterBinaryReader.cs ├── BetterTreeNode.cs ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── HFS0.cs ├── NSWreleases.xml ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ └── XCI Tool.ico ├── TreeViewFileSystem.cs ├── XCI Tool.csproj ├── bin │ └── Debug │ │ ├── Be.Windows.Forms.HexBox.dll │ │ ├── Be.Windows.Forms.HexBox.xml │ │ ├── ByteSize.dll │ │ ├── Crc32.NET.dll │ │ ├── Crc32.NET.xml │ │ ├── Microsoft.Threading.Tasks.Extensions.Desktop.dll │ │ ├── Microsoft.Threading.Tasks.Extensions.Desktop.xml │ │ ├── Microsoft.Threading.Tasks.Extensions.dll │ │ ├── Microsoft.Threading.Tasks.Extensions.xml │ │ ├── Microsoft.Threading.Tasks.dll │ │ ├── Microsoft.Threading.Tasks.xml │ │ ├── NSWreleases.xml │ │ ├── Nito.AsyncEx.Concurrent.dll │ │ ├── Nito.AsyncEx.Concurrent.xml │ │ ├── Nito.AsyncEx.Enlightenment.dll │ │ ├── Nito.AsyncEx.Enlightenment.xml │ │ ├── Nito.AsyncEx.dll │ │ ├── Nito.AsyncEx.xml │ │ ├── XCI Tool.exe │ │ ├── XCI Tool.exe.config │ │ ├── XCI Tool.pdb │ │ ├── XCI Tool.vshost.exe │ │ ├── XCI Tool.vshost.exe.config │ │ └── XCI Tool.vshost.exe.manifest ├── obj │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TempPE │ │ └── Properties.Resources.Designer.cs.dll │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── XCI Tool.csproj.FileListAbsolute.txt │ │ ├── XCI Tool.csproj.GenerateResource.Cache │ │ ├── XCI Tool.csprojResolveAssemblyReference.cache │ │ ├── XCI Tool.exe │ │ ├── XCI Tool.pdb │ │ ├── XCI_Tool.Form1.resources │ │ └── XCI_Tool.Properties.Resources.resources └── packages.config └── packages ├── Be.Windows.Forms.HexBox.1.6.1 ├── Be.Windows.Forms.HexBox.1.6.1.nupkg ├── LICENSE.txt └── lib │ └── net40 │ ├── Be.Windows.Forms.HexBox.dll │ └── Be.Windows.Forms.HexBox.xml ├── ByteSize.1.3.0 ├── ByteSize.1.3.0.nupkg └── lib │ ├── net35 │ └── ByteSize.dll │ ├── net40 │ └── ByteSize.dll │ ├── net45 │ └── ByteSize.dll │ ├── netstandard1.0 │ └── ByteSize.dll │ └── portable40-net40+sl5+win8+wp8 │ └── ByteSize.dll ├── Crc32.NET.1.2.0 ├── Crc32.NET.1.2.0.nupkg └── lib │ ├── net20 │ ├── Crc32.NET.dll │ └── Crc32.NET.xml │ ├── netstandard1.3 │ ├── Crc32.NET.dll │ └── Crc32.NET.xml │ └── netstandard2.0 │ ├── Crc32.NET.dll │ └── Crc32.NET.xml ├── Microsoft.Bcl.1.1.10 ├── License-Stable.rtf ├── Microsoft.Bcl.1.1.10.nupkg └── lib │ ├── Xamarin.iOS10 │ └── _._ │ ├── monoandroid │ └── _._ │ ├── monotouch │ └── _._ │ ├── net40 │ ├── System.IO.dll │ ├── System.IO.xml │ ├── System.Runtime.dll │ ├── System.Runtime.xml │ ├── System.Threading.Tasks.dll │ ├── System.Threading.Tasks.xml │ └── ensureRedirect.xml │ ├── net45 │ └── _._ │ ├── portable-net40+sl4+win8+wp71+wpa81 │ ├── System.IO.dll │ ├── System.IO.xml │ ├── System.Runtime.dll │ ├── System.Runtime.xml │ ├── System.Threading.Tasks.dll │ ├── System.Threading.Tasks.xml │ └── ensureRedirect.xml │ ├── portable-net40+sl4+win8+wp8+wpa81 │ ├── System.IO.dll │ ├── System.IO.xml │ ├── System.Runtime.dll │ ├── System.Runtime.xml │ ├── System.Threading.Tasks.dll │ ├── System.Threading.Tasks.xml │ └── ensureRedirect.xml │ ├── portable-net40+sl4+win8 │ ├── System.IO.dll │ ├── System.IO.xml │ ├── System.Runtime.dll │ ├── System.Runtime.xml │ ├── System.Threading.Tasks.dll │ ├── System.Threading.Tasks.xml │ └── ensureRedirect.xml │ ├── portable-net40+sl5+win8+wp8+wpa81 │ ├── System.IO.dll │ ├── System.IO.xml │ ├── System.Runtime.dll │ ├── System.Runtime.xml │ ├── System.Threading.Tasks.dll │ ├── System.Threading.Tasks.xml │ └── ensureRedirect.xml │ ├── portable-net40+win8+wp8+wpa81 │ ├── System.IO.dll │ ├── System.IO.xml │ ├── System.Runtime.dll │ ├── System.Runtime.xml │ ├── System.Threading.Tasks.dll │ ├── System.Threading.Tasks.xml │ └── ensureRedirect.xml │ ├── portable-net40+win8 │ ├── System.IO.dll │ ├── System.IO.xml │ ├── System.Runtime.dll │ ├── System.Runtime.xml │ ├── System.Threading.Tasks.dll │ ├── System.Threading.Tasks.xml │ └── ensureRedirect.xml │ ├── portable-net45+win8+wp8+wpa81 │ └── _._ │ ├── portable-net45+win8+wpa81 │ └── _._ │ ├── portable-net451+win81+wpa81 │ └── _._ │ ├── portable-net451+win81 │ └── _._ │ ├── portable-win81+wp81+wpa81 │ └── _._ │ ├── sl4-windowsphone71 │ ├── System.IO.dll │ ├── System.IO.xml │ ├── System.Runtime.dll │ ├── System.Runtime.xml │ ├── System.Threading.Tasks.dll │ ├── System.Threading.Tasks.xml │ └── ensureRedirect.xml │ ├── sl4 │ ├── System.IO.dll │ ├── System.IO.xml │ ├── System.Runtime.dll │ ├── System.Runtime.xml │ ├── System.Threading.Tasks.dll │ └── System.Threading.Tasks.xml │ ├── sl5 │ ├── System.IO.dll │ ├── System.IO.xml │ ├── System.Runtime.dll │ ├── System.Runtime.xml │ ├── System.Threading.Tasks.dll │ └── System.Threading.Tasks.xml │ ├── win8 │ └── _._ │ ├── wp8 │ └── _._ │ └── wpa81 │ └── _._ ├── Microsoft.Bcl.Async.1.0.168 ├── License-Stable.rtf ├── Microsoft.Bcl.Async.1.0.168.nupkg └── lib │ ├── net40 │ ├── Microsoft.Threading.Tasks.Extensions.Desktop.dll │ ├── Microsoft.Threading.Tasks.Extensions.Desktop.xml │ ├── Microsoft.Threading.Tasks.Extensions.dll │ ├── Microsoft.Threading.Tasks.Extensions.xml │ ├── Microsoft.Threading.Tasks.dll │ └── Microsoft.Threading.Tasks.xml │ ├── portable-net40+sl4+win8+wp71+wpa81 │ ├── Microsoft.Threading.Tasks.Extensions.dll │ ├── Microsoft.Threading.Tasks.Extensions.xml │ ├── Microsoft.Threading.Tasks.dll │ └── Microsoft.Threading.Tasks.xml │ ├── portable-net45+win8+wp8+wpa81 │ ├── Microsoft.Threading.Tasks.Extensions.dll │ ├── Microsoft.Threading.Tasks.Extensions.xml │ ├── Microsoft.Threading.Tasks.dll │ └── Microsoft.Threading.Tasks.xml │ ├── portable-net45+win8+wpa81 │ ├── Microsoft.Threading.Tasks.Extensions.dll │ ├── Microsoft.Threading.Tasks.Extensions.xml │ ├── Microsoft.Threading.Tasks.dll │ └── Microsoft.Threading.Tasks.xml │ ├── sl4-windowsphone71 │ ├── Microsoft.Threading.Tasks.Extensions.Phone.dll │ ├── Microsoft.Threading.Tasks.Extensions.Phone.xml │ ├── Microsoft.Threading.Tasks.Extensions.dll │ ├── Microsoft.Threading.Tasks.Extensions.xml │ ├── Microsoft.Threading.Tasks.dll │ └── Microsoft.Threading.Tasks.xml │ ├── sl4 │ ├── Microsoft.Threading.Tasks.Extensions.Silverlight.dll │ ├── Microsoft.Threading.Tasks.Extensions.Silverlight.xml │ ├── Microsoft.Threading.Tasks.Extensions.dll │ ├── Microsoft.Threading.Tasks.Extensions.xml │ ├── Microsoft.Threading.Tasks.dll │ └── Microsoft.Threading.Tasks.xml │ ├── win8 │ ├── Microsoft.Threading.Tasks.Extensions.dll │ ├── Microsoft.Threading.Tasks.Extensions.xml │ ├── Microsoft.Threading.Tasks.dll │ └── Microsoft.Threading.Tasks.xml │ ├── wp8 │ ├── Microsoft.Threading.Tasks.Extensions.Phone.dll │ ├── Microsoft.Threading.Tasks.Extensions.Phone.xml │ ├── Microsoft.Threading.Tasks.Extensions.dll │ ├── Microsoft.Threading.Tasks.Extensions.xml │ ├── Microsoft.Threading.Tasks.dll │ └── Microsoft.Threading.Tasks.xml │ └── wpa81 │ ├── Microsoft.Threading.Tasks.Extensions.dll │ ├── Microsoft.Threading.Tasks.Extensions.xml │ ├── Microsoft.Threading.Tasks.dll │ └── Microsoft.Threading.Tasks.xml ├── Microsoft.Bcl.Build.1.0.21 ├── License-Stable.rtf ├── Microsoft.Bcl.Build.1.0.21.nupkg └── build │ ├── Microsoft.Bcl.Build.Tasks.dll │ └── Microsoft.Bcl.Build.targets └── Nito.AsyncEx.4.0.1 ├── Nito.AsyncEx.4.0.1.nupkg └── lib ├── MonoAndroid ├── Nito.AsyncEx.Concurrent.dll ├── Nito.AsyncEx.Concurrent.xml ├── Nito.AsyncEx.Enlightenment.dll ├── Nito.AsyncEx.Enlightenment.xml ├── Nito.AsyncEx.dll └── Nito.AsyncEx.xml ├── Xamarin.Mac20 ├── Nito.AsyncEx.Concurrent.dll ├── Nito.AsyncEx.Concurrent.xml ├── Nito.AsyncEx.Enlightenment.dll ├── Nito.AsyncEx.Enlightenment.xml ├── Nito.AsyncEx.dll └── Nito.AsyncEx.xml ├── Xamarin.iOS10 ├── Nito.AsyncEx.Concurrent.dll ├── Nito.AsyncEx.Concurrent.xml ├── Nito.AsyncEx.Enlightenment.dll ├── Nito.AsyncEx.Enlightenment.xml ├── Nito.AsyncEx.dll └── Nito.AsyncEx.xml ├── net40 ├── Nito.AsyncEx.Concurrent.dll ├── Nito.AsyncEx.Concurrent.xml ├── Nito.AsyncEx.Enlightenment.dll ├── Nito.AsyncEx.Enlightenment.xml ├── Nito.AsyncEx.dll └── Nito.AsyncEx.xml ├── net45 ├── Nito.AsyncEx.Concurrent.dll ├── Nito.AsyncEx.Concurrent.xml ├── Nito.AsyncEx.Enlightenment.dll ├── Nito.AsyncEx.Enlightenment.xml ├── Nito.AsyncEx.dll └── Nito.AsyncEx.xml ├── netcore451 ├── Nito.AsyncEx.Concurrent.dll ├── Nito.AsyncEx.Concurrent.xml ├── Nito.AsyncEx.Enlightenment.dll ├── Nito.AsyncEx.Enlightenment.xml ├── Nito.AsyncEx.dll └── Nito.AsyncEx.xml ├── portable-net40+netcore451+sl5+wp8+wpa81 ├── Nito.AsyncEx.dll └── Nito.AsyncEx.xml ├── portable-net40+netcore451 ├── Nito.AsyncEx.Concurrent.dll ├── Nito.AsyncEx.Concurrent.xml ├── Nito.AsyncEx.dll └── Nito.AsyncEx.xml ├── portable-net45+netcore451+wp8+wpa81 ├── Nito.AsyncEx.dll └── Nito.AsyncEx.xml ├── portable-net45+netcore451+wpa81 ├── Nito.AsyncEx.Concurrent.dll ├── Nito.AsyncEx.Concurrent.xml ├── Nito.AsyncEx.dll └── Nito.AsyncEx.xml ├── sl5 ├── Nito.AsyncEx.Enlightenment.dll ├── Nito.AsyncEx.Enlightenment.xml ├── Nito.AsyncEx.dll └── Nito.AsyncEx.xml ├── wp8 ├── Nito.AsyncEx.Enlightenment.dll ├── Nito.AsyncEx.Enlightenment.xml ├── Nito.AsyncEx.dll └── Nito.AsyncEx.xml └── wpa81 ├── Nito.AsyncEx.Concurrent.dll ├── Nito.AsyncEx.Concurrent.xml ├── Nito.AsyncEx.Enlightenment.dll ├── Nito.AsyncEx.Enlightenment.xml ├── Nito.AsyncEx.dll └── Nito.AsyncEx.xml /.vs/XCI Tool/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/.vs/XCI Tool/v14/.suo -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # XCI-Tool 2 | A Windows program that can view and extract the contents of a Nintendo Switch Cartridge Image (XCI) 3 | 4 | ## What this does 5 | This tool can view information and the files within a Nintendo Switch Cartridge Image (XCI). The files are displayed in a tree view and each file can be exported. The first 10 MB of the selected file is shown in a hex viewer. 6 | 7 | ## Building 8 | You will need: 9 | * Visual Studio 2015 or later 10 | * .NET Framework 4.5 or later 11 | 12 | 1. Clone the repo 13 | 2. Open the `.sln` file in Visual Studio 14 | 3. `Build > Build Solution` 15 | 16 | ## Unfortunately... 17 | XCI Tool **can not decrypt** anything. You will need the decryption key to do so. 18 | 19 | ## A New Tool 20 | XCI Tool will become deprecated in favor for a new tool called UltiSwitch. This will include an updated and more organized XCI Tool that will not come until I finish Blacksmith, another project of mine. 21 | 22 | ## Note 23 | Some files in the XCI files can be ***gigabytes*** in size. I implemented [this hacky solution (hey, it works)](https://github.com/theawesomecoder61/XCI-Tool/blob/master/XCI%20Tool/Form1.cs#L102) for exporting them. 24 | 25 | ## Thanks to 26 | * [Falo (on GBATemp)](https://pastebin.com/RMv2CW2H) 27 | * [SwitchBrew](http://switchbrew.org/index.php?title=Gamecard_Format) 28 | -------------------------------------------------------------------------------- /XCI Tool.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/XCI Tool.ico -------------------------------------------------------------------------------- /XCI Tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/XCI Tool.png -------------------------------------------------------------------------------- /XCI Tool.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 14 4 | VisualStudioVersion = 14.0.25420.1 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XCI Tool", "XCI Tool\XCI Tool.csproj", "{2A5A1F0A-32A1-4333-8B18-978E76E6BCEF}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {2A5A1F0A-32A1-4333-8B18-978E76E6BCEF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {2A5A1F0A-32A1-4333-8B18-978E76E6BCEF}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {2A5A1F0A-32A1-4333-8B18-978E76E6BCEF}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {2A5A1F0A-32A1-4333-8B18-978E76E6BCEF}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /XCI Tool/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /XCI Tool/BetterBinaryReader.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.IO; 4 | 5 | namespace theawesomecoder61.Helpers 6 | { 7 | public class BetterBinaryReader : IDisposable 8 | { 9 | public string FileName; 10 | public bool Initiated; 11 | public Stream Stream; 12 | 13 | private BinaryReader br; 14 | 15 | public BetterBinaryReader() 16 | { 17 | Initiated = false; 18 | } 19 | 20 | public BetterBinaryReader(string file) 21 | { 22 | Initiated = false; 23 | Load(file); 24 | } 25 | 26 | public BetterBinaryReader(Stream s) 27 | { 28 | Initiated = false; 29 | FileName = ""; 30 | Stream = s; 31 | br = new BinaryReader(Stream); 32 | } 33 | 34 | public void Dispose() 35 | { 36 | Initiated = false; 37 | 38 | br.Close(); 39 | br = null; 40 | 41 | Stream.Close(); 42 | Stream = null; 43 | } 44 | 45 | /// 46 | /// Loads a file. 47 | /// 48 | /// The file name to load. 49 | public void Load(string file) 50 | { 51 | FileName = file; 52 | Stream = new FileStream(file, FileMode.Open); 53 | br = new BinaryReader(Stream); 54 | 55 | Initiated = true; 56 | } 57 | 58 | /// 59 | /// Sets the current position. 60 | /// 61 | /// offset as a long, from the beginning of the file 62 | public void Seek(long o) 63 | { 64 | if (o > -1) 65 | { 66 | Stream.Seek(o, SeekOrigin.Begin); 67 | } 68 | } 69 | 70 | /// 71 | /// Increments or decrements the current position. 72 | /// 73 | /// offset as a long, can be negative to go backward 74 | public void Skip(long o) 75 | { 76 | Stream.Seek(o, SeekOrigin.Current); 77 | } 78 | 79 | /// 80 | /// Gets the current position. 81 | /// 82 | /// The method returns the current position as a long. 83 | public long Position() 84 | { 85 | return Stream.Position; 86 | } 87 | 88 | /// 89 | /// Returns an int of the current byte. 90 | /// 91 | /// The method returns an int. 92 | public int Read() 93 | { 94 | return br.ReadBytes(1)[0]; // br.Read() causes the error "output char buffer is too small..." 95 | } 96 | 97 | /// 98 | /// ??? 99 | /// 100 | /// the data to read from as a byte array 101 | /// the offset to read from 102 | /// the amount of bytes to read 103 | /// Why does this return an int? 104 | public int Read(byte[] buffer, int index, int count) 105 | { 106 | return br.Read(buffer, index, count); 107 | } 108 | 109 | /// 110 | /// ??? 111 | /// 112 | /// the data to read from as a char array 113 | /// the offset to read from 114 | /// the amount of bytes to read 115 | /// Why does this return an int? 116 | public int Read(char[] buffer, int index, int count) 117 | { 118 | return br.Read(buffer, index, count); 119 | } 120 | 121 | /// 122 | /// Returns a byte arrary with l bytes from current position. If you plan on reading gigabytes or using longs, use ReadBytesButLonger(). 123 | /// 124 | /// length of bytes to read, is an int 125 | /// The method returns a byte array. 126 | public byte[] ReadBytes(int l) 127 | { 128 | if (l < 0 || l > int.MaxValue) 129 | { 130 | return new byte[] { }; 131 | } 132 | else 133 | { 134 | return br.ReadBytes(l); 135 | } 136 | } 137 | 138 | /// 139 | /// Returns a stream with l bytes from current position. Note how this differs from ReadBytes(), as this supports longs. 140 | /// 141 | /// length of bytes to read, is a long 142 | /// 143 | public Stream ReadBytesButLonger(long l) 144 | { 145 | MemoryStream ms = new MemoryStream(); 146 | for(long i=0;i 155 | /// 156 | /// 157 | /// length of bytes to read, as an int 158 | /// The method returns 159 | public string ReadCharsAsString(int l) 160 | { 161 | return new string(br.ReadChars(l)); 162 | } 163 | 164 | /// 165 | /// Exactly ReadInt16(). 166 | /// 167 | /// The method returns a 16-bit signed integer (aka short). 168 | public short ReadShort() 169 | { 170 | return br.ReadInt16(); 171 | } 172 | 173 | /// 174 | /// Reads 2 bytes as a 16-bit signed integer. 175 | /// 176 | /// The method returns a 16-bit signed integer (aka short). 177 | public short ReadInt16() 178 | { 179 | return br.ReadInt16(); 180 | } 181 | 182 | /// 183 | /// Exactly ReadInt32(). 184 | /// 185 | /// The method returns a 32-bit signed integer (aka int). 186 | public int ReadInt() 187 | { 188 | return br.ReadInt32(); 189 | } 190 | 191 | /// 192 | /// Reads 4 bytes as a 32-bit signed integer (aka int). 193 | /// 194 | /// The method returns a 32-bit signed integer (aka int). 195 | public int ReadInt32() 196 | { 197 | return br.ReadInt32(); 198 | } 199 | 200 | /// 201 | /// Exactly ReadInt64(). 202 | /// 203 | /// The method returns a 64-bit signed integer (aka long). 204 | public long ReadLong() 205 | { 206 | return br.ReadInt64(); 207 | } 208 | 209 | /// 210 | /// Reads 8 bytes as a 64-bit signed integer (aka long). 211 | /// 212 | /// The method returns a 64-bit signed integer (aka long). 213 | public long ReadInt64() 214 | { 215 | return br.ReadInt64(); 216 | } 217 | 218 | /// 219 | /// Reads some bytes as a string. 220 | /// 221 | /// The method returns a string. 222 | public string ReadString() 223 | { 224 | return br.ReadString(); 225 | } 226 | 227 | private long GreatestDivisor(long n) 228 | { 229 | long d = 0; 230 | for (long i = 1; i < n/64; i++) 231 | { 232 | if (n % i == 0 && i != n) 233 | { 234 | d = i; 235 | } 236 | } 237 | return d; 238 | } 239 | } 240 | } -------------------------------------------------------------------------------- /XCI Tool/BetterTreeNode.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Forms; 2 | 3 | namespace theawesomecoder61.Helpers 4 | { 5 | public class BetterTreeNode : TreeNode 6 | { 7 | public long Offset; 8 | public long Size; 9 | 10 | public BetterTreeNode(string t) 11 | { 12 | Text = t; 13 | } 14 | } 15 | } -------------------------------------------------------------------------------- /XCI Tool/HFS0.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using theawesomecoder61.Helpers; 4 | 5 | namespace XCI_Tool 6 | { 7 | public class HFS0 8 | { 9 | public static byte[] MAGIC_HEAD = new byte[] { 0x48, 0x45, 0x41, 0x44 }; 10 | public static byte[] MAGIC_HFS0 = new byte[] { 0x48, 0x46, 0x53, 0x30 }; 11 | 12 | public struct HFS0_ENTRY 13 | { 14 | public long Offset; // relative to end of hfs0 header 15 | public long Size; 16 | public int ofsNameTable; // relative to start of Name Table 17 | public int szHeader; // size of the file header, default = 0 or 0x200 18 | public byte[] padding; 19 | public byte[] hash; 20 | 21 | public HFS0_ENTRY(BetterBinaryReader bbr) 22 | { 23 | Offset = bbr.ReadInt64(); 24 | Size = bbr.ReadInt64(); 25 | ofsNameTable = bbr.ReadInt32(); 26 | szHeader = bbr.ReadInt32(); 27 | padding = bbr.ReadBytes(0x8); 28 | hash = bbr.ReadBytes(0x20); // hash over the start of file, with szHeader as end 29 | } 30 | } 31 | 32 | public List entries; 33 | public List names; 34 | public int FileCount; 35 | 36 | public HFS0() 37 | { 38 | entries = new List(); 39 | names = new List(); 40 | } 41 | 42 | public void ReadData(BetterBinaryReader bbr) 43 | { 44 | int szNameTable; 45 | Console.WriteLine(bbr.Position()); 46 | 47 | //read Header 48 | byte[] magic = bbr.ReadBytes(4); 49 | if (magic[0] != ToDec(MAGIC_HFS0[0]) && magic[1] != ToDec(MAGIC_HFS0[1]) && magic[2] != ToDec(MAGIC_HFS0[2]) && magic[3] != ToDec(MAGIC_HFS0[3])) 50 | { 51 | throw new Exception("Invalid magic!"); 52 | } 53 | 54 | FileCount = bbr.ReadInt32(); 55 | szNameTable = bbr.ReadInt32(); 56 | bbr.ReadInt32(); //padding 57 | 58 | //read entries 59 | for (int i = 0; i < FileCount; i++) 60 | { 61 | entries.Add(new HFS0_ENTRY(bbr)); 62 | } 63 | 64 | //read names 65 | long posNT = bbr.Position(); 66 | 67 | for (int i = 0; i < FileCount; i++) 68 | { 69 | bbr.Seek(posNT + entries[i].ofsNameTable); 70 | 71 | string name = ""; 72 | List chars = new List(); 73 | int c; 74 | while ((c = bbr.Read()) != 0) 75 | { 76 | if (c == 0) 77 | { 78 | break; 79 | } 80 | else 81 | { 82 | chars.Add((char)c); 83 | } 84 | } 85 | 86 | Console.WriteLine(bbr.Position()); 87 | 88 | names.Add(new string(chars.ToArray())); 89 | } 90 | 91 | //jump to end of HFS0 header 92 | bbr.Seek(posNT + szNameTable); 93 | } 94 | 95 | private int ToDec(byte b) 96 | { 97 | return Convert.ToInt32(b); 98 | } 99 | } 100 | } -------------------------------------------------------------------------------- /XCI Tool/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace XCI_Tool 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// The main entry point for the application. 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new Form1()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /XCI Tool/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("XCI Tool")] 9 | [assembly: AssemblyDescription("View and extract files from a Nintendo Switch Cartridge Image (XCI)")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("theawesomecoer61")] 12 | [assembly: AssemblyProduct("XCI Tool")] 13 | [assembly: AssemblyCopyright("Copyright © theawesomecoder61 2018")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("2a5a1f0a-32a1-4333-8b18-978e76e6bcef")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /XCI Tool/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace XCI_Tool.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// A strongly-typed resource class, for looking up localized strings, etc. 17 | /// 18 | // This class was auto-generated by the StronglyTypedResourceBuilder 19 | // class via a tool like ResGen or Visual Studio. 20 | // To add or remove a member, edit your .ResX file then rerun ResGen 21 | // with the /str option, or rebuild your VS project. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// Returns the cached ResourceManager instance used by this class. 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("XCI_Tool.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// Overrides the current thread's CurrentUICulture property for all 51 | /// resource lookups using this strongly typed resource class. 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | 63 | /// 64 | /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). 65 | /// 66 | internal static System.Drawing.Icon XCI_Tool { 67 | get { 68 | object obj = ResourceManager.GetObject("XCI_Tool", resourceCulture); 69 | return ((System.Drawing.Icon)(obj)); 70 | } 71 | } 72 | } 73 | } 74 | -------------------------------------------------------------------------------- /XCI Tool/Properties/Resources.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 122 | ..\Resources\XCI Tool.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 123 | 124 | -------------------------------------------------------------------------------- /XCI Tool/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace XCI_Tool.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /XCI Tool/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /XCI Tool/Resources/XCI Tool.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/XCI Tool/Resources/XCI Tool.ico -------------------------------------------------------------------------------- /XCI Tool/TreeViewFileSystem.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Forms; 2 | using theawesomecoder61.Helpers; 3 | 4 | namespace XCI_Tool 5 | { 6 | public class TreeViewFileSystem 7 | { 8 | public TreeView treeView; 9 | 10 | public TreeViewFileSystem(TreeView tv) 11 | { 12 | } 13 | 14 | public BetterTreeNode AddDir(string name, BetterTreeNode parent = null, string unknown = "") 15 | { 16 | BetterTreeNode btn = new BetterTreeNode(name); 17 | btn.Offset = -1; 18 | btn.Size = -1; 19 | parent.Nodes.Add(btn); 20 | return btn; 21 | } 22 | 23 | public BetterTreeNode AddFile(string name, BetterTreeNode parent, long offset, long size) 24 | { 25 | BetterTreeNode btn = new BetterTreeNode(name); 26 | btn.Offset = offset; 27 | btn.Size = size; 28 | parent.Nodes.Add(btn); 29 | return btn; 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /XCI Tool/XCI Tool.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {2A5A1F0A-32A1-4333-8B18-978E76E6BCEF} 8 | WinExe 9 | Properties 10 | XCI_Tool 11 | XCI Tool 12 | v4.5 13 | 512 14 | 15 | 16 | 17 | 18 | AnyCPU 19 | true 20 | full 21 | false 22 | bin\Debug\ 23 | DEBUG;TRACE 24 | prompt 25 | 4 26 | 27 | 28 | AnyCPU 29 | pdbonly 30 | true 31 | bin\Release\ 32 | TRACE 33 | prompt 34 | 4 35 | 36 | 37 | Resources\XCI Tool.ico 38 | 39 | 40 | 41 | ..\packages\Be.Windows.Forms.HexBox.1.6.1\lib\net40\Be.Windows.Forms.HexBox.dll 42 | True 43 | 44 | 45 | ..\packages\ByteSize.1.3.0\lib\net45\ByteSize.dll 46 | True 47 | 48 | 49 | ..\packages\Crc32.NET.1.2.0\lib\net20\Crc32.NET.dll 50 | True 51 | 52 | 53 | ..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.dll 54 | True 55 | 56 | 57 | ..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.dll 58 | True 59 | 60 | 61 | ..\packages\Microsoft.Bcl.Async.1.0.168\lib\net40\Microsoft.Threading.Tasks.Extensions.Desktop.dll 62 | True 63 | 64 | 65 | ..\packages\Nito.AsyncEx.4.0.1\lib\net45\Nito.AsyncEx.dll 66 | True 67 | 68 | 69 | ..\packages\Nito.AsyncEx.4.0.1\lib\net45\Nito.AsyncEx.Concurrent.dll 70 | True 71 | 72 | 73 | ..\packages\Nito.AsyncEx.4.0.1\lib\net45\Nito.AsyncEx.Enlightenment.dll 74 | True 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | Form 95 | 96 | 97 | Form1.cs 98 | 99 | 100 | 101 | 102 | 103 | 104 | Form1.cs 105 | 106 | 107 | ResXFileCodeGenerator 108 | Resources.Designer.cs 109 | Designer 110 | 111 | 112 | True 113 | Resources.resx 114 | True 115 | 116 | 117 | 118 | SettingsSingleFileGenerator 119 | Settings.Designer.cs 120 | 121 | 122 | True 123 | Settings.settings 124 | True 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | PreserveNewest 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. 141 | 142 | 143 | 144 | 151 | -------------------------------------------------------------------------------- /XCI Tool/bin/Debug/Be.Windows.Forms.HexBox.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/XCI Tool/bin/Debug/Be.Windows.Forms.HexBox.dll -------------------------------------------------------------------------------- /XCI Tool/bin/Debug/ByteSize.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/XCI Tool/bin/Debug/ByteSize.dll -------------------------------------------------------------------------------- /XCI Tool/bin/Debug/Crc32.NET.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/XCI Tool/bin/Debug/Crc32.NET.dll -------------------------------------------------------------------------------- /XCI Tool/bin/Debug/Microsoft.Threading.Tasks.Extensions.Desktop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/XCI Tool/bin/Debug/Microsoft.Threading.Tasks.Extensions.Desktop.dll -------------------------------------------------------------------------------- /XCI Tool/bin/Debug/Microsoft.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/XCI Tool/bin/Debug/Microsoft.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /XCI Tool/bin/Debug/Microsoft.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/XCI Tool/bin/Debug/Microsoft.Threading.Tasks.dll -------------------------------------------------------------------------------- /XCI Tool/bin/Debug/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/XCI Tool/bin/Debug/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /XCI Tool/bin/Debug/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/XCI Tool/bin/Debug/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /XCI Tool/bin/Debug/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Nito.AsyncEx.Enlightenment 5 | 6 | 7 | 8 | 9 | Verifies platform enlightenment. 10 | 11 | 12 | 13 | 14 | Returns a value indicating whether the correct platform enlightenment provider has been loaded. 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /XCI Tool/bin/Debug/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/XCI Tool/bin/Debug/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /XCI Tool/bin/Debug/XCI Tool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/XCI Tool/bin/Debug/XCI Tool.exe -------------------------------------------------------------------------------- /XCI Tool/bin/Debug/XCI Tool.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /XCI Tool/bin/Debug/XCI Tool.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/XCI Tool/bin/Debug/XCI Tool.pdb -------------------------------------------------------------------------------- /XCI Tool/bin/Debug/XCI Tool.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/XCI Tool/bin/Debug/XCI Tool.vshost.exe -------------------------------------------------------------------------------- /XCI Tool/bin/Debug/XCI Tool.vshost.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /XCI Tool/bin/Debug/XCI Tool.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /XCI Tool/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/XCI Tool/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /XCI Tool/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/XCI Tool/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /XCI Tool/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/XCI Tool/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /XCI Tool/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/XCI Tool/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /XCI Tool/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/XCI Tool/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /XCI Tool/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/XCI Tool/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /XCI Tool/obj/Debug/XCI Tool.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\zachr\Documents\Visual Studio 2015\Projects\XCI Tool\XCI Tool\bin\Debug\NSWreleases.xml 2 | C:\Users\zachr\Documents\Visual Studio 2015\Projects\XCI Tool\XCI Tool\bin\Debug\XCI Tool.exe.config 3 | C:\Users\zachr\Documents\Visual Studio 2015\Projects\XCI Tool\XCI Tool\bin\Debug\XCI Tool.exe 4 | C:\Users\zachr\Documents\Visual Studio 2015\Projects\XCI Tool\XCI Tool\bin\Debug\XCI Tool.pdb 5 | C:\Users\zachr\Documents\Visual Studio 2015\Projects\XCI Tool\XCI Tool\bin\Debug\Be.Windows.Forms.HexBox.dll 6 | C:\Users\zachr\Documents\Visual Studio 2015\Projects\XCI Tool\XCI Tool\bin\Debug\ByteSize.dll 7 | C:\Users\zachr\Documents\Visual Studio 2015\Projects\XCI Tool\XCI Tool\bin\Debug\Crc32.NET.dll 8 | C:\Users\zachr\Documents\Visual Studio 2015\Projects\XCI Tool\XCI Tool\bin\Debug\Microsoft.Threading.Tasks.dll 9 | C:\Users\zachr\Documents\Visual Studio 2015\Projects\XCI Tool\XCI Tool\bin\Debug\Microsoft.Threading.Tasks.Extensions.Desktop.dll 10 | C:\Users\zachr\Documents\Visual Studio 2015\Projects\XCI Tool\XCI Tool\bin\Debug\Microsoft.Threading.Tasks.Extensions.dll 11 | C:\Users\zachr\Documents\Visual Studio 2015\Projects\XCI Tool\XCI Tool\bin\Debug\Nito.AsyncEx.Concurrent.dll 12 | C:\Users\zachr\Documents\Visual Studio 2015\Projects\XCI Tool\XCI Tool\bin\Debug\Nito.AsyncEx.dll 13 | C:\Users\zachr\Documents\Visual Studio 2015\Projects\XCI Tool\XCI Tool\bin\Debug\Nito.AsyncEx.Enlightenment.dll 14 | C:\Users\zachr\Documents\Visual Studio 2015\Projects\XCI Tool\XCI Tool\bin\Debug\Be.Windows.Forms.HexBox.xml 15 | C:\Users\zachr\Documents\Visual Studio 2015\Projects\XCI Tool\XCI Tool\bin\Debug\Crc32.NET.xml 16 | C:\Users\zachr\Documents\Visual Studio 2015\Projects\XCI Tool\XCI Tool\bin\Debug\Microsoft.Threading.Tasks.xml 17 | C:\Users\zachr\Documents\Visual Studio 2015\Projects\XCI Tool\XCI Tool\bin\Debug\Microsoft.Threading.Tasks.Extensions.xml 18 | C:\Users\zachr\Documents\Visual Studio 2015\Projects\XCI Tool\XCI Tool\bin\Debug\Microsoft.Threading.Tasks.Extensions.Desktop.xml 19 | C:\Users\zachr\Documents\Visual Studio 2015\Projects\XCI Tool\XCI Tool\bin\Debug\Nito.AsyncEx.xml 20 | C:\Users\zachr\Documents\Visual Studio 2015\Projects\XCI Tool\XCI Tool\bin\Debug\Nito.AsyncEx.Concurrent.xml 21 | C:\Users\zachr\Documents\Visual Studio 2015\Projects\XCI Tool\XCI Tool\bin\Debug\Nito.AsyncEx.Enlightenment.xml 22 | C:\Users\zachr\Documents\Visual Studio 2015\Projects\XCI Tool\XCI Tool\obj\Debug\XCI Tool.csprojResolveAssemblyReference.cache 23 | C:\Users\zachr\Documents\Visual Studio 2015\Projects\XCI Tool\XCI Tool\obj\Debug\XCI_Tool.Form1.resources 24 | C:\Users\zachr\Documents\Visual Studio 2015\Projects\XCI Tool\XCI Tool\obj\Debug\XCI_Tool.Properties.Resources.resources 25 | C:\Users\zachr\Documents\Visual Studio 2015\Projects\XCI Tool\XCI Tool\obj\Debug\XCI Tool.csproj.GenerateResource.Cache 26 | C:\Users\zachr\Documents\Visual Studio 2015\Projects\XCI Tool\XCI Tool\obj\Debug\XCI Tool.exe 27 | C:\Users\zachr\Documents\Visual Studio 2015\Projects\XCI Tool\XCI Tool\obj\Debug\XCI Tool.pdb 28 | -------------------------------------------------------------------------------- /XCI Tool/obj/Debug/XCI Tool.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/XCI Tool/obj/Debug/XCI Tool.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /XCI Tool/obj/Debug/XCI Tool.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/XCI Tool/obj/Debug/XCI Tool.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /XCI Tool/obj/Debug/XCI Tool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/XCI Tool/obj/Debug/XCI Tool.exe -------------------------------------------------------------------------------- /XCI Tool/obj/Debug/XCI Tool.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/XCI Tool/obj/Debug/XCI Tool.pdb -------------------------------------------------------------------------------- /XCI Tool/obj/Debug/XCI_Tool.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/XCI Tool/obj/Debug/XCI_Tool.Form1.resources -------------------------------------------------------------------------------- /XCI Tool/obj/Debug/XCI_Tool.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/XCI Tool/obj/Debug/XCI_Tool.Properties.Resources.resources -------------------------------------------------------------------------------- /XCI Tool/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /packages/Be.Windows.Forms.HexBox.1.6.1/Be.Windows.Forms.HexBox.1.6.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Be.Windows.Forms.HexBox.1.6.1/Be.Windows.Forms.HexBox.1.6.1.nupkg -------------------------------------------------------------------------------- /packages/Be.Windows.Forms.HexBox.1.6.1/LICENSE.txt: -------------------------------------------------------------------------------- 1 | The MIT License 2 | 3 | Copyright (c) 2011 Bernhard Elbl 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. -------------------------------------------------------------------------------- /packages/Be.Windows.Forms.HexBox.1.6.1/lib/net40/Be.Windows.Forms.HexBox.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Be.Windows.Forms.HexBox.1.6.1/lib/net40/Be.Windows.Forms.HexBox.dll -------------------------------------------------------------------------------- /packages/ByteSize.1.3.0/ByteSize.1.3.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/ByteSize.1.3.0/ByteSize.1.3.0.nupkg -------------------------------------------------------------------------------- /packages/ByteSize.1.3.0/lib/net35/ByteSize.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/ByteSize.1.3.0/lib/net35/ByteSize.dll -------------------------------------------------------------------------------- /packages/ByteSize.1.3.0/lib/net40/ByteSize.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/ByteSize.1.3.0/lib/net40/ByteSize.dll -------------------------------------------------------------------------------- /packages/ByteSize.1.3.0/lib/net45/ByteSize.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/ByteSize.1.3.0/lib/net45/ByteSize.dll -------------------------------------------------------------------------------- /packages/ByteSize.1.3.0/lib/netstandard1.0/ByteSize.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/ByteSize.1.3.0/lib/netstandard1.0/ByteSize.dll -------------------------------------------------------------------------------- /packages/ByteSize.1.3.0/lib/portable40-net40+sl5+win8+wp8/ByteSize.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/ByteSize.1.3.0/lib/portable40-net40+sl5+win8+wp8/ByteSize.dll -------------------------------------------------------------------------------- /packages/Crc32.NET.1.2.0/Crc32.NET.1.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Crc32.NET.1.2.0/Crc32.NET.1.2.0.nupkg -------------------------------------------------------------------------------- /packages/Crc32.NET.1.2.0/lib/net20/Crc32.NET.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Crc32.NET.1.2.0/lib/net20/Crc32.NET.dll -------------------------------------------------------------------------------- /packages/Crc32.NET.1.2.0/lib/netstandard1.3/Crc32.NET.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Crc32.NET.1.2.0/lib/netstandard1.3/Crc32.NET.dll -------------------------------------------------------------------------------- /packages/Crc32.NET.1.2.0/lib/netstandard2.0/Crc32.NET.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Crc32.NET.1.2.0/lib/netstandard2.0/Crc32.NET.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/License-Stable.rtf: -------------------------------------------------------------------------------- 1 | {\rtf1\ansi\ansicpg1252\deff0\nouicompat\deflang1033{\fonttbl{\f0\fswiss\fprq2\fcharset0 Tahoma;}{\f1\froman\fprq2\fcharset0 Times New Roman;}{\f2\fswiss\fprq2\fcharset0 Calibri;}{\f3\fnil\fcharset0 Calibri;}{\f4\fnil\fcharset2 Symbol;}} 2 | {\colortbl ;\red31\green73\blue125;\red0\green0\blue255;} 3 | {\*\listtable 4 | {\list\listhybrid 5 | {\listlevel\levelnfc0\leveljc0\levelstartat1{\leveltext\'02\'00.;}{\levelnumbers\'01;}\jclisttab\tx360} 6 | {\listlevel\levelnfc4\leveljc0\levelstartat1{\leveltext\'02\'01.;}{\levelnumbers\'01;}\jclisttab\tx363} 7 | {\listlevel\levelnfc2\leveljc0\levelstartat1{\leveltext\'02\'02.;}{\levelnumbers\'01;}\jclisttab\tx720}\listid1 } 8 | {\list\listhybrid 9 | {\listlevel\levelnfc0\leveljc0\levelstartat1{\leveltext\'02\'00.;}{\levelnumbers\'01;}\jclisttab\tx363} 10 | {\listlevel\levelnfc4\leveljc0\levelstartat1{\leveltext\'02\'01.;}{\levelnumbers\'01;}\jclisttab\tx363}\listid2 }} 11 | {\*\listoverridetable{\listoverride\listid1\listoverridecount0\ls1}{\listoverride\listid2\listoverridecount0\ls2}} 12 | {\stylesheet{ Normal;}{\s1 heading 1;}{\s2 heading 2;}{\s3 heading 3;}} 13 | {\*\generator Riched20 6.2.9200}\viewkind4\uc1 14 | \pard\nowidctlpar\sb120\sa120\b\f0\fs24 MICROSOFT SOFTWARE LICENSE TERMS\par 15 | 16 | \pard\brdrb\brdrs\brdrw10\brsp20 \nowidctlpar\sb120\sa120 MICROSOFT .NET LIBRARY \par 17 | 18 | \pard\nowidctlpar\sb120\sa120\fs19 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\par 19 | 20 | \pard{\pntext\f4\'B7\tab}{\*\pn\pnlvlblt\pnf4\pnindent363{\pntxtb\'B7}}\nowidctlpar\fi-363\li720\sb120\sa120\b0 updates,\par 21 | {\pntext\f4\'B7\tab}supplements,\par 22 | {\pntext\f4\'B7\tab}Internet-based services, and\par 23 | {\pntext\f4\'B7\tab}support services\par 24 | 25 | \pard\nowidctlpar\sb120\sa120\b for this software, unless other terms accompany those items. If so, those terms apply.\par 26 | BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE.\par 27 | 28 | \pard\brdrt\brdrs\brdrw10\brsp20 \nowidctlpar\sb120\sa120 IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE PERPETUAL RIGHTS BELOW.\par 29 | 30 | \pard 31 | {\listtext\f0 1.\tab}\jclisttab\tx360\ls1\nowidctlpar\s1\fi-357\li357\sb120\sa120 INSTALLATION AND USE RIGHTS. \par 32 | 33 | \pard 34 | {\listtext\f0 a.\tab}\jclisttab\tx363\ls1\ilvl1\nowidctlpar\s2\fi-363\li720\sb120\sa120 Installation and Use.\b0\fs20 You may install and use any number of copies of the software to design, develop and test your programs.\par 35 | {\listtext\f0 b.\tab}\b\fs19 Third Party Programs.\b0\fs20 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.\b\fs19\par 36 | 37 | \pard 38 | {\listtext\f0 2.\tab}\jclisttab\tx360\ls1\nowidctlpar\s1\fi-357\li357\sb120\sa120\fs20 ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.\par 39 | 40 | \pard 41 | {\listtext\f0 a.\tab}\jclisttab\tx363\ls1\ilvl1\nowidctlpar\s2\fi-363\li720\sb120\sa120 DISTRIBUTABLE CODE.\~ \b0 The software is comprised of Distributable Code. \f1\ldblquote\f0 Distributable Code\f1\rdblquote\f0 is code that you are permitted to distribute in programs you develop if you comply with the terms below.\b\par 42 | 43 | \pard 44 | {\listtext\f0 i.\tab}\jclisttab\tx720\ls1\ilvl2\nowidctlpar\s3\fi-357\li1077\sb120\sa120\tx1077 Right to Use and Distribute. \par 45 | 46 | \pard{\pntext\f4\'B7\tab}{\*\pn\pnlvlblt\pnf4\pnindent360{\pntxtb\'B7}}\nowidctlpar\fi-357\li1434\sb120\sa120\b0 You may copy and distribute the object code form of the software.\par 47 | {\pntext\f4\'B7\tab}Third Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs.\par 48 | 49 | \pard\nowidctlpar\s3\fi-357\li1077\sb120\sa120\tx1077\b ii.\tab Distribution Requirements.\b0 \b For any Distributable Code you distribute, you must\par 50 | 51 | \pard{\pntext\f4\'B7\tab}{\*\pn\pnlvlblt\pnf4\pnindent360{\pntxtb\'B7}}\nowidctlpar\fi-357\li1434\sb120\sa120\b0 add significant primary functionality to it in your programs;\par 52 | {\pntext\f4\'B7\tab}require distributors and external end users to agree to terms that protect it at least as much as this agreement;\par 53 | {\pntext\f4\'B7\tab}display your valid copyright notice on your programs; and\par 54 | {\pntext\f4\'B7\tab}indemnify, defend, and hold harmless Microsoft from any claims, including attorneys\rquote fees, related to the distribution or use of your programs.\par 55 | 56 | \pard\nowidctlpar\s3\fi-357\li1077\sb120\sa120\tx1077\b iii.\tab Distribution Restrictions.\b0 \b You may not\par 57 | 58 | \pard{\pntext\f4\'B7\tab}{\*\pn\pnlvlblt\pnf4\pnindent360{\pntxtb\'B7}}\nowidctlpar\fi-357\li1434\sb120\sa120\b0 alter any copyright, trademark or patent notice in the Distributable Code;\par 59 | {\pntext\f4\'B7\tab}use Microsoft\rquote s trademarks in your programs\rquote names or in a way that suggests your programs come from or are endorsed by Microsoft;\par 60 | {\pntext\f4\'B7\tab}include Distributable Code in malicious, deceptive or unlawful programs; or\par 61 | {\pntext\f4\'B7\tab}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\par 62 | 63 | \pard{\pntext\f4\'B7\tab}{\*\pn\pnlvlblt\pnf4\pnindent360{\pntxtb\'B7}}\nowidctlpar\fi-358\li1792\sb120\sa120 the code be disclosed or distributed in source code form; or\cf1\f2\par 64 | {\pntext\f4\'B7\tab}\cf0\f0 others have the right to modify it.\cf1\f2\par 65 | 66 | \pard\nowidctlpar\s1\fi-357\li357\sb120\sa120\cf0\b\f0 3.\tab\fs19 SCOPE OF LICENSE. \b0 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\par 67 | 68 | \pard{\pntext\f4\'B7\tab}{\*\pn\pnlvlblt\pnf4\pnindent363{\pntxtb\'B7}}\nowidctlpar\fi-363\li720\sb120\sa120 work around any technical limitations in the software;\par 69 | {\pntext\f4\'B7\tab}reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;\par 70 | {\pntext\f4\'B7\tab}publish the software for others to copy;\par 71 | {\pntext\f4\'B7\tab}rent, lease or lend the software;\par 72 | {\pntext\f4\'B7\tab}transfer the software or this agreement to any third party; or\par 73 | {\pntext\f4\'B7\tab}use the software for commercial software hosting services.\par 74 | 75 | \pard\nowidctlpar\s1\fi-357\li357\sb120\sa120\b\fs20 4.\tab\fs19 BACKUP COPY. \b0 You may make one backup copy of the software. You may use it only to reinstall the software.\par 76 | \b\fs20 5.\tab\fs19 DOCUMENTATION. \b0 Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.\par 77 | \b\fs20 6.\tab\fs19 EXPORT RESTRICTIONS. \b0 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 {\cf2\ul\fs20{\field{\*\fldinst{HYPERLINK www.microsoft.com/exporting }}{\fldrslt{www.microsoft.com/exporting}}}}\f0\fs19 .\cf2\ul\fs20\par 78 | \cf0\ulnone\b 7.\tab\fs19 SUPPORT SERVICES. \b0 Because this software is \ldblquote as is,\rdblquote we may not provide support services for it.\par 79 | \b\fs20 8.\tab\fs19 ENTIRE AGREEMENT. \b0 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.\par 80 | \b\fs20 9.\tab\fs19 APPLICABLE LAW.\par 81 | 82 | \pard 83 | {\listtext\f0 a.\tab}\jclisttab\tx363\ls2\ilvl1\nowidctlpar\s2\fi-363\li720\sb120\sa120 United States. \b0 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.\par 84 | {\listtext\f0 b.\tab}\b Outside the United States. If you acquired the software in any other country, the laws of that country apply.\par 85 | 86 | \pard\nowidctlpar\s1\fi-357\li357\sb120\sa120\fs20 10.\tab\fs19 LEGAL EFFECT. \b0 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.\par 87 | \b\fs20 11.\tab\fs19 DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \ldblquote AS-IS.\rdblquote 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.\par 88 | 89 | \pard\nowidctlpar\li357\sb120\sa120 FOR AUSTRALIA \endash YOU HAVE STATUTORY GUARANTEES UNDER THE AUSTRALIAN CONSUMER LAW AND NOTHING IN THESE TERMS IS INTENDED TO AFFECT THOSE RIGHTS.\par 90 | 91 | \pard\nowidctlpar\s1\fi-357\li357\sb120\sa120\fs20 12.\tab\fs19 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.\par 92 | 93 | \pard\nowidctlpar\li357\sb120\sa120\b0 This limitation applies to\par 94 | 95 | \pard{\pntext\f4\'B7\tab}{\*\pn\pnlvlblt\pnf4\pnindent363{\pntxtb\'B7}}\nowidctlpar\fi-363\li720\sb120\sa120 anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and\par 96 | {\pntext\f4\'B7\tab}claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\par 97 | 98 | \pard\nowidctlpar\sb120\sa120 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.\par 99 | \lang9 Please note: As this software is distributed in Quebec, Canada, some of the clauses in this agreement are provided below in French.\par 100 | Remarque : Ce logiciel \'e9tant distribu\'e9 au Qu\'e9bec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en fran\'e7ais.\par 101 | 102 | \pard\nowidctlpar\s1\sb120\sa120\b\lang1033 EXON\'c9RATION DE GARANTIE. \b0 Le logiciel vis\'e9 par une licence est offert \'ab tel quel \'bb. Toute utilisation de ce logiciel est \'e0 votre seule risque et p\'e9ril. Microsoft n\rquote accorde aucune autre garantie expresse. Vous pouvez b\'e9n\'e9ficier 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\'e9 marchande, d\rquote ad\'e9quation \'e0 un usage particulier et d\rquote absence de contrefa\'e7on sont exclues.\par 103 | \b LIMITATION DES DOMMAGES-INT\'c9R\'caTS ET EXCLUSION DE RESPONSABILIT\'c9 POUR LES DOMMAGES. \b0 Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement \'e0 hauteur de 5,00 $ US. Vous ne pouvez pr\'e9tendre \'e0 aucune indemnisation pour les autres dommages, y compris les dommages sp\'e9ciaux, indirects ou accessoires et pertes de b\'e9n\'e9fices.\par 104 | 105 | \pard\nowidctlpar\sb120\sa120\lang9 Cette limitation concerne :\par 106 | 107 | \pard{\pntext\f4\'B7\tab}{\*\pn\pnlvlblt\pnf4\pnindent360{\pntxtb\'B7}}\nowidctlpar\li720\sb120\sa120 tout ce qui est reli\'e9 au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et\par 108 | {\pntext\f4\'B7\tab}les r\'e9clamations au titre de violation de contrat ou de garantie, ou au titre de responsabilit\'e9 stricte, de n\'e9gligence ou d\rquote une autre faute dans la limite autoris\'e9e par la loi en vigueur.\par 109 | 110 | \pard\nowidctlpar\sb120\sa120 Elle s\rquote applique \'e9galement, m\'eame si Microsoft connaissait ou devrait conna\'eetre l\rquote\'e9ventualit\'e9 d\rquote un tel dommage. Si votre pays n\rquote autorise pas l\rquote exclusion ou la limitation de responsabilit\'e9 pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l\rquote exclusion ci-dessus ne s\rquote appliquera pas \'e0 votre \'e9gard.\par 111 | 112 | \pard\nowidctlpar\s1\sb120\sa120\b\lang1033 EFFET JURIDIQUE. \b0 Le pr\'e9sent contrat d\'e9crit certains droits juridiques. Vous pourriez avoir d\rquote autres droits pr\'e9vus par les lois de votre pays. Le pr\'e9sent contrat ne modifie pas les droits que vous conf\'e8rent les lois de votre pays si celles-ci ne le permettent pas.\par 113 | 114 | \pard\nowidctlpar\sb120\sa120\b\fs20\lang1036\par 115 | 116 | \pard\sa200\sl276\slmult1\b0\f3\fs22\lang9\par 117 | } 118 | -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/Microsoft.Bcl.1.1.10.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/Microsoft.Bcl.1.1.10.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/Xamarin.iOS10/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/Xamarin.iOS10/_._ -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/monoandroid/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/monoandroid/_._ -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/monotouch/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/monotouch/_._ -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/net40/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/net40/System.IO.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/net40/System.IO.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.IO 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/net40/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/net40/System.Runtime.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/net40/System.Runtime.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.Runtime 5 | 6 | 7 | 8 | Defines a provider for progress updates. 9 | The type of progress update value. 10 | 11 | 12 | Reports a progress update. 13 | The value of the updated progress. 14 | 15 | 16 | Identities the async state machine type for this method. 17 | 18 | 19 | Identities the state machine type for this method. 20 | 21 | 22 | Initializes the attribute. 23 | The type that implements the state machine. 24 | 25 | 26 | Gets the type that implements the state machine. 27 | 28 | 29 | Initializes the attribute. 30 | The type that implements the state machine. 31 | 32 | 33 | 34 | Allows you to obtain the method or property name of the caller to the method. 35 | 36 | 37 | 38 | 39 | Allows you to obtain the line number in the source file at which the method is called. 40 | 41 | 42 | 43 | 44 | Allows you to obtain the full path of the source file that contains the caller. 45 | This is the file path at the time of compile. 46 | 47 | 48 | 49 | Identities the iterator state machine type for this method. 50 | 51 | 52 | Initializes the attribute. 53 | The type that implements the state machine. 54 | 55 | 56 | 57 | -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/net40/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/net40/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/net40/ensureRedirect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/net40/ensureRedirect.xml -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/net45/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/net45/_._ -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp71+wpa81/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp71+wpa81/System.IO.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp71+wpa81/System.IO.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.IO 5 | 6 | 7 | 8 | 9 | A strongly-typed resource class, for looking up localized strings, etc. 10 | 11 | 12 | 13 | 14 | Returns the cached ResourceManager instance used by this class. 15 | 16 | 17 | 18 | 19 | Overrides the current thread's CurrentUICulture property for all 20 | resource lookups using this strongly typed resource class. 21 | 22 | 23 | 24 | 25 | Looks up a localized string similar to Found invalid data while decoding.. 26 | 27 | 28 | 29 | 30 | The exception that is thrown when a data stream is in an invalid format. 31 | 32 | 33 | 34 | 35 | Initializes a new instance of the class. 36 | 37 | 38 | 39 | 40 | Initializes a new instance of the class with a specified error message. 41 | 42 | The error message that explains the reason for the exception. 43 | 44 | 45 | 46 | Initializes a new instance of the class with a reference to the inner exception that is the cause of this exception. 47 | The error message that explains the reason for the exception. 48 | The exception that is the cause of the current exception. If the parameter is not null, the current exception is raised in a catch block that handles the inner exception. 49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp71+wpa81/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp71+wpa81/System.Runtime.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp71+wpa81/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp71+wpa81/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp71+wpa81/ensureRedirect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp71+wpa81/ensureRedirect.xml -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp8+wpa81/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp8+wpa81/System.IO.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp8+wpa81/System.IO.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.IO 5 | 6 | 7 | 8 | 9 | A strongly-typed resource class, for looking up localized strings, etc. 10 | 11 | 12 | 13 | 14 | Returns the cached ResourceManager instance used by this class. 15 | 16 | 17 | 18 | 19 | Overrides the current thread's CurrentUICulture property for all 20 | resource lookups using this strongly typed resource class. 21 | 22 | 23 | 24 | 25 | Looks up a localized string similar to Found invalid data while decoding.. 26 | 27 | 28 | 29 | 30 | The exception that is thrown when a data stream is in an invalid format. 31 | 32 | 33 | 34 | 35 | Initializes a new instance of the class. 36 | 37 | 38 | 39 | 40 | Initializes a new instance of the class with a specified error message. 41 | 42 | The error message that explains the reason for the exception. 43 | 44 | 45 | 46 | Initializes a new instance of the class with a reference to the inner exception that is the cause of this exception. 47 | The error message that explains the reason for the exception. 48 | The exception that is the cause of the current exception. If the parameter is not null, the current exception is raised in a catch block that handles the inner exception. 49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp8+wpa81/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp8+wpa81/System.Runtime.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp8+wpa81/System.Runtime.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.Runtime 5 | 6 | 7 | 8 | Defines a provider for progress updates. 9 | The type of progress update value. 10 | 11 | 12 | Reports a progress update. 13 | The value of the updated progress. 14 | 15 | 16 | Identities the async state machine type for this method. 17 | 18 | 19 | Identities the state machine type for this method. 20 | 21 | 22 | Initializes the attribute. 23 | The type that implements the state machine. 24 | 25 | 26 | Gets the type that implements the state machine. 27 | 28 | 29 | Initializes the attribute. 30 | The type that implements the state machine. 31 | 32 | 33 | 34 | Allows you to obtain the method or property name of the caller to the method. 35 | 36 | 37 | 38 | 39 | Allows you to obtain the line number in the source file at which the method is called. 40 | 41 | 42 | 43 | 44 | Allows you to obtain the full path of the source file that contains the caller. 45 | This is the file path at the time of compile. 46 | 47 | 48 | 49 | Identities the iterator state machine type for this method. 50 | 51 | 52 | Initializes the attribute. 53 | The type that implements the state machine. 54 | 55 | 56 | 57 | -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp8+wpa81/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp8+wpa81/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp8+wpa81/ensureRedirect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8+wp8+wpa81/ensureRedirect.xml -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8/System.IO.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8/System.IO.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.IO 5 | 6 | 7 | 8 | 9 | A strongly-typed resource class, for looking up localized strings, etc. 10 | 11 | 12 | 13 | 14 | Returns the cached ResourceManager instance used by this class. 15 | 16 | 17 | 18 | 19 | Overrides the current thread's CurrentUICulture property for all 20 | resource lookups using this strongly typed resource class. 21 | 22 | 23 | 24 | 25 | Looks up a localized string similar to Found invalid data while decoding.. 26 | 27 | 28 | 29 | 30 | The exception that is thrown when a data stream is in an invalid format. 31 | 32 | 33 | 34 | 35 | Initializes a new instance of the class. 36 | 37 | 38 | 39 | 40 | Initializes a new instance of the class with a specified error message. 41 | 42 | The error message that explains the reason for the exception. 43 | 44 | 45 | 46 | Initializes a new instance of the class with a reference to the inner exception that is the cause of this exception. 47 | The error message that explains the reason for the exception. 48 | The exception that is the cause of the current exception. If the parameter is not null, the current exception is raised in a catch block that handles the inner exception. 49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8/System.Runtime.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8/System.Runtime.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.Runtime 5 | 6 | 7 | 8 | Defines a provider for progress updates. 9 | The type of progress update value. 10 | 11 | 12 | Reports a progress update. 13 | The value of the updated progress. 14 | 15 | 16 | Identities the async state machine type for this method. 17 | 18 | 19 | Identities the state machine type for this method. 20 | 21 | 22 | Initializes the attribute. 23 | The type that implements the state machine. 24 | 25 | 26 | Gets the type that implements the state machine. 27 | 28 | 29 | Initializes the attribute. 30 | The type that implements the state machine. 31 | 32 | 33 | 34 | Allows you to obtain the method or property name of the caller to the method. 35 | 36 | 37 | 38 | 39 | Allows you to obtain the line number in the source file at which the method is called. 40 | 41 | 42 | 43 | 44 | Allows you to obtain the full path of the source file that contains the caller. 45 | This is the file path at the time of compile. 46 | 47 | 48 | 49 | Identities the iterator state machine type for this method. 50 | 51 | 52 | Initializes the attribute. 53 | The type that implements the state machine. 54 | 55 | 56 | 57 | -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8/ensureRedirect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl4+win8/ensureRedirect.xml -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl5+win8+wp8+wpa81/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl5+win8+wp8+wpa81/System.IO.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl5+win8+wp8+wpa81/System.IO.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.IO 5 | 6 | 7 | 8 | 9 | A strongly-typed resource class, for looking up localized strings, etc. 10 | 11 | 12 | 13 | 14 | Returns the cached ResourceManager instance used by this class. 15 | 16 | 17 | 18 | 19 | Overrides the current thread's CurrentUICulture property for all 20 | resource lookups using this strongly typed resource class. 21 | 22 | 23 | 24 | 25 | Looks up a localized string similar to Found invalid data while decoding.. 26 | 27 | 28 | 29 | 30 | The exception that is thrown when a data stream is in an invalid format. 31 | 32 | 33 | 34 | 35 | Initializes a new instance of the class. 36 | 37 | 38 | 39 | 40 | Initializes a new instance of the class with a specified error message. 41 | 42 | The error message that explains the reason for the exception. 43 | 44 | 45 | 46 | Initializes a new instance of the class with a reference to the inner exception that is the cause of this exception. 47 | The error message that explains the reason for the exception. 48 | The exception that is the cause of the current exception. If the parameter is not null, the current exception is raised in a catch block that handles the inner exception. 49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl5+win8+wp8+wpa81/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl5+win8+wp8+wpa81/System.Runtime.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl5+win8+wp8+wpa81/System.Runtime.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.Runtime 5 | 6 | 7 | 8 | Defines a provider for progress updates. 9 | The type of progress update value. 10 | 11 | 12 | Reports a progress update. 13 | The value of the updated progress. 14 | 15 | 16 | Identities the async state machine type for this method. 17 | 18 | 19 | Identities the state machine type for this method. 20 | 21 | 22 | Initializes the attribute. 23 | The type that implements the state machine. 24 | 25 | 26 | Gets the type that implements the state machine. 27 | 28 | 29 | Initializes the attribute. 30 | The type that implements the state machine. 31 | 32 | 33 | 34 | Allows you to obtain the method or property name of the caller to the method. 35 | 36 | 37 | 38 | 39 | Allows you to obtain the line number in the source file at which the method is called. 40 | 41 | 42 | 43 | 44 | Allows you to obtain the full path of the source file that contains the caller. 45 | This is the file path at the time of compile. 46 | 47 | 48 | 49 | Identities the iterator state machine type for this method. 50 | 51 | 52 | Initializes the attribute. 53 | The type that implements the state machine. 54 | 55 | 56 | 57 | -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl5+win8+wp8+wpa81/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl5+win8+wp8+wpa81/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl5+win8+wp8+wpa81/ensureRedirect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+sl5+win8+wp8+wpa81/ensureRedirect.xml -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8+wp8+wpa81/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8+wp8+wpa81/System.IO.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8+wp8+wpa81/System.IO.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.IO 5 | 6 | 7 | 8 | 9 | A strongly-typed resource class, for looking up localized strings, etc. 10 | 11 | 12 | 13 | 14 | Returns the cached ResourceManager instance used by this class. 15 | 16 | 17 | 18 | 19 | Overrides the current thread's CurrentUICulture property for all 20 | resource lookups using this strongly typed resource class. 21 | 22 | 23 | 24 | 25 | Looks up a localized string similar to Found invalid data while decoding.. 26 | 27 | 28 | 29 | 30 | The exception that is thrown when a data stream is in an invalid format. 31 | 32 | 33 | 34 | 35 | Initializes a new instance of the class. 36 | 37 | 38 | 39 | 40 | Initializes a new instance of the class with a specified error message. 41 | 42 | The error message that explains the reason for the exception. 43 | 44 | 45 | 46 | Initializes a new instance of the class with a reference to the inner exception that is the cause of this exception. 47 | The error message that explains the reason for the exception. 48 | The exception that is the cause of the current exception. If the parameter is not null, the current exception is raised in a catch block that handles the inner exception. 49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8+wp8+wpa81/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8+wp8+wpa81/System.Runtime.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8+wp8+wpa81/System.Runtime.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.Runtime 5 | 6 | 7 | 8 | Defines a provider for progress updates. 9 | The type of progress update value. 10 | 11 | 12 | Reports a progress update. 13 | The value of the updated progress. 14 | 15 | 16 | Identities the async state machine type for this method. 17 | 18 | 19 | Identities the state machine type for this method. 20 | 21 | 22 | Initializes the attribute. 23 | The type that implements the state machine. 24 | 25 | 26 | Gets the type that implements the state machine. 27 | 28 | 29 | Initializes the attribute. 30 | The type that implements the state machine. 31 | 32 | 33 | 34 | Allows you to obtain the method or property name of the caller to the method. 35 | 36 | 37 | 38 | 39 | Allows you to obtain the line number in the source file at which the method is called. 40 | 41 | 42 | 43 | 44 | Allows you to obtain the full path of the source file that contains the caller. 45 | This is the file path at the time of compile. 46 | 47 | 48 | 49 | Identities the iterator state machine type for this method. 50 | 51 | 52 | Initializes the attribute. 53 | The type that implements the state machine. 54 | 55 | 56 | 57 | -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8+wp8+wpa81/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8+wp8+wpa81/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8+wp8+wpa81/ensureRedirect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8+wp8+wpa81/ensureRedirect.xml -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8/System.IO.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8/System.IO.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.IO 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8/System.Runtime.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8/System.Runtime.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.Runtime 5 | 6 | 7 | 8 | Defines a provider for progress updates. 9 | The type of progress update value. 10 | 11 | 12 | Reports a progress update. 13 | The value of the updated progress. 14 | 15 | 16 | Identities the async state machine type for this method. 17 | 18 | 19 | Identities the state machine type for this method. 20 | 21 | 22 | Initializes the attribute. 23 | The type that implements the state machine. 24 | 25 | 26 | Gets the type that implements the state machine. 27 | 28 | 29 | Initializes the attribute. 30 | The type that implements the state machine. 31 | 32 | 33 | 34 | Allows you to obtain the method or property name of the caller to the method. 35 | 36 | 37 | 38 | 39 | Allows you to obtain the line number in the source file at which the method is called. 40 | 41 | 42 | 43 | 44 | Allows you to obtain the full path of the source file that contains the caller. 45 | This is the file path at the time of compile. 46 | 47 | 48 | 49 | Identities the iterator state machine type for this method. 50 | 51 | 52 | Initializes the attribute. 53 | The type that implements the state machine. 54 | 55 | 56 | 57 | -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8/ensureRedirect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/portable-net40+win8/ensureRedirect.xml -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net45+win8+wp8+wpa81/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/portable-net45+win8+wp8+wpa81/_._ -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net45+win8+wpa81/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/portable-net45+win8+wpa81/_._ -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net451+win81+wpa81/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/portable-net451+win81+wpa81/_._ -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-net451+win81/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/portable-net451+win81/_._ -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/portable-win81+wp81+wpa81/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/portable-win81+wp81+wpa81/_._ -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/sl4-windowsphone71/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/sl4-windowsphone71/System.IO.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/sl4-windowsphone71/System.IO.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.IO 5 | 6 | 7 | 8 | 9 | A strongly-typed resource class, for looking up localized strings, etc. 10 | 11 | 12 | 13 | 14 | Returns the cached ResourceManager instance used by this class. 15 | 16 | 17 | 18 | 19 | Overrides the current thread's CurrentUICulture property for all 20 | resource lookups using this strongly typed resource class. 21 | 22 | 23 | 24 | 25 | Looks up a localized string similar to Found invalid data while decoding.. 26 | 27 | 28 | 29 | 30 | The exception that is thrown when a data stream is in an invalid format. 31 | 32 | 33 | 34 | 35 | Initializes a new instance of the class. 36 | 37 | 38 | 39 | 40 | Initializes a new instance of the class with a specified error message. 41 | 42 | The error message that explains the reason for the exception. 43 | 44 | 45 | 46 | Initializes a new instance of the class with a reference to the inner exception that is the cause of this exception. 47 | The error message that explains the reason for the exception. 48 | The exception that is the cause of the current exception. If the parameter is not null, the current exception is raised in a catch block that handles the inner exception. 49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/sl4-windowsphone71/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/sl4-windowsphone71/System.Runtime.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/sl4-windowsphone71/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/sl4-windowsphone71/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/sl4-windowsphone71/ensureRedirect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/sl4-windowsphone71/ensureRedirect.xml -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/sl4/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/sl4/System.IO.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/sl4/System.IO.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.IO 5 | 6 | 7 | 8 | 9 | A strongly-typed resource class, for looking up localized strings, etc. 10 | 11 | 12 | 13 | 14 | Returns the cached ResourceManager instance used by this class. 15 | 16 | 17 | 18 | 19 | Overrides the current thread's CurrentUICulture property for all 20 | resource lookups using this strongly typed resource class. 21 | 22 | 23 | 24 | 25 | Looks up a localized string similar to Found invalid data while decoding.. 26 | 27 | 28 | 29 | 30 | The exception that is thrown when a data stream is in an invalid format. 31 | 32 | 33 | 34 | 35 | Initializes a new instance of the class. 36 | 37 | 38 | 39 | 40 | Initializes a new instance of the class with a specified error message. 41 | 42 | The error message that explains the reason for the exception. 43 | 44 | 45 | 46 | Initializes a new instance of the class with a reference to the inner exception that is the cause of this exception. 47 | The error message that explains the reason for the exception. 48 | The exception that is the cause of the current exception. If the parameter is not null, the current exception is raised in a catch block that handles the inner exception. 49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/sl4/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/sl4/System.Runtime.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/sl4/System.Runtime.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.Runtime 5 | 6 | 7 | 8 | Defines a provider for progress updates. 9 | The type of progress update value. 10 | 11 | 12 | Reports a progress update. 13 | The value of the updated progress. 14 | 15 | 16 | Identities the async state machine type for this method. 17 | 18 | 19 | Identities the state machine type for this method. 20 | 21 | 22 | Initializes the attribute. 23 | The type that implements the state machine. 24 | 25 | 26 | Gets the type that implements the state machine. 27 | 28 | 29 | Initializes the attribute. 30 | The type that implements the state machine. 31 | 32 | 33 | 34 | Allows you to obtain the method or property name of the caller to the method. 35 | 36 | 37 | 38 | 39 | Allows you to obtain the line number in the source file at which the method is called. 40 | 41 | 42 | 43 | 44 | Allows you to obtain the full path of the source file that contains the caller. 45 | This is the file path at the time of compile. 46 | 47 | 48 | 49 | Identities the iterator state machine type for this method. 50 | 51 | 52 | Initializes the attribute. 53 | The type that implements the state machine. 54 | 55 | 56 | 57 | -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/sl4/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/sl4/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/sl5/System.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/sl5/System.IO.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/sl5/System.IO.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.IO 5 | 6 | 7 | 8 | 9 | A strongly-typed resource class, for looking up localized strings, etc. 10 | 11 | 12 | 13 | 14 | Returns the cached ResourceManager instance used by this class. 15 | 16 | 17 | 18 | 19 | Overrides the current thread's CurrentUICulture property for all 20 | resource lookups using this strongly typed resource class. 21 | 22 | 23 | 24 | 25 | Looks up a localized string similar to Found invalid data while decoding.. 26 | 27 | 28 | 29 | 30 | The exception that is thrown when a data stream is in an invalid format. 31 | 32 | 33 | 34 | 35 | Initializes a new instance of the class. 36 | 37 | 38 | 39 | 40 | Initializes a new instance of the class with a specified error message. 41 | 42 | The error message that explains the reason for the exception. 43 | 44 | 45 | 46 | Initializes a new instance of the class with a reference to the inner exception that is the cause of this exception. 47 | The error message that explains the reason for the exception. 48 | The exception that is the cause of the current exception. If the parameter is not null, the current exception is raised in a catch block that handles the inner exception. 49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/sl5/System.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/sl5/System.Runtime.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/sl5/System.Runtime.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | System.Runtime 5 | 6 | 7 | 8 | Defines a provider for progress updates. 9 | The type of progress update value. 10 | 11 | 12 | Reports a progress update. 13 | The value of the updated progress. 14 | 15 | 16 | Identities the async state machine type for this method. 17 | 18 | 19 | Identities the state machine type for this method. 20 | 21 | 22 | Initializes the attribute. 23 | The type that implements the state machine. 24 | 25 | 26 | Gets the type that implements the state machine. 27 | 28 | 29 | Initializes the attribute. 30 | The type that implements the state machine. 31 | 32 | 33 | 34 | Allows you to obtain the method or property name of the caller to the method. 35 | 36 | 37 | 38 | 39 | Allows you to obtain the line number in the source file at which the method is called. 40 | 41 | 42 | 43 | 44 | Allows you to obtain the full path of the source file that contains the caller. 45 | This is the file path at the time of compile. 46 | 47 | 48 | 49 | Identities the iterator state machine type for this method. 50 | 51 | 52 | Initializes the attribute. 53 | The type that implements the state machine. 54 | 55 | 56 | 57 | -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/sl5/System.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/sl5/System.Threading.Tasks.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/win8/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/win8/_._ -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/wp8/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/wp8/_._ -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.1.1.10/lib/wpa81/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.1.1.10/lib/wpa81/_._ -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.Async.1.0.168/License-Stable.rtf: -------------------------------------------------------------------------------- 1 | {\rtf1\ansi\ansicpg1252\deff0\nouicompat\deflang1033{\fonttbl{\f0\fswiss\fprq2\fcharset0 Tahoma;}{\f1\froman\fprq2\fcharset0 Times New Roman;}{\f2\fswiss\fprq2\fcharset0 Calibri;}{\f3\fnil\fcharset0 Calibri;}{\f4\fnil\fcharset2 Symbol;}} 2 | {\colortbl ;\red31\green73\blue125;\red0\green0\blue255;} 3 | {\*\listtable 4 | {\list\listhybrid 5 | {\listlevel\levelnfc0\leveljc0\levelstartat1{\leveltext\'02\'00.;}{\levelnumbers\'01;}\jclisttab\tx360} 6 | {\listlevel\levelnfc4\leveljc0\levelstartat1{\leveltext\'02\'01.;}{\levelnumbers\'01;}\jclisttab\tx363} 7 | {\listlevel\levelnfc2\leveljc0\levelstartat1{\leveltext\'02\'02.;}{\levelnumbers\'01;}\jclisttab\tx720}\listid1 } 8 | {\list\listhybrid 9 | {\listlevel\levelnfc0\leveljc0\levelstartat1{\leveltext\'02\'00.;}{\levelnumbers\'01;}\jclisttab\tx363} 10 | {\listlevel\levelnfc4\leveljc0\levelstartat1{\leveltext\'02\'01.;}{\levelnumbers\'01;}\jclisttab\tx363}\listid2 }} 11 | {\*\listoverridetable{\listoverride\listid1\listoverridecount0\ls1}{\listoverride\listid2\listoverridecount0\ls2}} 12 | {\stylesheet{ Normal;}{\s1 heading 1;}{\s2 heading 2;}{\s3 heading 3;}} 13 | {\*\generator Riched20 6.2.9200}\viewkind4\uc1 14 | \pard\nowidctlpar\sb120\sa120\b\f0\fs24 MICROSOFT SOFTWARE LICENSE TERMS\par 15 | 16 | \pard\brdrb\brdrs\brdrw10\brsp20 \nowidctlpar\sb120\sa120 MICROSOFT .NET LIBRARY \par 17 | 18 | \pard\nowidctlpar\sb120\sa120\fs19 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\par 19 | 20 | \pard{\pntext\f4\'B7\tab}{\*\pn\pnlvlblt\pnf4\pnindent363{\pntxtb\'B7}}\nowidctlpar\fi-363\li720\sb120\sa120\b0 updates,\par 21 | {\pntext\f4\'B7\tab}supplements,\par 22 | {\pntext\f4\'B7\tab}Internet-based services, and\par 23 | {\pntext\f4\'B7\tab}support services\par 24 | 25 | \pard\nowidctlpar\sb120\sa120\b for this software, unless other terms accompany those items. If so, those terms apply.\par 26 | BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE.\par 27 | 28 | \pard\brdrt\brdrs\brdrw10\brsp20 \nowidctlpar\sb120\sa120 IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE PERPETUAL RIGHTS BELOW.\par 29 | 30 | \pard 31 | {\listtext\f0 1.\tab}\jclisttab\tx360\ls1\nowidctlpar\s1\fi-357\li357\sb120\sa120 INSTALLATION AND USE RIGHTS. \par 32 | 33 | \pard 34 | {\listtext\f0 a.\tab}\jclisttab\tx363\ls1\ilvl1\nowidctlpar\s2\fi-363\li720\sb120\sa120 Installation and Use.\b0\fs20 You may install and use any number of copies of the software to design, develop and test your programs.\par 35 | {\listtext\f0 b.\tab}\b\fs19 Third Party Programs.\b0\fs20 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.\b\fs19\par 36 | 37 | \pard 38 | {\listtext\f0 2.\tab}\jclisttab\tx360\ls1\nowidctlpar\s1\fi-357\li357\sb120\sa120\fs20 ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.\par 39 | 40 | \pard 41 | {\listtext\f0 a.\tab}\jclisttab\tx363\ls1\ilvl1\nowidctlpar\s2\fi-363\li720\sb120\sa120 DISTRIBUTABLE CODE.\~ \b0 The software is comprised of Distributable Code. \f1\ldblquote\f0 Distributable Code\f1\rdblquote\f0 is code that you are permitted to distribute in programs you develop if you comply with the terms below.\b\par 42 | 43 | \pard 44 | {\listtext\f0 i.\tab}\jclisttab\tx720\ls1\ilvl2\nowidctlpar\s3\fi-357\li1077\sb120\sa120\tx1077 Right to Use and Distribute. \par 45 | 46 | \pard{\pntext\f4\'B7\tab}{\*\pn\pnlvlblt\pnf4\pnindent360{\pntxtb\'B7}}\nowidctlpar\fi-357\li1434\sb120\sa120\b0 You may copy and distribute the object code form of the software.\par 47 | {\pntext\f4\'B7\tab}Third Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs.\par 48 | 49 | \pard\nowidctlpar\s3\fi-357\li1077\sb120\sa120\tx1077\b ii.\tab Distribution Requirements.\b0 \b For any Distributable Code you distribute, you must\par 50 | 51 | \pard{\pntext\f4\'B7\tab}{\*\pn\pnlvlblt\pnf4\pnindent360{\pntxtb\'B7}}\nowidctlpar\fi-357\li1434\sb120\sa120\b0 add significant primary functionality to it in your programs;\par 52 | {\pntext\f4\'B7\tab}require distributors and external end users to agree to terms that protect it at least as much as this agreement;\par 53 | {\pntext\f4\'B7\tab}display your valid copyright notice on your programs; and\par 54 | {\pntext\f4\'B7\tab}indemnify, defend, and hold harmless Microsoft from any claims, including attorneys\rquote fees, related to the distribution or use of your programs.\par 55 | 56 | \pard\nowidctlpar\s3\fi-357\li1077\sb120\sa120\tx1077\b iii.\tab Distribution Restrictions.\b0 \b You may not\par 57 | 58 | \pard{\pntext\f4\'B7\tab}{\*\pn\pnlvlblt\pnf4\pnindent360{\pntxtb\'B7}}\nowidctlpar\fi-357\li1434\sb120\sa120\b0 alter any copyright, trademark or patent notice in the Distributable Code;\par 59 | {\pntext\f4\'B7\tab}use Microsoft\rquote s trademarks in your programs\rquote names or in a way that suggests your programs come from or are endorsed by Microsoft;\par 60 | {\pntext\f4\'B7\tab}include Distributable Code in malicious, deceptive or unlawful programs; or\par 61 | {\pntext\f4\'B7\tab}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\par 62 | 63 | \pard{\pntext\f4\'B7\tab}{\*\pn\pnlvlblt\pnf4\pnindent360{\pntxtb\'B7}}\nowidctlpar\fi-358\li1792\sb120\sa120 the code be disclosed or distributed in source code form; or\cf1\f2\par 64 | {\pntext\f4\'B7\tab}\cf0\f0 others have the right to modify it.\cf1\f2\par 65 | 66 | \pard\nowidctlpar\s1\fi-357\li357\sb120\sa120\cf0\b\f0 3.\tab\fs19 SCOPE OF LICENSE. \b0 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\par 67 | 68 | \pard{\pntext\f4\'B7\tab}{\*\pn\pnlvlblt\pnf4\pnindent363{\pntxtb\'B7}}\nowidctlpar\fi-363\li720\sb120\sa120 work around any technical limitations in the software;\par 69 | {\pntext\f4\'B7\tab}reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;\par 70 | {\pntext\f4\'B7\tab}publish the software for others to copy;\par 71 | {\pntext\f4\'B7\tab}rent, lease or lend the software;\par 72 | {\pntext\f4\'B7\tab}transfer the software or this agreement to any third party; or\par 73 | {\pntext\f4\'B7\tab}use the software for commercial software hosting services.\par 74 | 75 | \pard\nowidctlpar\s1\fi-357\li357\sb120\sa120\b\fs20 4.\tab\fs19 BACKUP COPY. \b0 You may make one backup copy of the software. You may use it only to reinstall the software.\par 76 | \b\fs20 5.\tab\fs19 DOCUMENTATION. \b0 Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.\par 77 | \b\fs20 6.\tab\fs19 EXPORT RESTRICTIONS. \b0 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 {\cf2\ul\fs20{\field{\*\fldinst{HYPERLINK www.microsoft.com/exporting }}{\fldrslt{www.microsoft.com/exporting}}}}\f0\fs19 .\cf2\ul\fs20\par 78 | \cf0\ulnone\b 7.\tab\fs19 SUPPORT SERVICES. \b0 Because this software is \ldblquote as is,\rdblquote we may not provide support services for it.\par 79 | \b\fs20 8.\tab\fs19 ENTIRE AGREEMENT. \b0 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.\par 80 | \b\fs20 9.\tab\fs19 APPLICABLE LAW.\par 81 | 82 | \pard 83 | {\listtext\f0 a.\tab}\jclisttab\tx363\ls2\ilvl1\nowidctlpar\s2\fi-363\li720\sb120\sa120 United States. \b0 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.\par 84 | {\listtext\f0 b.\tab}\b Outside the United States. If you acquired the software in any other country, the laws of that country apply.\par 85 | 86 | \pard\nowidctlpar\s1\fi-357\li357\sb120\sa120\fs20 10.\tab\fs19 LEGAL EFFECT. \b0 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.\par 87 | \b\fs20 11.\tab\fs19 DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED \ldblquote AS-IS.\rdblquote 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.\par 88 | 89 | \pard\nowidctlpar\li357\sb120\sa120 FOR AUSTRALIA \endash YOU HAVE STATUTORY GUARANTEES UNDER THE AUSTRALIAN CONSUMER LAW AND NOTHING IN THESE TERMS IS INTENDED TO AFFECT THOSE RIGHTS.\par 90 | 91 | \pard\nowidctlpar\s1\fi-357\li357\sb120\sa120\fs20 12.\tab\fs19 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.\par 92 | 93 | \pard\nowidctlpar\li357\sb120\sa120\b0 This limitation applies to\par 94 | 95 | \pard{\pntext\f4\'B7\tab}{\*\pn\pnlvlblt\pnf4\pnindent363{\pntxtb\'B7}}\nowidctlpar\fi-363\li720\sb120\sa120 anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and\par 96 | {\pntext\f4\'B7\tab}claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\par 97 | 98 | \pard\nowidctlpar\sb120\sa120 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.\par 99 | \lang9 Please note: As this software is distributed in Quebec, Canada, some of the clauses in this agreement are provided below in French.\par 100 | Remarque : Ce logiciel \'e9tant distribu\'e9 au Qu\'e9bec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en fran\'e7ais.\par 101 | 102 | \pard\nowidctlpar\s1\sb120\sa120\b\lang1033 EXON\'c9RATION DE GARANTIE. \b0 Le logiciel vis\'e9 par une licence est offert \'ab tel quel \'bb. Toute utilisation de ce logiciel est \'e0 votre seule risque et p\'e9ril. Microsoft n\rquote accorde aucune autre garantie expresse. Vous pouvez b\'e9n\'e9ficier 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\'e9 marchande, d\rquote ad\'e9quation \'e0 un usage particulier et d\rquote absence de contrefa\'e7on sont exclues.\par 103 | \b LIMITATION DES DOMMAGES-INT\'c9R\'caTS ET EXCLUSION DE RESPONSABILIT\'c9 POUR LES DOMMAGES. \b0 Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement \'e0 hauteur de 5,00 $ US. Vous ne pouvez pr\'e9tendre \'e0 aucune indemnisation pour les autres dommages, y compris les dommages sp\'e9ciaux, indirects ou accessoires et pertes de b\'e9n\'e9fices.\par 104 | 105 | \pard\nowidctlpar\sb120\sa120\lang9 Cette limitation concerne :\par 106 | 107 | \pard{\pntext\f4\'B7\tab}{\*\pn\pnlvlblt\pnf4\pnindent360{\pntxtb\'B7}}\nowidctlpar\li720\sb120\sa120 tout ce qui est reli\'e9 au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et\par 108 | {\pntext\f4\'B7\tab}les r\'e9clamations au titre de violation de contrat ou de garantie, ou au titre de responsabilit\'e9 stricte, de n\'e9gligence ou d\rquote une autre faute dans la limite autoris\'e9e par la loi en vigueur.\par 109 | 110 | \pard\nowidctlpar\sb120\sa120 Elle s\rquote applique \'e9galement, m\'eame si Microsoft connaissait ou devrait conna\'eetre l\rquote\'e9ventualit\'e9 d\rquote un tel dommage. Si votre pays n\rquote autorise pas l\rquote exclusion ou la limitation de responsabilit\'e9 pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l\rquote exclusion ci-dessus ne s\rquote appliquera pas \'e0 votre \'e9gard.\par 111 | 112 | \pard\nowidctlpar\s1\sb120\sa120\b\lang1033 EFFET JURIDIQUE. \b0 Le pr\'e9sent contrat d\'e9crit certains droits juridiques. Vous pourriez avoir d\rquote autres droits pr\'e9vus par les lois de votre pays. Le pr\'e9sent contrat ne modifie pas les droits que vous conf\'e8rent les lois de votre pays si celles-ci ne le permettent pas.\par 113 | 114 | \pard\nowidctlpar\sb120\sa120\b\fs20\lang1036\par 115 | 116 | \pard\sa200\sl276\slmult1\b0\f3\fs22\lang9\par 117 | } 118 | -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.Async.1.0.168/Microsoft.Bcl.Async.1.0.168.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.Async.1.0.168/Microsoft.Bcl.Async.1.0.168.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.Async.1.0.168/lib/net40/Microsoft.Threading.Tasks.Extensions.Desktop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.Async.1.0.168/lib/net40/Microsoft.Threading.Tasks.Extensions.Desktop.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.Async.1.0.168/lib/net40/Microsoft.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.Async.1.0.168/lib/net40/Microsoft.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.Async.1.0.168/lib/net40/Microsoft.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.Async.1.0.168/lib/net40/Microsoft.Threading.Tasks.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.Async.1.0.168/lib/portable-net40+sl4+win8+wp71+wpa81/Microsoft.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.Async.1.0.168/lib/portable-net40+sl4+win8+wp71+wpa81/Microsoft.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.Async.1.0.168/lib/portable-net40+sl4+win8+wp71+wpa81/Microsoft.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.Async.1.0.168/lib/portable-net40+sl4+win8+wp71+wpa81/Microsoft.Threading.Tasks.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.Async.1.0.168/lib/portable-net45+win8+wp8+wpa81/Microsoft.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.Async.1.0.168/lib/portable-net45+win8+wp8+wpa81/Microsoft.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.Async.1.0.168/lib/portable-net45+win8+wp8+wpa81/Microsoft.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.Async.1.0.168/lib/portable-net45+win8+wp8+wpa81/Microsoft.Threading.Tasks.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.Async.1.0.168/lib/portable-net45+win8+wpa81/Microsoft.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.Async.1.0.168/lib/portable-net45+win8+wpa81/Microsoft.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.Async.1.0.168/lib/portable-net45+win8+wpa81/Microsoft.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.Async.1.0.168/lib/portable-net45+win8+wpa81/Microsoft.Threading.Tasks.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.Async.1.0.168/lib/sl4-windowsphone71/Microsoft.Threading.Tasks.Extensions.Phone.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.Async.1.0.168/lib/sl4-windowsphone71/Microsoft.Threading.Tasks.Extensions.Phone.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.Async.1.0.168/lib/sl4-windowsphone71/Microsoft.Threading.Tasks.Extensions.Phone.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.Threading.Tasks.Extensions.Phone 5 | 6 | 7 | 8 | 9 | Provides asynchronous wrappers for .NET Framework operations. 10 | 11 | 12 | Provides asynchronous wrappers for .NET Framework operations. 13 | 14 | 15 | 16 | Downloads the resource with the specified URI as a string, asynchronously. 17 | The WebClient. 18 | The URI from which to download data. 19 | A Task that contains the downloaded string. 20 | 21 | 22 | Downloads the resource with the specified URI as a string, asynchronously. 23 | The WebClient. 24 | The URI from which to download data. 25 | A Task that contains the downloaded string. 26 | 27 | 28 | Opens a readable stream for the data downloaded from a resource, asynchronously. 29 | The WebClient. 30 | The URI for which the stream should be opened. 31 | A Task that contains the opened stream. 32 | 33 | 34 | Opens a readable stream for the data downloaded from a resource, asynchronously. 35 | The WebClient. 36 | The URI for which the stream should be opened. 37 | A Task that contains the opened stream. 38 | 39 | 40 | Opens a writeable stream for uploading data to a resource, asynchronously. 41 | The WebClient. 42 | The URI for which the stream should be opened. 43 | A Task that contains the opened stream. 44 | 45 | 46 | Opens a writeable stream for uploading data to a resource, asynchronously. 47 | The WebClient. 48 | The URI for which the stream should be opened. 49 | A Task that contains the opened stream. 50 | 51 | 52 | Opens a writeable stream for uploading data to a resource, asynchronously. 53 | The WebClient. 54 | The URI for which the stream should be opened. 55 | The HTTP method that should be used to open the stream. 56 | A Task that contains the opened stream. 57 | 58 | 59 | Opens a writeable stream for uploading data to a resource, asynchronously. 60 | The WebClient. 61 | The URI for which the stream should be opened. 62 | The HTTP method that should be used to open the stream. 63 | A Task that contains the opened stream. 64 | 65 | 66 | Uploads data in a string to the specified resource, asynchronously. 67 | The WebClient. 68 | The URI to which the data should be uploaded. 69 | The data to upload. 70 | A Task containing the data in the response from the upload. 71 | 72 | 73 | Uploads data in a string to the specified resource, asynchronously. 74 | The WebClient. 75 | The URI to which the data should be uploaded. 76 | The data to upload. 77 | A Task containing the data in the response from the upload. 78 | 79 | 80 | Uploads data in a string to the specified resource, asynchronously. 81 | The WebClient. 82 | The URI to which the data should be uploaded. 83 | The HTTP method that should be used to upload the data. 84 | The data to upload. 85 | A Task containing the data in the response from the upload. 86 | 87 | 88 | Uploads data in a string to the specified resource, asynchronously. 89 | The WebClient. 90 | The URI to which the data should be uploaded. 91 | The HTTP method that should be used to upload the data. 92 | The data to upload. 93 | A Task containing the data in the response from the upload. 94 | 95 | 96 | Converts a path to a Uri using the WebClient's logic. 97 | Based on WebClient's private GetUri method. 98 | 99 | 100 | Converts a path to a Uri using the WebClient's logic. 101 | Based on WebClient's private GetUri method. 102 | 103 | 104 | Asynchronously invokes an Action on the Dispatcher. 105 | The Dispatcher. 106 | The action to invoke. 107 | A Task that represents the execution of the action. 108 | 109 | 110 | Asynchronously invokes an Action on the Dispatcher. 111 | The Dispatcher. 112 | The function to invoke. 113 | A Task that represents the execution of the function. 114 | 115 | 116 | Used with Task(of void) 117 | 118 | 119 | Returns a canceled task. 120 | The cancellation token. 121 | The canceled task. 122 | 123 | 124 | Returns a canceled task. 125 | Specifies the type of the result. 126 | The cancellation token. 127 | The canceled task. 128 | 129 | 130 | 131 | Completes the Task if the user state matches the TaskCompletionSource. 132 | 133 | Specifies the type of data returned by the Task. 134 | The TaskCompletionSource. 135 | The completion event arguments. 136 | Whether we require the tcs to match the e.UserState. 137 | A function that gets the result with which to complete the task. 138 | An action used to unregister work when the operaiton completes. 139 | 140 | 141 | 142 | -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.Async.1.0.168/lib/sl4-windowsphone71/Microsoft.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.Async.1.0.168/lib/sl4-windowsphone71/Microsoft.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.Async.1.0.168/lib/sl4-windowsphone71/Microsoft.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.Async.1.0.168/lib/sl4-windowsphone71/Microsoft.Threading.Tasks.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.Async.1.0.168/lib/sl4/Microsoft.Threading.Tasks.Extensions.Silverlight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.Async.1.0.168/lib/sl4/Microsoft.Threading.Tasks.Extensions.Silverlight.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.Async.1.0.168/lib/sl4/Microsoft.Threading.Tasks.Extensions.Silverlight.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.Threading.Tasks.Extensions.Silverlight 5 | 6 | 7 | 8 | 9 | Provides asynchronous wrappers for .NET Framework operations. 10 | 11 | 12 | Provides asynchronous wrappers for .NET Framework operations. 13 | 14 | 15 | 16 | Downloads the resource with the specified URI as a string, asynchronously. 17 | The WebClient. 18 | The URI from which to download data. 19 | A Task that contains the downloaded string. 20 | 21 | 22 | Downloads the resource with the specified URI as a string, asynchronously. 23 | The WebClient. 24 | The URI from which to download data. 25 | A Task that contains the downloaded string. 26 | 27 | 28 | Opens a readable stream for the data downloaded from a resource, asynchronously. 29 | The WebClient. 30 | The URI for which the stream should be opened. 31 | A Task that contains the opened stream. 32 | 33 | 34 | Opens a readable stream for the data downloaded from a resource, asynchronously. 35 | The WebClient. 36 | The URI for which the stream should be opened. 37 | A Task that contains the opened stream. 38 | 39 | 40 | Opens a writeable stream for uploading data to a resource, asynchronously. 41 | The WebClient. 42 | The URI for which the stream should be opened. 43 | A Task that contains the opened stream. 44 | 45 | 46 | Opens a writeable stream for uploading data to a resource, asynchronously. 47 | The WebClient. 48 | The URI for which the stream should be opened. 49 | A Task that contains the opened stream. 50 | 51 | 52 | Opens a writeable stream for uploading data to a resource, asynchronously. 53 | The WebClient. 54 | The URI for which the stream should be opened. 55 | The HTTP method that should be used to open the stream. 56 | A Task that contains the opened stream. 57 | 58 | 59 | Opens a writeable stream for uploading data to a resource, asynchronously. 60 | The WebClient. 61 | The URI for which the stream should be opened. 62 | The HTTP method that should be used to open the stream. 63 | A Task that contains the opened stream. 64 | 65 | 66 | Uploads data in a string to the specified resource, asynchronously. 67 | The WebClient. 68 | The URI to which the data should be uploaded. 69 | The data to upload. 70 | A Task containing the data in the response from the upload. 71 | 72 | 73 | Uploads data in a string to the specified resource, asynchronously. 74 | The WebClient. 75 | The URI to which the data should be uploaded. 76 | The data to upload. 77 | A Task containing the data in the response from the upload. 78 | 79 | 80 | Uploads data in a string to the specified resource, asynchronously. 81 | The WebClient. 82 | The URI to which the data should be uploaded. 83 | The HTTP method that should be used to upload the data. 84 | The data to upload. 85 | A Task containing the data in the response from the upload. 86 | 87 | 88 | Uploads data in a string to the specified resource, asynchronously. 89 | The WebClient. 90 | The URI to which the data should be uploaded. 91 | The HTTP method that should be used to upload the data. 92 | The data to upload. 93 | A Task containing the data in the response from the upload. 94 | 95 | 96 | Converts a path to a Uri using the WebClient's logic. 97 | Based on WebClient's private GetUri method. 98 | 99 | 100 | Converts a path to a Uri using the WebClient's logic. 101 | Based on WebClient's private GetUri method. 102 | 103 | 104 | Asynchronously invokes an Action on the Dispatcher. 105 | The Dispatcher. 106 | The action to invoke. 107 | A Task that represents the execution of the action. 108 | 109 | 110 | Asynchronously invokes an Action on the Dispatcher. 111 | The Dispatcher. 112 | The function to invoke. 113 | A Task that represents the execution of the function. 114 | 115 | 116 | Returns a canceled task. 117 | The cancellation token. 118 | The canceled task. 119 | 120 | 121 | Returns a canceled task. 122 | Specifies the type of the result. 123 | The cancellation token. 124 | The canceled task. 125 | 126 | 127 | 128 | Completes the Task if the user state matches the TaskCompletionSource. 129 | 130 | Specifies the type of data returned by the Task. 131 | The TaskCompletionSource. 132 | The completion event arguments. 133 | Whether we require the tcs to match the e.UserState. 134 | A function that gets the result with which to complete the task. 135 | An action used to unregister work when the operaiton completes. 136 | 137 | 138 | Used with Task(of void) 139 | 140 | 141 | 142 | -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.Async.1.0.168/lib/sl4/Microsoft.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.Async.1.0.168/lib/sl4/Microsoft.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.Async.1.0.168/lib/sl4/Microsoft.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.Async.1.0.168/lib/sl4/Microsoft.Threading.Tasks.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.Async.1.0.168/lib/win8/Microsoft.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.Async.1.0.168/lib/win8/Microsoft.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.Async.1.0.168/lib/win8/Microsoft.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.Async.1.0.168/lib/win8/Microsoft.Threading.Tasks.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.Async.1.0.168/lib/wp8/Microsoft.Threading.Tasks.Extensions.Phone.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.Async.1.0.168/lib/wp8/Microsoft.Threading.Tasks.Extensions.Phone.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.Async.1.0.168/lib/wp8/Microsoft.Threading.Tasks.Extensions.Phone.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.Threading.Tasks.Extensions.Phone 5 | 6 | 7 | 8 | 9 | Provides asynchronous wrappers for .NET Framework operations. 10 | 11 | 12 | Provides asynchronous wrappers for .NET Framework operations. 13 | 14 | 15 | 16 | Downloads the resource with the specified URI as a string, asynchronously. 17 | The WebClient. 18 | The URI from which to download data. 19 | A Task that contains the downloaded string. 20 | 21 | 22 | Downloads the resource with the specified URI as a string, asynchronously. 23 | The WebClient. 24 | The URI from which to download data. 25 | A Task that contains the downloaded string. 26 | 27 | 28 | Opens a readable stream for the data downloaded from a resource, asynchronously. 29 | The WebClient. 30 | The URI for which the stream should be opened. 31 | A Task that contains the opened stream. 32 | 33 | 34 | Opens a readable stream for the data downloaded from a resource, asynchronously. 35 | The WebClient. 36 | The URI for which the stream should be opened. 37 | A Task that contains the opened stream. 38 | 39 | 40 | Opens a writeable stream for uploading data to a resource, asynchronously. 41 | The WebClient. 42 | The URI for which the stream should be opened. 43 | A Task that contains the opened stream. 44 | 45 | 46 | Opens a writeable stream for uploading data to a resource, asynchronously. 47 | The WebClient. 48 | The URI for which the stream should be opened. 49 | A Task that contains the opened stream. 50 | 51 | 52 | Opens a writeable stream for uploading data to a resource, asynchronously. 53 | The WebClient. 54 | The URI for which the stream should be opened. 55 | The HTTP method that should be used to open the stream. 56 | A Task that contains the opened stream. 57 | 58 | 59 | Opens a writeable stream for uploading data to a resource, asynchronously. 60 | The WebClient. 61 | The URI for which the stream should be opened. 62 | The HTTP method that should be used to open the stream. 63 | A Task that contains the opened stream. 64 | 65 | 66 | Uploads data in a string to the specified resource, asynchronously. 67 | The WebClient. 68 | The URI to which the data should be uploaded. 69 | The data to upload. 70 | A Task containing the data in the response from the upload. 71 | 72 | 73 | Uploads data in a string to the specified resource, asynchronously. 74 | The WebClient. 75 | The URI to which the data should be uploaded. 76 | The data to upload. 77 | A Task containing the data in the response from the upload. 78 | 79 | 80 | Uploads data in a string to the specified resource, asynchronously. 81 | The WebClient. 82 | The URI to which the data should be uploaded. 83 | The HTTP method that should be used to upload the data. 84 | The data to upload. 85 | A Task containing the data in the response from the upload. 86 | 87 | 88 | Uploads data in a string to the specified resource, asynchronously. 89 | The WebClient. 90 | The URI to which the data should be uploaded. 91 | The HTTP method that should be used to upload the data. 92 | The data to upload. 93 | A Task containing the data in the response from the upload. 94 | 95 | 96 | Converts a path to a Uri using the WebClient's logic. 97 | Based on WebClient's private GetUri method. 98 | 99 | 100 | Converts a path to a Uri using the WebClient's logic. 101 | Based on WebClient's private GetUri method. 102 | 103 | 104 | Asynchronously invokes an Action on the Dispatcher. 105 | The Dispatcher. 106 | The action to invoke. 107 | A Task that represents the execution of the action. 108 | 109 | 110 | Asynchronously invokes an Action on the Dispatcher. 111 | The Dispatcher. 112 | The function to invoke. 113 | A Task that represents the execution of the function. 114 | 115 | 116 | Used with Task(of void) 117 | 118 | 119 | Returns a canceled task. 120 | The cancellation token. 121 | The canceled task. 122 | 123 | 124 | Returns a canceled task. 125 | Specifies the type of the result. 126 | The cancellation token. 127 | The canceled task. 128 | 129 | 130 | 131 | Completes the Task if the user state matches the TaskCompletionSource. 132 | 133 | Specifies the type of data returned by the Task. 134 | The TaskCompletionSource. 135 | The completion event arguments. 136 | Whether we require the tcs to match the e.UserState. 137 | A function that gets the result with which to complete the task. 138 | An action used to unregister work when the operaiton completes. 139 | 140 | 141 | 142 | -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.Async.1.0.168/lib/wp8/Microsoft.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.Async.1.0.168/lib/wp8/Microsoft.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.Async.1.0.168/lib/wp8/Microsoft.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.Async.1.0.168/lib/wp8/Microsoft.Threading.Tasks.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.Async.1.0.168/lib/wpa81/Microsoft.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.Async.1.0.168/lib/wpa81/Microsoft.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.Async.1.0.168/lib/wpa81/Microsoft.Threading.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.Async.1.0.168/lib/wpa81/Microsoft.Threading.Tasks.dll -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.Build.1.0.21/Microsoft.Bcl.Build.1.0.21.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.Build.1.0.21/Microsoft.Bcl.Build.1.0.21.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Bcl.Build.1.0.21/build/Microsoft.Bcl.Build.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Microsoft.Bcl.Build.1.0.21/build/Microsoft.Bcl.Build.Tasks.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/Nito.AsyncEx.4.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Nito.AsyncEx.4.0.1/Nito.AsyncEx.4.0.1.nupkg -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/MonoAndroid/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Nito.AsyncEx.4.0.1/lib/MonoAndroid/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/MonoAndroid/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Nito.AsyncEx.4.0.1/lib/MonoAndroid/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/MonoAndroid/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Nito.AsyncEx.Enlightenment 5 | 6 | 7 | 8 | 9 | Verifies platform enlightenment. 10 | 11 | 12 | 13 | 14 | Returns a value indicating whether the correct platform enlightenment provider has been loaded. 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/MonoAndroid/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Nito.AsyncEx.4.0.1/lib/MonoAndroid/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Nito.AsyncEx.4.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Nito.AsyncEx.4.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Nito.AsyncEx.Enlightenment 5 | 6 | 7 | 8 | 9 | Verifies platform enlightenment. 10 | 11 | 12 | 13 | 14 | Returns a value indicating whether the correct platform enlightenment provider has been loaded. 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Nito.AsyncEx.4.0.1/lib/Xamarin.Mac20/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Nito.AsyncEx.4.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Nito.AsyncEx.4.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Nito.AsyncEx.Enlightenment 5 | 6 | 7 | 8 | 9 | Verifies platform enlightenment. 10 | 11 | 12 | 13 | 14 | Returns a value indicating whether the correct platform enlightenment provider has been loaded. 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Nito.AsyncEx.4.0.1/lib/Xamarin.iOS10/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/net40/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Nito.AsyncEx.4.0.1/lib/net40/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/net40/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Nito.AsyncEx.4.0.1/lib/net40/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/net40/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Nito.AsyncEx.Enlightenment 5 | 6 | 7 | 8 | 9 | Verifies platform enlightenment. 10 | 11 | 12 | 13 | 14 | Returns a value indicating whether the correct platform enlightenment provider has been loaded. 15 | 16 | 17 | 18 | 19 | The TaskCreationOptions.DenyChildAttach value, if it exists; otherwise, 0. 20 | 21 | 22 | 23 | 24 | A delegate that will call ExceptionDispatchInfo.Capture followed by ExceptionDispatchInfo.Throw, or null if the ExceptionDispatchInfo type does not exist. 25 | 26 | 27 | 28 | 29 | A delegate that will call Exception.PrepForRemoting, or null if the method does not exist. This member is always null if is non-null. 30 | 31 | 32 | 33 | 34 | Attempts to add the original stack trace to the collection. 35 | 36 | The exception. May not be null. 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/net40/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Nito.AsyncEx.4.0.1/lib/net40/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/net45/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Nito.AsyncEx.4.0.1/lib/net45/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/net45/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Nito.AsyncEx.4.0.1/lib/net45/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/net45/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Nito.AsyncEx.Enlightenment 5 | 6 | 7 | 8 | 9 | Verifies platform enlightenment. 10 | 11 | 12 | 13 | 14 | Returns a value indicating whether the correct platform enlightenment provider has been loaded. 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/net45/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Nito.AsyncEx.4.0.1/lib/net45/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/netcore451/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Nito.AsyncEx.4.0.1/lib/netcore451/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/netcore451/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Nito.AsyncEx.4.0.1/lib/netcore451/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/netcore451/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Nito.AsyncEx.Enlightenment 5 | 6 | 7 | 8 | 9 | Verifies platform enlightenment. 10 | 11 | 12 | 13 | 14 | Returns a value indicating whether the correct platform enlightenment provider has been loaded. 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/netcore451/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Nito.AsyncEx.4.0.1/lib/netcore451/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/portable-net40+netcore451+sl5+wp8+wpa81/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Nito.AsyncEx.4.0.1/lib/portable-net40+netcore451+sl5+wp8+wpa81/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/portable-net40+netcore451/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Nito.AsyncEx.4.0.1/lib/portable-net40+netcore451/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/portable-net40+netcore451/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Nito.AsyncEx.4.0.1/lib/portable-net40+netcore451/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/portable-net45+netcore451+wp8+wpa81/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Nito.AsyncEx.4.0.1/lib/portable-net45+netcore451+wp8+wpa81/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/portable-net45+netcore451+wpa81/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Nito.AsyncEx.4.0.1/lib/portable-net45+netcore451+wpa81/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/portable-net45+netcore451+wpa81/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Nito.AsyncEx.4.0.1/lib/portable-net45+netcore451+wpa81/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/sl5/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Nito.AsyncEx.4.0.1/lib/sl5/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/sl5/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Nito.AsyncEx.Enlightenment 5 | 6 | 7 | 8 | 9 | The TaskCreationOptions.DenyChildAttach value, if it exists; otherwise, 0. 10 | 11 | 12 | 13 | 14 | A delegate that will call ExceptionDispatchInfo.Capture followed by ExceptionDispatchInfo.Throw, or null if the ExceptionDispatchInfo type does not exist. 15 | 16 | 17 | 18 | 19 | A delegate that will call Exception.PrepForRemoting, or null if the method does not exist. This member is always null if is non-null. 20 | 21 | 22 | 23 | 24 | Attempts to add the original stack trace to the collection. 25 | 26 | The exception. May not be null. 27 | 28 | 29 | 30 | The underlying queue. 31 | 32 | 33 | 34 | 35 | An event that is set whenever the queue is non-empty or if the queue is empty and done. 36 | 37 | 38 | 39 | 40 | Whether we are done adding tasks to the queue. 41 | 42 | 43 | 44 | 45 | Verifies platform enlightenment. 46 | 47 | 48 | 49 | 50 | Returns a value indicating whether the correct platform enlightenment provider has been loaded. 51 | 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/sl5/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Nito.AsyncEx.4.0.1/lib/sl5/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/wp8/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Nito.AsyncEx.4.0.1/lib/wp8/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/wp8/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Nito.AsyncEx.Enlightenment 5 | 6 | 7 | 8 | 9 | Verifies platform enlightenment. 10 | 11 | 12 | 13 | 14 | Returns a value indicating whether the correct platform enlightenment provider has been loaded. 15 | 16 | 17 | 18 | 19 | The underlying queue. 20 | 21 | 22 | 23 | 24 | An event that is set whenever the queue is non-empty or if the queue is empty and done. 25 | 26 | 27 | 28 | 29 | Whether we are done adding tasks to the queue. 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/wp8/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Nito.AsyncEx.4.0.1/lib/wp8/Nito.AsyncEx.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/wpa81/Nito.AsyncEx.Concurrent.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Nito.AsyncEx.4.0.1/lib/wpa81/Nito.AsyncEx.Concurrent.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/wpa81/Nito.AsyncEx.Enlightenment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Nito.AsyncEx.4.0.1/lib/wpa81/Nito.AsyncEx.Enlightenment.dll -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/wpa81/Nito.AsyncEx.Enlightenment.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Nito.AsyncEx.Enlightenment 5 | 6 | 7 | 8 | 9 | Verifies platform enlightenment. 10 | 11 | 12 | 13 | 14 | Returns a value indicating whether the correct platform enlightenment provider has been loaded. 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /packages/Nito.AsyncEx.4.0.1/lib/wpa81/Nito.AsyncEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theawesomecoder61/XCI-Tool/7c4b77a1dd99028f3c592b64190abc5e97eac104/packages/Nito.AsyncEx.4.0.1/lib/wpa81/Nito.AsyncEx.dll --------------------------------------------------------------------------------