├── .gitignore ├── Gemfile ├── README.md ├── TcLibraryVersions.sln ├── TcLibraryVersions ├── Program.cs ├── Properties │ └── launchSettings.json ├── TcLibraryVersions.csproj ├── TcLibraryVersions │ ├── bin │ │ └── Debug │ │ │ └── net5.0 │ │ │ ├── TcLibraryVersions.deps.json │ │ │ ├── TcLibraryVersions.dll │ │ │ ├── TcLibraryVersions.exe │ │ │ ├── TcLibraryVersions.pdb │ │ │ ├── TcLibraryVersions.runtimeconfig.dev.json │ │ │ ├── TcLibraryVersions.runtimeconfig.json │ │ │ ├── ToMarkdownTable.dll │ │ │ └── ref │ │ │ └── TcLibraryVersions.dll │ └── obj │ │ └── Debug │ │ └── net5.0 │ │ ├── TcLibraryVersions.AssemblyInfoInputs.cache │ │ ├── TcLibraryVersions.assets.cache │ │ ├── TcLibraryVersions.csproj.AssemblyReference.cache │ │ ├── apphost.exe │ │ └── ref │ │ └── TcLibraryVersions.dll ├── bin │ └── Debug │ │ └── net5.0 │ │ ├── TcLibraryVersions.deps.json │ │ ├── TcLibraryVersions.dll │ │ ├── TcLibraryVersions.exe │ │ ├── TcLibraryVersions.pdb │ │ ├── TcLibraryVersions.runtimeconfig.dev.json │ │ ├── TcLibraryVersions.runtimeconfig.json │ │ ├── ToMarkdownTable.dll │ │ └── ref │ │ └── TcLibraryVersions.dll └── obj │ ├── Debug │ └── net5.0 │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ ├── TcLibraryVersions.AssemblyInfo.cs │ │ ├── TcLibraryVersions.AssemblyInfoInputs.cache │ │ ├── TcLibraryVersions.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── TcLibraryVersions.assets.cache │ │ ├── TcLibraryVersions.csproj.AssemblyReference.cache │ │ ├── TcLibraryVersions.csproj.CopyComplete │ │ ├── TcLibraryVersions.csproj.CoreCompileInputs.cache │ │ ├── TcLibraryVersions.csproj.FileListAbsolute.txt │ │ ├── TcLibraryVersions.dll │ │ ├── TcLibraryVersions.genruntimeconfig.cache │ │ ├── TcLibraryVersions.pdb │ │ ├── apphost.exe │ │ └── ref │ │ └── TcLibraryVersions.dll │ ├── Release │ └── net5.0 │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ ├── TcLibraryVersions.AssemblyInfoInputs.cache │ │ ├── TcLibraryVersions.GeneratedMSBuildEditorConfig.editorconfig │ │ └── TcLibraryVersions.assets.cache │ ├── TcLibraryVersions.csproj.nuget.dgspec.json │ ├── TcLibraryVersions.csproj.nuget.g.props │ ├── TcLibraryVersions.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── _config.yml ├── _layouts └── default.html ├── assets ├── main.js └── style.css └── index.md /.gitignore: -------------------------------------------------------------------------------- 1 | # User-specific files 2 | *.rsuser 3 | *.suo 4 | *.user 5 | *.userosscache 6 | *.sln.docstates 7 | 8 | # User-specific files (MonoDevelop/Xamarin Studio) 9 | *.userprefs 10 | 11 | # Mono auto generated files 12 | mono_crash.* 13 | 14 | # Build results 15 | [Dd]ebug/ 16 | [Dd]ebugPublic/ 17 | [Rr]elease/ 18 | [Rr]eleases/ 19 | x64/ 20 | x86/ 21 | [Ww][Ii][Nn]32/ 22 | [Aa][Rr][Mm]/ 23 | [Aa][Rr][Mm]64/ 24 | bld/ 25 | [Bb]in/ 26 | [Oo]bj/ 27 | [Ll]og/ 28 | [Ll]ogs/ 29 | 30 | # Visual Studio 2015/2017 cache/options directory 31 | .vs/ 32 | # Uncomment if you have tasks that create the project's static files in wwwroot 33 | #wwwroot/ 34 | 35 | # Visual Studio 2017 auto generated files 36 | Generated\ Files/ 37 | 38 | # MSTest test Results 39 | [Tt]est[Rr]esult*/ 40 | [Bb]uild[Ll]og.* 41 | 42 | # NUnit 43 | *.VisualState.xml 44 | TestResult.xml 45 | nunit-*.xml 46 | 47 | # Build Results of an ATL Project 48 | [Dd]ebugPS/ 49 | [Rr]eleasePS/ 50 | dlldata.c 51 | 52 | # Benchmark Results 53 | BenchmarkDotNet.Artifacts/ 54 | 55 | # .NET Core 56 | project.lock.json 57 | project.fragment.lock.json 58 | artifacts/ 59 | 60 | # ASP.NET Scaffolding 61 | ScaffoldingReadMe.txt 62 | 63 | # StyleCop 64 | StyleCopReport.xml 65 | 66 | # Files built by Visual Studio 67 | *_i.c 68 | *_p.c 69 | *_h.h 70 | *.ilk 71 | *.meta 72 | *.obj 73 | *.iobj 74 | *.pch 75 | *.pdb 76 | *.ipdb 77 | *.pgc 78 | *.pgd 79 | *.rsp 80 | *.sbr 81 | *.tlb 82 | *.tli 83 | *.tlh 84 | *.tmp 85 | *.tmp_proj 86 | *_wpftmp.csproj 87 | *.log 88 | *.tlog 89 | *.vspscc 90 | *.vssscc 91 | .builds 92 | *.pidb 93 | *.svclog 94 | *.scc 95 | 96 | # Chutzpah Test files 97 | _Chutzpah* 98 | 99 | # Visual C++ cache files 100 | ipch/ 101 | *.aps 102 | *.ncb 103 | *.opendb 104 | *.opensdf 105 | *.sdf 106 | *.cachefile 107 | *.VC.db 108 | *.VC.VC.opendb 109 | 110 | # Visual Studio profiler 111 | *.psess 112 | *.vsp 113 | *.vspx 114 | *.sap 115 | 116 | # Visual Studio Trace Files 117 | *.e2e 118 | 119 | # TFS 2012 Local Workspace 120 | $tf/ 121 | 122 | # Guidance Automation Toolkit 123 | *.gpState 124 | 125 | # ReSharper is a .NET coding add-in 126 | _ReSharper*/ 127 | *.[Rr]e[Ss]harper 128 | *.DotSettings.user 129 | 130 | # TeamCity is a build add-in 131 | _TeamCity* 132 | 133 | # DotCover is a Code Coverage Tool 134 | *.dotCover 135 | 136 | # AxoCover is a Code Coverage Tool 137 | .axoCover/* 138 | !.axoCover/settings.json 139 | 140 | # Coverlet is a free, cross platform Code Coverage Tool 141 | coverage*.json 142 | coverage*.xml 143 | coverage*.info 144 | 145 | # Visual Studio code coverage results 146 | *.coverage 147 | *.coveragexml 148 | 149 | # NCrunch 150 | _NCrunch_* 151 | .*crunch*.local.xml 152 | nCrunchTemp_* 153 | 154 | # MightyMoose 155 | *.mm.* 156 | AutoTest.Net/ 157 | 158 | # Web workbench (sass) 159 | .sass-cache/ 160 | 161 | # Installshield output folder 162 | [Ee]xpress/ 163 | 164 | # DocProject is a documentation generator add-in 165 | DocProject/buildhelp/ 166 | DocProject/Help/*.HxT 167 | DocProject/Help/*.HxC 168 | DocProject/Help/*.hhc 169 | DocProject/Help/*.hhk 170 | DocProject/Help/*.hhp 171 | DocProject/Help/Html2 172 | DocProject/Help/html 173 | 174 | # Click-Once directory 175 | publish/ 176 | 177 | # Publish Web Output 178 | *.[Pp]ublish.xml 179 | *.azurePubxml 180 | # Note: Comment the next line if you want to checkin your web deploy settings, 181 | # but database connection strings (with potential passwords) will be unencrypted 182 | *.pubxml 183 | *.publishproj 184 | 185 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 186 | # checkin your Azure Web App publish settings, but sensitive information contained 187 | # in these scripts will be unencrypted 188 | PublishScripts/ 189 | 190 | # NuGet Packages 191 | *.nupkg 192 | # NuGet Symbol Packages 193 | *.snupkg 194 | # The packages folder can be ignored because of Package Restore 195 | **/[Pp]ackages/* 196 | # except build/, which is used as an MSBuild target. 197 | !**/[Pp]ackages/build/ 198 | # Uncomment if necessary however generally it will be regenerated when needed 199 | #!**/[Pp]ackages/repositories.config 200 | # NuGet v3's project.json files produces more ignorable files 201 | *.nuget.props 202 | *.nuget.targets 203 | 204 | # Nuget personal access tokens and Credentials 205 | # nuget.config 206 | 207 | # Microsoft Azure Build Output 208 | csx/ 209 | *.build.csdef 210 | 211 | # Microsoft Azure Emulator 212 | ecf/ 213 | rcf/ 214 | 215 | # Windows Store app package directories and files 216 | AppPackages/ 217 | BundleArtifacts/ 218 | Package.StoreAssociation.xml 219 | _pkginfo.txt 220 | *.appx 221 | *.appxbundle 222 | *.appxupload 223 | 224 | # Visual Studio cache files 225 | # files ending in .cache can be ignored 226 | *.[Cc]ache 227 | # but keep track of directories ending in .cache 228 | !?*.[Cc]ache/ 229 | 230 | # Others 231 | ClientBin/ 232 | ~$* 233 | *~ 234 | *.dbmdl 235 | *.dbproj.schemaview 236 | *.jfm 237 | *.pfx 238 | *.publishsettings 239 | orleans.codegen.cs 240 | 241 | # Including strong name files can present a security risk 242 | # (https://github.com/github/gitignore/pull/2483#issue-259490424) 243 | #*.snk 244 | 245 | # Since there are multiple workflows, uncomment next line to ignore bower_components 246 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 247 | #bower_components/ 248 | 249 | # RIA/Silverlight projects 250 | Generated_Code/ 251 | 252 | # Backup & report files from converting an old project file 253 | # to a newer Visual Studio version. Backup files are not needed, 254 | # because we have git ;-) 255 | _UpgradeReport_Files/ 256 | Backup*/ 257 | UpgradeLog*.XML 258 | UpgradeLog*.htm 259 | ServiceFabricBackup/ 260 | *.rptproj.bak 261 | 262 | # SQL Server files 263 | *.mdf 264 | *.ldf 265 | *.ndf 266 | 267 | # Business Intelligence projects 268 | *.rdl.data 269 | *.bim.layout 270 | *.bim_*.settings 271 | *.rptproj.rsuser 272 | *- [Bb]ackup.rdl 273 | *- [Bb]ackup ([0-9]).rdl 274 | *- [Bb]ackup ([0-9][0-9]).rdl 275 | 276 | # Microsoft Fakes 277 | FakesAssemblies/ 278 | 279 | # GhostDoc plugin setting file 280 | *.GhostDoc.xml 281 | 282 | # Node.js Tools for Visual Studio 283 | .ntvs_analysis.dat 284 | node_modules/ 285 | 286 | # Visual Studio 6 build log 287 | *.plg 288 | 289 | # Visual Studio 6 workspace options file 290 | *.opt 291 | 292 | # Visual Studio 6 auto-generated workspace file (contains which files were open etc.) 293 | *.vbw 294 | 295 | # Visual Studio LightSwitch build output 296 | **/*.HTMLClient/GeneratedArtifacts 297 | **/*.DesktopClient/GeneratedArtifacts 298 | **/*.DesktopClient/ModelManifest.xml 299 | **/*.Server/GeneratedArtifacts 300 | **/*.Server/ModelManifest.xml 301 | _Pvt_Extensions 302 | 303 | # Paket dependency manager 304 | .paket/paket.exe 305 | paket-files/ 306 | 307 | # FAKE - F# Make 308 | .fake/ 309 | 310 | # CodeRush personal settings 311 | .cr/personal 312 | 313 | # Python Tools for Visual Studio (PTVS) 314 | __pycache__/ 315 | *.pyc 316 | 317 | # Cake - Uncomment if you are using it 318 | # tools/** 319 | # !tools/packages.config 320 | 321 | # Tabs Studio 322 | *.tss 323 | 324 | # Telerik's JustMock configuration file 325 | *.jmconfig 326 | 327 | # BizTalk build output 328 | *.btp.cs 329 | *.btm.cs 330 | *.odx.cs 331 | *.xsd.cs 332 | 333 | # OpenCover UI analysis results 334 | OpenCover/ 335 | 336 | # Azure Stream Analytics local run output 337 | ASALocalRun/ 338 | 339 | # MSBuild Binary and Structured Log 340 | *.binlog 341 | 342 | # NVidia Nsight GPU debugger configuration file 343 | *.nvuser 344 | 345 | # MFractors (Xamarin productivity tool) working folder 346 | .mfractor/ 347 | 348 | # Local History for Visual Studio 349 | .localhistory/ 350 | 351 | # BeatPulse healthcheck temp database 352 | healthchecksdb 353 | 354 | # Backup folder for Package Reference Convert tool in Visual Studio 2017 355 | MigrationBackup/ 356 | 357 | # Ionide (cross platform F# VS Code tools) working folder 358 | .ionide/ 359 | 360 | # Fody - auto-generated XML schema 361 | FodyWeavers.xsd 362 | 363 | # VS Code files for those working on multiple tools 364 | .vscode/* 365 | !.vscode/settings.json 366 | !.vscode/tasks.json 367 | !.vscode/launch.json 368 | !.vscode/extensions.json 369 | *.code-workspace 370 | 371 | # Local History for Visual Studio Code 372 | .history/ 373 | 374 | # Windows Installer files from build outputs 375 | *.cab 376 | *.msi 377 | *.msix 378 | *.msm 379 | *.msp 380 | 381 | # JetBrains Rider 382 | .idea/ 383 | *.sln.iml 384 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "github-pages", group: :jekyll_plugins 4 | 5 | gem "jekyll-theme-minimal" -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # TcLibraryVersions 2 | 3 | |TcVersion|4024.62|4024.60|4024.59|4024.56|4024.55|4024.54|4024.53|4024.50|4024.47|4024.44|4024.42|4024.40|4024.35|4024.32|4024.29|4024.25|4024.22|4024.20|4024.17|4024.12|4022.29|4022.22|4022.16|4022.4|4020.39| 4 | |---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---| 5 | |Tc2_BA|3.4.1.0|3.4.1.0|3.4.1.0|3.4.1.0|3.4.1.0|3.4.1.0|3.4.1.0|3.3.9.0|3.3.9.0|3.3.9.0|3.3.9.0|3.3.9.0|3.3.9.0|3.3.9.0|3.3.9.0|3.3.9.0|3.3.9.0|3.3.9.0|3.3.9.0|3.3.9.0|3.1.12.0|3.1.8.1|3.1.6.0|3.1.6.0|3.1.3.0| 6 | |Tc2_BABasic|3.2.2.0|3.2.2.0|3.2.2.0|3.2.2.0|3.2.2.0|3.1.2.0|3.1.2.0|3.1.2.0|3.1.2.0|3.1.2.0|3.1.2.0|3.1.2.0|3.1.2.0|3.1.2.0|3.1.2.0|3.1.2.0|3.1.2.0|3.1.2.0|3.1.2.0|3.1.2.0|3.1.1.0|3.1.1.0|3.1.1.0|3.1.0.0|3.1.0.0| 7 | |Tc2_BACnetRev12|2.6.4.0|2.6.4.0|2.6.4.0|2.6.2.0|2.6.2.0|2.6.2.0|2.6.2.0|2.6.2.0|2.6.2.0|2.6.2.0|2.5.20.0|2.5.20.0|2.5.20.0|2.5.19.0|2.5.19.0|2.5.18.1|2.5.18.1|2.5.18.1|2.5.18.1|2.5.18.1|2.5.6.0|2.5.0.3|2.4.3.0|2.4.3.0|2.4.3.0| 8 | |Tc2_CncBase|3.3.3031.13|3.3.3031.13|3.3.3031.13|3.3.3031.13|3.3.3031.13|3.3.3031.13|3.3.3031.13|3.3.3031.10|3.3.3031.10|3.3.3031.10|3.3.3031.10|3.3.3031.10|3.3.3031.10|3.3.3031.10|3.3.3031.10|3.3.3031.10|3.3.3031.10|3.3.3031.10|3.3.3031.10|3.3.3031.10|3.3.3031.9|3.3.3031.9|3.3.3031.7|3.3.3031.6|3.3.3031.2| 9 | |Tc2_CncHli|3.3.3031.62|3.3.3031.61|3.3.3031.61|3.3.3031.61|3.3.3031.54|3.3.3031.54|3.3.3031.54|3.3.3031.43|3.3.3031.43|3.3.3031.43|3.3.3031.43|3.3.3031.43|3.3.3031.43|3.3.3031.43|3.3.3031.43|3.3.3031.43|3.3.3031.43|3.3.3031.43|3.3.3031.42|3.3.3031.41|3.3.3031.30|3.3.3031.26|3.3.3031.25|3.3.3031.23|3.3.3031.10| 10 | |Tc2_CncPlcopenP1|3.3.3031.14|3.3.3031.14|3.3.3031.14|3.3.3031.14|3.3.3031.14|3.3.3031.14|3.3.3031.14|3.3.3031.11|3.3.3031.11|3.3.3031.11|3.3.3031.11|3.3.3031.11|3.3.3031.11|3.3.3031.11|3.3.3031.11|3.3.3031.11|3.3.3031.11|3.3.3031.11|3.3.3031.11|3.3.3031.11|3.3.3031.8|3.3.3031.8|3.3.3031.8|3.3.3031.8|3.3.3031.3| 11 | |Tc2_CncPlcopenP4|3.3.3031.13|3.3.3031.13|3.3.3031.13|3.3.3031.13|3.3.3031.13|3.3.3031.13|3.3.3031.13|3.3.3031.10|3.3.3031.10|3.3.3031.10|3.3.3031.10|3.3.3031.10|3.3.3031.10|3.3.3031.10|3.3.3031.10|3.3.3031.10|3.3.3031.10|3.3.3031.10|3.3.3031.10|3.3.3031.10|3.3.3031.9|3.3.3031.9|3.3.3031.8|3.3.3031.8|3.3.3031.1| 12 | |Tc2_ControllerToolbox|3.6.1.0|3.6.1.0|3.6.1.0|3.6.1.0|3.4.3.0|3.4.3.0|3.4.3.0|3.4.3.0|3.4.3.0|3.4.3.0|3.4.3.0|3.4.3.0|3.4.3.0|3.4.3.0|3.4.3.0|3.4.3.0|3.4.3.0|3.4.3.0|3.4.3.0|3.4.3.0|3.4.1.4|3.4.1.4|3.4.1.4|3.4.1.4|3.4.1.4| 13 | |Tc2_Coupler|3.4.2.0|3.4.2.0|3.4.2.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0| 14 | |Tc2_DALI|3.7.2.0|3.7.2.0|3.7.2.0|3.7.2.0|3.7.2.0|3.6.18.0|3.6.18.0|3.6.18.0|3.6.18.0|3.6.18.0|3.6.18.0|3.6.18.0|3.6.18.0|3.6.18.0|3.6.18.0|3.6.18.0|3.6.18.0|3.6.18.0|3.6.18.0|3.6.18.0|3.6.11.0|3.6.7.0|3.6.5.0|3.6.2.0|3.4.3.0| 15 | |Tc2_Database|3.3.20.2|3.3.20.2|3.3.20.2|3.3.20.2|3.3.20.2|3.3.20.2|3.3.20.2|3.3.20.2|3.3.20.2|3.3.20.2|3.3.20.2|3.3.20.2|3.3.20.2|3.3.20.2|3.3.20.2|3.3.20.2|3.3.20.2|3.3.20.2|3.3.20.2|3.3.20.2|3.3.20.2|3.3.20.2|3.3.20.2|3.3.20.2|3.3.20.2| 16 | |Tc2_DataExchange|3.4.2.0|3.4.2.0|3.4.2.0|3.3.5.0|3.3.5.0|3.3.5.0|3.3.5.0|3.3.5.0|3.3.5.0|3.3.5.0|3.3.5.0|3.3.5.0|3.3.5.0|3.3.5.0|3.3.5.0|3.3.5.0|3.3.5.0|3.3.5.0|3.3.5.0|3.3.5.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0| 17 | |Tc2_DMX|3.6.4.0|3.6.4.0|3.6.4.0|3.6.4.0|3.6.4.0|3.6.3.0|3.6.3.0|3.5.5.0|3.5.5.0|3.5.5.0|3.5.5.0|3.5.5.0|3.5.5.0|3.5.5.0|3.5.5.0|3.5.5.0|3.5.5.0|3.5.5.0|3.5.5.0|3.5.5.0|3.5.5.0|3.5.5.0|3.5.5.0|3.5.4.0|3.5.4.0| 18 | |Tc2_Drive|3.3.13.0|3.3.13.0|3.3.13.0|3.3.11.0|3.3.11.0|3.3.10.0|3.3.10.0|3.3.10.0|3.3.9.0|3.3.9.0|3.3.9.0|3.3.9.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.7.0|3.3.5.0|3.3.5.0|3.3.5.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0| 19 | |Tc2_EIB|3.4.4.0|3.4.4.0|3.4.3.0|3.4.2.0|3.4.2.0|3.4.2.0|3.4.2.0|3.3.10.0|3.3.10.0|3.3.10.0|3.3.10.0|3.3.10.0|3.3.10.0|3.3.10.0|3.3.10.0|3.3.10.0|3.3.10.0|3.3.10.0|3.3.10.0|3.3.10.0|3.3.9.0|3.3.7.0|3.3.6.0|3.3.5.0|3.3.5.0| 20 | |Tc2_EnOcean|3.5.2.0|3.5.2.0|3.4.7.0|3.4.7.0|3.4.7.0|3.4.7.0|3.4.7.0|3.4.7.0|3.4.7.0|3.4.7.0|3.4.7.0|3.4.7.0|3.4.7.0|3.4.7.0|3.4.7.0|3.4.7.0|3.4.7.0|3.4.7.0|3.4.7.0|3.4.6.0|3.4.6.0|3.4.6.0|3.4.6.0|3.4.6.0|3.4.6.0| 21 | |Tc2_EtherCAT|3.5.1.0|3.5.1.0|3.5.1.0|3.4.4.0|3.4.3.0|3.4.3.0|3.4.2.0|3.4.2.0|3.3.21.0|3.3.21.0|3.3.21.0|3.3.21.0|3.3.21.0|3.3.20.0|3.3.19.0|3.3.19.0|3.3.16.0|3.3.15.0|3.3.15.0|3.3.15.0|3.3.12.0|3.3.12.0|3.3.12.0|3.3.10.0|3.3.10.0| 22 | |Tc2_EthernetIP|1.1.1.0|1.1.1.0|1.1.1.0|1.1.1.0|1.1.1.0|1.1.1.0|1.1.1.0|1.1.1.0|1.1.1.0|1.0.3.0|1.0.3.0|1.0.3.0|1.0.3.0|1.0.3.0|1.0.3.0|1.0.3.0|1.0.3.0|1.0.3.0|1.0.3.0|1.0.2.0|1.0.2.0|1.0.1.0|1.0.1.0|1.0.1.0|1.0.1.0| 23 | |Tc2_FTP|3.3.5.2|3.3.5.2|3.3.5.2|3.3.5.2|3.3.5.2|3.3.5.2|3.3.5.2|3.3.5.2|3.3.5.2|3.3.5.2|3.3.5.2|3.3.5.2|3.3.5.2|3.3.5.2|3.3.5.2|3.3.5.2|3.3.5.2|3.3.5.2|3.3.5.2|3.3.5.2|3.3.5.2|3.3.5.2|3.3.5.2|3.3.5.2|3.3.5.2| 24 | |Tc2_GENIbus|3.4.2.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.0.0|3.3.0.0| 25 | |Tc2_HVAC|3.4.2.0|3.4.2.0|3.4.2.0|3.4.2.0|3.4.2.0|3.3.9.0|3.3.9.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|--|--|--|--|--| 26 | |Tc2_IoFunctions|3.4.3.0|3.4.3.0|3.4.3.0|3.4.3.0|3.3.13.0|3.3.13.0|3.3.13.0|3.3.13.0|3.3.13.0|3.3.13.0|3.3.13.0|3.3.13.0|3.3.13.0|3.3.13.0|3.3.13.0|3.3.13.0|3.3.13.0|3.3.13.0|3.3.13.0|3.3.13.0|3.3.10.0|3.3.10.0|3.3.10.0|3.3.10.0|3.3.10.0| 27 | |Tc2_KL85xx|3.5.5.0|3.5.5.0|3.5.5.0|3.5.4.0|3.5.4.0|3.5.2.0|3.5.2.0|3.5.2.0|3.5.2.0|3.5.2.0|3.5.2.0|3.4.6.0|3.4.6.0|3.4.6.0|3.4.6.0|3.4.6.0|3.4.6.0|3.4.6.0|3.4.6.0|3.4.6.0|3.4.6.0|3.4.6.0|3.4.6.0|3.4.5.0|3.3.4.0| 28 | |Tc2_LON|3.4.2.0|3.4.2.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0| 29 | |Tc2_Math|3.4.4.0|3.4.4.0|3.4.4.0|3.4.4.0|3.4.3.0|3.4.3.0|3.4.3.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.0.0|3.3.0.0|3.3.0.0|3.3.0.0|3.3.0.0| 30 | |Tc2_MBus|3.5.2.0|3.5.2.0|3.4.8.0|3.4.8.0|3.4.8.0|3.4.8.0|3.4.8.0|3.4.8.0|3.4.8.0|3.4.8.0|3.4.8.0|3.4.8.0|3.4.8.0|3.4.8.0|3.4.8.0|3.4.8.0|3.4.8.0|3.4.8.0|3.4.8.0|3.4.8.0|3.4.7.0|3.4.7.0|3.4.7.0|3.4.7.0|3.4.6.0| 31 | |Tc2_MC2|3.3.65.0|3.3.64.0|3.3.63.0|3.3.59.0|3.3.59.0|3.3.56.0|3.3.56.0|3.3.56.0|3.3.54.0|3.3.54.0|3.3.53.0|3.3.50.0|3.3.48.0|3.3.48.0|3.3.46.0|3.3.46.0|3.3.45.0|3.3.45.0|3.3.45.0|3.3.42.0|3.3.29.0|3.3.23.0|3.3.21.0|3.3.18.0|3.3.18.0| 32 | |Tc2_MC2_Camming|3.4.3.0|3.4.3.0|3.4.2.0|3.4.0.0|3.4.0.0|3.3.19.0|3.3.19.0|3.3.19.0|3.3.19.0|3.3.19.0|3.3.18.0|3.3.18.0|3.3.15.0|3.3.15.0|3.3.15.0|3.3.15.0|3.3.15.0|3.3.15.0|3.3.15.0|3.3.11.0|3.3.7.0|3.3.7.0|3.3.6.0|3.3.4.0|3.3.4.0| 33 | |Tc2_MC2_Drive|3.3.43.0|3.3.43.0|3.3.40.0|3.3.36.0|3.3.36.0|3.3.34.0|3.3.34.0|3.3.34.0|3.3.32.0|3.3.31.0|3.3.31.0|3.3.31.0|3.3.29.0|3.3.26.0|3.3.25.0|3.3.25.0|3.3.24.0|3.3.23.0|3.3.23.0|3.3.22.0|3.3.15.0|3.3.15.0|3.3.15.0|3.3.14.0|3.3.9.0| 34 | |Tc2_MC2_FlyingSaw|3.3.7.0|3.3.7.0|3.3.7.0|3.3.6.0|3.3.6.0|3.3.5.0|3.3.5.0|3.3.5.0|3.3.5.0|3.3.5.0|3.3.5.0|3.3.5.0|3.3.3.0|3.3.3.0|3.3.3.0|3.3.3.0|3.3.3.0|3.3.3.0|3.3.3.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.0.0|3.3.0.0|3.3.0.0| 35 | |Tc2_MC2_XFC|3.3.28.0|3.3.27.0|3.3.27.0|3.3.25.0|3.3.25.0|3.3.23.0|3.3.23.0|3.3.23.0|3.3.23.0|3.3.23.0|3.3.23.0|3.3.23.0|3.3.22.0|3.3.21.0|3.3.19.0|3.3.19.0|3.3.18.0|3.3.18.0|3.3.18.0|3.3.17.0|3.3.17.0|3.3.15.0|3.3.15.0|3.3.13.0|3.3.13.0| 36 | |Tc2_MDP|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.7.0|3.3.6.0|3.3.6.0|3.3.5.0|3.3.5.0|3.3.5.0| 37 | |Tc2_ModbusRTU|3.6.1.0|3.6.1.0|3.6.1.0|3.5.6.0|3.5.6.0|3.5.6.0|3.5.6.0|3.5.6.0|3.4.3.0|3.4.3.0|3.4.3.0|3.4.3.0|3.4.3.0|3.4.3.0|3.4.3.0|3.4.3.0|3.4.2.0|3.4.2.0|3.4.2.0|3.4.2.0|3.4.2.0|3.4.2.0|3.4.2.0|3.4.2.0|3.4.2.0| 38 | |Tc2_ModbusSrv|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0| 39 | |Tc2_MPBus|3.6.6.0|3.6.6.0|3.6.5.0|3.6.4.0|3.6.4.0|3.6.4.0|3.6.3.0|3.6.3.0|3.6.1.0|3.4.12.0|3.4.12.0|3.4.12.0|3.4.12.0|3.4.12.0|3.4.12.0|3.4.12.0|3.4.12.0|3.4.12.0|3.4.12.0|3.4.12.0|3.4.11.0|3.4.9.0|3.4.8.0|3.4.7.0|3.4.7.0| 40 | |Tc2_NC|3.3.10.0|3.3.10.0|3.3.10.0|3.3.7.0|3.3.7.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.2.0|3.3.2.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.0.0|3.3.0.0| 41 | |Tc2_NcDrive|3.3.7.0|3.3.7.0|3.3.7.0|3.3.6.0|3.3.6.0|3.3.5.0|3.3.5.0|3.3.5.0|3.3.5.0|3.3.5.0|3.3.5.0|3.3.5.0|3.3.4.0|3.3.4.0|3.3.3.0|3.3.3.0|3.3.3.0|3.3.3.0|3.3.3.0|3.3.3.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0| 42 | |Tc2_NcFifoAxes|3.3.6.0|3.3.6.0|3.3.6.0|3.3.5.0|3.3.5.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0| 43 | |Tc2_NCI|3.3.19.0|3.3.19.0|3.3.19.0|3.3.17.0|3.3.17.0|3.3.15.0|3.3.15.0|3.3.15.0|3.3.15.0|3.3.15.0|3.3.15.0|3.3.15.0|3.3.12.0|3.3.12.0|3.3.12.0|3.3.12.0|3.3.12.0|3.3.12.0|3.3.12.0|3.3.12.0|3.3.12.0|3.3.12.0|3.3.11.0|3.3.10.0|3.3.8.0| 44 | |Tc2_NciXFC|3.3.10.0|3.3.10.0|3.3.10.0|3.3.9.0|3.3.9.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.6.0|3.3.6.0|3.3.6.0|3.3.6.0|3.3.6.0|3.3.6.0|3.3.6.0|3.3.5.0|3.3.5.0|3.3.3.0|3.3.3.0|3.3.3.0|3.3.3.0| 45 | |Tc2_OpcUa|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|3.3.2.0| 46 | |Tc2_PlcInterpolation|3.3.21.0|3.3.21.0|3.3.21.0|3.3.20.0|3.3.20.0|3.3.18.0|3.3.18.0|3.3.18.0|3.3.18.0|3.3.18.0|3.3.18.0|3.3.18.0|3.3.16.0|3.3.16.0|3.3.16.0|3.3.16.0|3.3.16.0|3.3.16.0|3.3.16.0|3.3.16.0|3.3.15.0|3.3.15.0|3.3.15.0|3.3.15.0|3.3.14.0| 47 | |Tc2_ProfinetDiag|1.5.2.0|1.5.2.0|1.5.2.0|1.5.1.0|1.2.3.0|1.2.3.0|1.2.3.0|1.2.3.0|1.2.3.0|1.2.3.0|1.2.3.0|1.2.3.0|1.2.3.0|1.2.3.0|1.2.3.0|1.2.3.0|1.2.3.0|1.2.3.0|1.2.3.0|1.2.3.0|1.2.2.0|1.2.2.0|1.2.2.0|1.2.2.0|1.2.2.0| 48 | |Tc2_RFID|3.3.7.0|3.3.7.0|3.3.7.0|3.3.7.0|3.3.7.0|3.3.7.0|3.3.7.0|3.3.7.0|3.3.7.0|3.3.7.0|3.3.7.0|3.3.7.0|3.3.7.0|3.3.7.0|3.3.7.0|3.3.7.0|3.3.7.0|3.3.7.0|3.3.7.0|3.3.7.0|3.3.6.0|3.3.6.0|3.3.4.0|3.3.4.0|3.3.4.0| 49 | |Tc2_S5S7Com|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.0.0|3.3.0.0|3.3.0.0|3.3.0.0|3.3.0.0| 50 | |Tc2_SerialCom|3.4.4.0|3.4.4.0|3.4.4.0|3.4.1.0|3.4.1.0|3.4.1.0|3.3.10.0|3.3.10.0|3.3.10.0|3.3.10.0|3.3.10.0|3.3.10.0|3.3.10.0|3.3.10.0|3.3.10.0|3.3.8.0|3.3.7.0|3.3.7.0|3.3.7.0|3.3.7.0|3.3.6.0|3.3.6.0|3.3.6.0|3.3.6.0|3.3.6.0| 51 | |Tc2_SMI|3.4.2.0|3.4.2.0|3.4.2.0|3.4.2.0|3.4.2.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.7.0|3.3.7.0|3.3.7.0|3.3.7.0|3.3.7.0| 52 | |Tc2_SMS|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.0.0|3.3.0.0|3.3.0.0|3.3.0.0|3.3.0.0| 53 | |Tc2_Smtp|3.4.1.0|3.4.1.0|3.4.1.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0| 54 | |Tc2_SPA|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.0.0|3.3.0.0|3.3.0.0|3.3.0.0|3.3.0.0| 55 | |Tc2_Standard|3.4.5.0|3.4.5.0|3.4.5.0|3.4.5.0|3.3.3.0|3.3.3.0|3.3.3.0|3.3.3.0|3.3.3.0|3.3.3.0|3.3.3.0|3.3.3.0|3.3.3.0|3.3.3.0|3.3.3.0|3.3.3.0|3.3.3.0|3.3.3.0|3.3.3.0|3.3.3.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0| 56 | |Tc2_SUPS|3.4.3.0|3.4.3.0|3.4.3.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.6.0|3.3.6.0|3.3.6.0|3.3.6.0|3.3.5.0| 57 | |Tc2_System|3.6.4.0|3.6.4.0|3.6.4.0|3.6.4.0|3.6.2.0|3.6.2.0|3.5.3.0|3.5.3.0|3.5.3.0|3.5.3.0|3.4.26.0|3.4.26.0|3.4.26.0|3.4.25.0|3.4.25.0|3.4.25.0|3.4.24.0|3.4.24.0|3.4.24.0|3.4.24.0|3.4.21.0|3.4.19.0|3.4.17.0|3.4.17.0|3.4.17.0| 58 | |Tc2_SystemC69xx|3.4.2.0|3.4.2.0|3.4.2.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.0.0|3.3.0.0|3.3.0.0|3.3.0.0|3.3.0.0| 59 | |Tc2_SystemCX|3.5.3.0|3.5.3.0|3.5.3.0|3.4.8.0|3.4.8.0|3.4.8.0|3.4.8.0|3.4.8.0|3.4.8.0|3.4.8.0|3.4.8.0|3.4.8.0|3.4.8.0|3.4.8.0|3.4.8.0|3.4.7.0|3.3.6.0|3.3.6.0|3.3.6.0|3.3.6.0|3.3.5.0|3.3.5.0|3.3.5.0|3.3.5.0|3.3.4.0| 60 | |Tc2_TcpIp|3.4.2.0|3.4.2.0|3.4.2.0|3.4.2.0|3.3.10.0|3.3.10.0|3.3.10.0|3.3.10.0|3.3.10.0|3.3.10.0|3.3.6.0|3.3.6.0|3.3.6.0|3.3.6.0|3.3.6.0|3.3.6.0|3.3.6.0|3.3.6.0|3.3.6.0|3.3.6.0|3.3.6.0|3.3.4.0|3.3.3.0|3.3.3.0|3.3.3.0| 61 | |Tc2_TempController|3.4.2.0|3.4.2.0|3.4.2.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.4.0|3.3.3.0|3.3.3.0|3.3.3.0| 62 | |Tc2_Utilities|3.8.1.0|3.8.1.0|3.7.4.0|3.6.1.0|3.6.1.0|3.5.2.0|3.4.8.0|3.4.8.0|3.3.54.0|3.3.54.0|3.3.54.0|3.3.54.0|3.3.54.0|3.3.52.0|3.3.52.0|3.3.50.0|3.3.47.0|3.3.46.0|3.3.42.0|3.3.41.0|3.3.35.0|3.3.28.0|3.3.26.0|3.3.22.0|3.3.22.0| 63 | |Tc2_XmlDataSrv|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.0.0|3.3.0.0|3.3.0.0|3.3.0.0|3.3.0.0| 64 | |Tc3_Analytics|--|--|--|--|--|--|3.1.6.1|3.1.6.1|3.1.6.1|3.1.5.0|3.1.5.0|3.1.5.0|--|--|--|--|--|--|--|--|--|--|--|--|--| 65 | |Tc3_AnalyticsCommunication|3.1.3.0|3.1.3.0|3.1.3.0|3.1.3.0|3.1.3.0|3.1.3.0|3.1.3.0|3.1.3.0|3.1.3.0|3.1.3.0|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--| 66 | |Tc3_AnalyticsStorageProvider|1.0.1.0|1.0.1.0|1.0.1.0|1.0.1.0|1.0.1.0|1.0.1.0|1.0.1.0|1.0.1.0|1.0.1.0|1.0.1.0|1.0.1.0|1.0.0.12|1.0.0.12|1.0.0.12|--|--|--|--|--|--|--|--|--|--|--| 67 | |Tc3_BA|1.2.1.0|1.2.1.0|1.2.1.0|1.2.1.0|1.2.1.0|1.1.5.0|1.1.5.0|1.1.5.0|1.1.5.0|1.1.5.0|1.1.5.0|1.1.5.0|1.1.5.0|1.1.5.0|1.1.5.0|1.1.5.0|1.1.5.0|1.1.5.0|1.1.5.0|1.1.5.0|1.1.1.0|--|--|--|--| 68 | |Tc3_BA_Common|--|--|--|2.2.3.0|2.2.3.0|2.2.3.0|2.2.3.0|2.2.3.0|2.1.5.2|2.1.5.2|2.1.5.2|2.1.5.2|2.1.5.2|2.1.5.2|2.1.5.2|2.1.5.2|2.1.4.0|2.1.4.0|2.1.4.0|2.1.4.0|1.0.5.0|--|--|--|--| 69 | |Tc3_BA2|5.3.6.0|5.3.6.0|5.3.6.0|5.3.6.0|5.3.6.0|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--| 70 | |Tc3_BA2_Common|2.2.27.0|2.2.23.0|2.2.17.0|2.2.14.0|2.2.12.0|2.2.10.0|2.2.6.0|2.2.6.0|2.1.20.0|2.1.20.0|2.1.20.0|2.1.19.0|2.1.17.0|2.1.16.0|2.1.14.0|2.1.14.0|2.1.11.0|2.1.11.0|2.1.9.0|2.1.3.23|--|--|--|--|--| 71 | |Tc3_BACnetRev14|4.2.41.0|4.2.41.0|4.2.35.0|4.2.27.0|4.2.20.0|4.2.20.0|4.2.20.0|4.2.7.0|4.2.4.0|4.2.2.0|4.1.26.0|4.1.26.0|4.1.26.0|4.1.24.0|4.1.19.0|4.1.19.0|4.1.17.0|4.1.16.0|4.1.9.0|4.0.22.12|--|--|--|--|--| 72 | |Tc3_BA_Common|2.2.4.0|2.2.4.0|2.2.4.0|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--| 73 | |Tc3_Ber|3.1.6.0|3.1.6.0| 74 | |Tc3_DALI|3.19.1.0|3.19.1.0|3.19.1.0|3.18.2.0|3.18.1.0|3.17.1.0|3.17.1.0|3.17.1.0|3.16.1.0|3.13.0.0|3.13.0.0|3.13.0.0|3.13.0.0|3.12.0.0|3.11.0.0|3.10.5.0|3.9.0.0|3.8.0.0|3.6.2.0|3.5.0.0|3.1.4.0|--|--|--|--| 75 | |Tc3_Database|3.5.4.0|3.4.0.19|3.4.0.19|3.4.0.19|3.4.0.19|3.4.0.19|3.4.0.19|3.4.0.19|3.4.0.19|3.4.0.19|3.4.0.19|3.4.0.19|3.4.0.19|3.4.0.19|3.4.0.19|3.4.0.19|3.4.0.15|3.4.0.15|3.4.0.15|3.4.0.15|3.3.0.21|3.3.0.14|3.3.0.14|3.3.0.14|3.3.0.14| 76 | |Tc3_DriveMotionControl|3.0.13.0|3.0.13.0|3.0.12.0|3.0.11.0|3.0.11.0|3.0.10.0|3.0.10.0|3.0.10.0|3.0.9.0|3.0.9.0|3.0.7.0|3.0.7.0|3.0.6.0|3.0.5.0|3.0.5.0|3.0.4.0|3.0.3.0|3.0.3.0|3.0.3.0|3.0.3.0|--|--|--|--|--| 77 | |Tc3_DynamicMemory|1.1.2.0|1.1.2.0|1.1.2.0|1.1.2.0|1.0.2.0|1.0.2.0|1.0.2.0|1.0.2.0|1.0.2.0|1.0.2.0|1.0.2.0|1.0.2.0|1.0.2.0|1.0.2.0|1.0.2.0|1.0.2.0|1.0.2.0|1.0.2.0|1.0.2.0|1.0.2.0|--|--|--|--|--| 78 | |Tc3_EtherCATDiag|1.0.3.0|1.0.3.0|1.0.1.0|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--| 79 | |Tc3_EtherCATExtSync|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.0.0|3.3.0.0|3.3.0.0|3.3.0.0|3.3.0.0| 80 | |Tc3_EventLogger|3.3.10.0|3.3.10.0|3.3.8.0|3.3.7.0|3.3.7.0|3.1.33.0|3.1.33.0|3.1.33.0|3.1.33.0|3.1.33.0|3.1.33.0|3.1.33.0|3.1.33.0|3.1.30.0|3.1.30.0|3.1.30.0|3.1.30.0|3.1.28.0|3.1.28.0|3.1.24.0|3.1.19.0|3.1.16.0|3.0.3.0|3.0.3.0|3.0.3.0| 81 | |Tc3_Interfaces|--|--|--|--|--|--|--|--|--|--|--|--|--|--|3.4.3.0|3.4.3.0|3.4.3.0|3.4.3.0|3.4.3.0|3.4.3.0|3.4.3.0|3.4.3.0|3.4.2.0|3.4.2.0|3.4.2.0| 82 | |Tc3_IoLink|3.4.4.0|3.4.4.0|3.4.4.0|3.4.2.0|3.4.2.0|3.4.2.0|3.4.2.0|3.4.2.0|3.4.2.0|3.3.5.0|3.3.5.0|3.3.5.0|3.3.3.0|3.3.2.0|3.3.1.5|3.3.1.5|--|--|--|--|--|--|--|--|--| 83 | |Tc3_IotBase|3.4.5.0|3.4.5.0|3.4.5.0|3.4.5.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.1.19.0|3.1.19.0|3.1.19.0|3.1.19.0|3.1.19.0|3.1.19.0|3.1.19.0|3.1.18.0|3.1.18.0|3.1.18.0|3.1.18.0|3.1.18.0|3.1.7.0|3.1.7.0|3.1.5.0|3.1.5.0|--| 84 | |Tc3_IotCommunicator|1.2.3.0|1.2.3.0|1.2.2.0|1.2.2.0|1.2.2.0|1.2.2.0|1.2.2.0|1.2.2.0|1.1.16.0|1.1.16.0|1.1.16.0|1.1.16.0|1.1.15.0|1.1.12.0|1.1.12.0|1.1.12.0|1.1.10.0|1.1.10.0|1.1.10.0|1.0.7.0|1.0.7.0|1.0.7.0|1.0.7.0|1.0.4.0|--| 85 | |Tc3_IotFunctions|3.4.3.0|3.4.3.0|3.4.3.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|3.3.1.0|--|--|--| 86 | |Tc3_IPCDiag|1.2.1.0|1.2.1.0|1.2.1.0|1.1.4.0|1.1.3.0|1.1.3.0|1.1.3.0|1.1.3.0|1.0.15.0|1.0.15.0|1.0.15.0|1.0.14.0|1.0.12.0|1.0.11.0|1.0.11.0|1.0.11.0|1.0.9.0|1.0.9.0|1.0.8.0|1.0.5.0|--|--|--|--|--| 87 | |Tc3_JsonXml|3.4.4.0|3.4.4.0|3.4.4.0|3.4.4.0|3.4.3.0|3.4.3.0|3.3.19.0|3.3.19.0|3.3.19.0|3.3.19.0|3.3.19.0|3.3.18.0|3.3.18.0|3.3.18.0|3.3.17.0|3.3.16.0|3.3.15.0|3.3.14.0|3.3.14.0|3.3.14.0|3.3.4.0|3.3.3.3|3.3.3.3|3.3.3.1|--| 88 | |Tc3_LS|1.2.3.0|1.2.3.0|1.2.3.0|1.2.3.0|1.2.3.0|1.2.3.0|1.2.3.0|1.2.3.0|1.2.3.0|1.1.12.0|1.1.12.0|1.1.12.0|1.1.9.0|1.1.9.0|1.1.9.0|1.1.9.0|1.1.6.0|1.1.6.0|1.1.6.0|1.1.5.0|--|--|--|--|--| 89 | |Tc3_MC2_AdvancedHoming|3.0.26.0|3.0.26.0|3.0.26.0|3.0.25.0|3.0.24.0|3.0.23.0|3.0.23.0|3.0.23.0|3.0.21.0|3.0.20.0|3.0.20.0|3.0.20.0|3.0.18.0|3.0.15.0|3.0.14.0|3.0.13.0|3.0.13.0|3.0.13.0|3.0.13.0|3.0.13.0|3.0.10.0|3.0.8.0|3.0.8.0|3.0.7.0|3.0.5.0| 90 | |Tc3_MC2_AdvancedHoming_XFC|3.0.10.0|3.0.10.0|3.0.10.0|3.0.9.0|3.0.9.0|3.0.8.0|3.0.8.0|3.0.8.0|3.0.8.0|3.0.8.0|3.0.8.0|3.0.8.0|3.0.6.0|3.0.6.0|3.0.6.0|3.0.6.0|3.0.6.0|3.0.6.0|3.0.6.0|3.0.4.0|3.0.4.0|3.0.4.0|3.0.4.0|3.0.4.0|3.0.3.0| 91 | |Tc3_MemMan|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|3.3.1.0| 92 | |Tc3_MLL|3.2.3.0|3.2.3.0|3.2.3.0|3.2.3.0|3.2.3.0|3.2.3.0|3.2.3.0|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--| 93 | |Tc3_Module|3.4.5.0|3.4.5.0|3.4.5.0|3.4.5.0|3.3.23.0|3.3.23.0|3.3.23.0|3.3.23.0|3.3.23.0|3.3.23.0|3.3.23.0|3.3.21.0|3.3.21.0|3.3.21.0|3.3.21.0|3.3.21.0|3.3.21.0|3.3.21.0|3.3.21.0|3.3.21.0|3.3.20.0|3.3.18.0|3.3.18.0|3.3.17.0|3.3.16.0| 94 | |Tc3_mxAutomation|2.1.3.6|2.1.3.6|2.1.3.5|2.1.3.5|2.1.3.5|2.1.3.5|2.1.3.4|2.1.3.4|2.1.3.4|2.1.3.4|2.1.3.3|2.1.3.3|2.1.3.3|2.1.3.3|2.1.3.3|2.1.3.3|2.1.3.3|2.1.3.3|2.1.3.3|2.1.3.3|2.1.3.3|2.1.3.3|2.1.3.2|2.1.3.2|2.1.3.2| 95 | |Tc3_mxAutomationV3_0|3.0.4.3|3.0.4.3|3.0.4.2|3.0.4.2|3.0.4.2|3.0.4.2|3.0.4.1|3.0.4.1|3.0.4.1|3.0.4.1|3.0.4.0|3.0.4.0|3.0.4.0|3.0.4.0|3.0.4.0|3.0.4.0|3.0.4.0|3.0.4.0|3.0.4.0|3.0.4.0|3.0.2.0|--|--|--|--| 96 | |Tc3_mxAutomationV3_1|3.1.0.3|3.1.0.3|3.1.0.2|3.1.0.2|3.1.0.2|3.1.0.2|3.1.0.1|3.1.0.1|3.1.0.1|3.1.0.1|3.1.0.0|3.1.0.0|3.1.0.0|3.1.0.0|3.1.0.0|3.1.0.0|3.1.0.0|3.1.0.0|3.1.0.0|3.1.0.0|--|--|--|--|--| 97 | |Tc3_mxAutomationV3_2|3.2.0.4|3.2.0.4|3.2.0.3|3.2.0.3|3.2.0.3|3.2.0.3|3.2.0.2|3.2.0.2|3.2.0.2|3.2.0.2|3.2.0.1|3.2.0.1|3.2.0.1|3.2.0.1|3.2.0.1|3.2.0.1|3.2.0.1|3.2.0.1|3.2.0.1|--|--|--|--|--|--| 98 | |Tc3_mxAutomationV3_3|3.3.3.2|3.3.3.2|3.3.1.2|3.3.1.2|3.3.1.2|3.3.1.2|3.3.1.1|3.3.1.1|3.3.1.1|3.3.1.1|3.3.1.1|3.3.1.0|--|--|--|--|--|--|--|--|--|--|--|--|--| 99 | |Tc3_OpcUa|--|--|--|--|--|--|--|--|--|--|--|--|--|--|1.0.0.24|1.0.0.24|1.0.0.24|1.0.0.24|1.0.0.24|--|--|--|--|--|--| 100 | |Tc3_PackML|3.4.2.0|3.4.2.0|3.4.2.0|3.3.5.0|3.3.5.0|3.3.5.0|3.3.5.0|3.3.5.0|3.3.5.0|3.3.5.0|3.3.5.0|3.3.5.0|3.3.3.0|3.3.3.0|3.3.3.0|3.3.3.0|3.3.3.0|3.3.3.0|3.3.3.0|3.3.3.0|3.3.3.0|3.3.3.0|3.3.3.0|3.3.3.0|3.3.3.0| 101 | |Tc3_PackML_V2|3.4.2.0|3.4.2.0|3.4.2.0|3.3.17.0|3.3.17.0|3.3.17.0|3.3.17.0|3.3.17.0|3.3.17.0|3.3.17.0|3.3.17.0|3.3.17.0|3.3.15.0|3.3.15.0|3.3.15.0|3.3.15.0|3.3.15.0|3.3.15.0|3.3.15.0|3.3.14.0|3.3.11.0|3.3.8.0|3.3.8.0|3.3.8.0|3.3.8.0| 102 | |Tc3_PLCopen_OpcUa|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.3.2.0|3.2.12.0|3.2.12.0|3.2.12.0|3.2.11.0|3.2.10.0|3.2.10.0|3.2.10.0|3.2.9.0|3.2.9.0|3.2.9.0|3.1.7.0|3.1.7.0|3.1.7.0|3.1.7.0|3.1.6.0| 103 | |Tc3_RealtimeMonitoring|1.0.2.0|1.0.2.0|1.0.2.0|1.0.2.0|1.0.2.0|1.0.2.0|1.0.2.0|1.0.2.0|1.0.2.0|1.0.2.0|1.0.2.0|1.0.2.0|1.0.2.0|1.0.2.0|1.0.2.0|1.0.2.0|1.0.2.0|1.0.2.0|1.0.2.0|1.0.2.0|--|--|--|--|--| 104 | |Tc3_Units|--|--|--|--|--|1.0.0.3|1.0.0.3|1.0.0.3|1.0.0.2|1.0.0.2|1.0.0.2|--|--|--|--|--|--|--|--|--|--|--|--|--| 105 | |Tc3_uniValPlc|3.1.0.6|3.1.0.6|3.1.0.6|3.1.0.6|3.1.0.6|3.1.0.6|3.1.0.5|3.1.0.5|3.1.0.5|3.1.0.5|3.1.0.4|3.1.0.4|3.1.0.4|3.1.0.4|3.1.0.4|3.1.0.4|3.1.0.4|3.1.0.4|3.1.0.4|3.1.0.2|3.1.0.0|3.1.0.0|3.1.0.0|2.3.0.2|2.3.0.2| 106 | |Tc3_uniValPlc_v4|4.1.1.7|4.1.1.7|4.1.1.7|4.1.1.7|4.1.1.7|4.1.1.7|4.1.1.6|4.1.1.6|4.1.1.6|4.1.1.6|4.1.1.5|4.1.1.5|4.1.1.5|4.1.1.5|4.1.1.5|4.1.1.5|4.1.1.5|4.1.1.5|4.1.1.5|4.1.1.3|4.1.1.1|--|--|--|--| 107 | |Tc3_uniValPlc_v4_3|4.3.0.5|4.3.0.5|4.3.0.5|4.3.0.5|4.3.0.5|4.3.0.5|4.3.0.4|4.3.0.4|4.3.0.4|4.3.0.4|4.3.0.3|4.3.0.3|4.3.0.3|4.3.0.3|4.3.0.3|4.3.0.3|4.3.0.3|4.3.0.3|4.3.0.3|4.3.0.1|--|--|--|--|--| 108 | |Tc3_uniValPlc_v4_4|4.4.1.5|4.4.1.5|4.4.1.5|4.4.1.5|4.4.1.5|4.4.1.5|4.4.1.4|4.4.1.4|4.4.1.4|4.4.1.4|4.4.1.3|4.4.1.3|4.4.1.3|4.4.1.3|4.4.1.3|4.4.1.3|4.4.1.3|4.4.1.3|4.4.1.3|4.4.1.0|--|--|--|--|--| 109 | |Tc3_uniValPlc_v4_5|4.5.0.2|4.5.0.2|4.5.0.2|4.5.0.2|4.5.0.2|4.5.0.2|4.5.0.1|4.5.0.1|4.5.0.1|4.5.0.1|4.5.0.1|4.5.0.1|4.5.0.1|4.5.0.1|4.5.0.1|4.5.0.1|4.5.0.1|4.5.0.1|4.5.0.1|--|--|--|--|--|--| 110 | |Tc3_uniValPlc_v4_6|4.6.0.2|4.6.0.2|4.6.0.2|4.6.0.2|4.6.0.2|4.6.0.2|4.6.0.1|4.6.0.1|4.6.0.1|4.6.0.1|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--| 111 | |Tc3_XBA|5.5.6.0|5.5.6.0|5.5.6.0|5.5.6.0|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--|--| 112 | |Tc3_XLS|--|--|--|--|--|--|--|--|--|--|--|--|--|1.0.1.0|1.0.1.0|1.0.1.0|1.0.1.0|1.0.1.0|--|--|--|--|--|--| 113 | -------------------------------------------------------------------------------- /TcLibraryVersions.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.31624.102 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TcLibraryVersions", "TcLibraryVersions\TcLibraryVersions.csproj", "{2A6CA195-AB17-4D9D-B0F3-E3A5BA360118}" 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 | {2A6CA195-AB17-4D9D-B0F3-E3A5BA360118}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {2A6CA195-AB17-4D9D-B0F3-E3A5BA360118}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {2A6CA195-AB17-4D9D-B0F3-E3A5BA360118}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {2A6CA195-AB17-4D9D-B0F3-E3A5BA360118}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {425E99BC-4A40-4976-9AAC-1428FC29285C} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /TcLibraryVersions/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Text.RegularExpressions; 3 | using System.IO; 4 | using System.Text; 5 | using System.Collections; 6 | using System.Diagnostics; 7 | using Octokit; 8 | using System.Linq; 9 | using System.Threading.Tasks; 10 | using CommandLine; 11 | using System.Collections.Generic; 12 | using LibGit2Sharp; 13 | using LibGit2Sharp.Handlers; 14 | 15 | namespace TcLibraryVersions 16 | { 17 | class Program 18 | { 19 | public class Options 20 | { 21 | [Option('d', "direct", Required = false, 22 | HelpText = "Change Readme File direct on github without cloning on the local disk. Therefore you have to either clone the repo on your github account or have an access token to my repo.", 23 | SetName = "direct")] 24 | public bool Direct { get; set; } 25 | 26 | [Option('p', "push", Required = false, 27 | HelpText = "Clones repo to your local disk and makes a pull request after updating the table.", 28 | SetName = "push")] 29 | public bool Push { get; set; } 30 | 31 | [Option('l', "local", Required = false, 32 | HelpText = "Creates a table which is saved in C:\\Temp. You can update the table ob github then manually.", 33 | SetName = "local")] 34 | public bool Local { get; set; } 35 | 36 | [Option('c', "commit", Required = false, 37 | HelpText = "Clones repo to your local disk and commits the changes. The Pull request has to be done manually.", 38 | SetName = "commit")] 39 | public bool Commit { get; set; } 40 | 41 | [Option('m', "manually", Required = false, 42 | HelpText = "Insert the Personal Access Token manually. (And not via an environment variable)")] 43 | public bool Manually { get; set; } 44 | 45 | 46 | [Option('t', "transpose", Required = false, 47 | HelpText = "Transpose the table.")] 48 | public bool Transpose { get; set; } 49 | 50 | } 51 | 52 | 53 | 54 | static async Task Main(string[] args) 55 | { 56 | // ############### Check Options ################### 57 | bool directUpload = false, cloneRepo = true, push = false, inputTokenManually = false, transposeTable = false; 58 | checkOptions(args, out directUpload, out cloneRepo, out push, out inputTokenManually, out transposeTable); 59 | 60 | // ############### Get informations of the current installed system ################### 61 | string TcVersion; 62 | ArrayList libs, latestVersion; 63 | int index; 64 | checkLocalLibraries(out TcVersion, out libs, out latestVersion, out index); 65 | 66 | string headline, secondLine; 67 | string[] versionLines; 68 | 69 | 70 | if (directUpload) 71 | { 72 | // ############################################################ 73 | // ############### Update Table directly on Github ################### 74 | // ############################################################ 75 | 76 | string fullText; 77 | string currentText; 78 | string cred; 79 | string sha; 80 | 81 | // Enter GitHub Username 82 | Console.Write("Enter your Github username: "); 83 | string userName = Console.ReadLine(); 84 | 85 | var (owner, repoName, filePath, branch) = (userName, "TcLibraryVersions", "README.md", "main"); 86 | 87 | var gitHubClient = new GitHubClient(new ProductHeaderValue("TcLibraryVersions")); 88 | if (inputTokenManually) 89 | { 90 | // manual input of Personal Access Token 91 | Console.WriteLine("Please insert your Personal Access Token of Github"); 92 | cred = Console.ReadLine(); 93 | } 94 | else 95 | { 96 | // Input via environment variable 97 | cred = Environment.GetEnvironmentVariable("GITHUBKEY"); 98 | } 99 | gitHubClient.Credentials = new Octokit.Credentials(cred); 100 | 101 | if (userName.Equals("RumstiBumsti")) 102 | { 103 | // If i do the changes i do not need to fork 104 | var tuple = await getReadmeFromGithub(inputTokenManually, gitHubClient); 105 | currentText = tuple.Item1; 106 | sha = tuple.Item2; 107 | } 108 | else 109 | { 110 | // everybody else has to fork the repo first 111 | var newRepositoryFork = new NewRepositoryFork(); 112 | try 113 | { 114 | await gitHubClient.Repository.Forks.Create("RumstiBumsti", "TcLibraryVersions", new NewRepositoryFork()); 115 | } 116 | catch (Octokit.AuthorizationException) 117 | { 118 | Console.WriteLine("Invalid Credentials"); 119 | System.Environment.Exit(0); 120 | } 121 | 122 | var contents = await gitHubClient.Repository.Content.GetAllContentsByRef(owner, repoName, filePath, branch); 123 | sha = contents.First().Sha; 124 | currentText = contents.First().Content; 125 | } 126 | 127 | 128 | ArrayList tcVersions; 129 | ArrayList[] ghVersions; 130 | createVersionArrayLists(libs, latestVersion, TcVersion, currentText, out tcVersions, out ghVersions); 131 | createTopLines(libs, tcVersions, out headline, out secondLine, transposeTable); 132 | 133 | if (!currentText.Contains(TcVersion)) 134 | { 135 | versionLines = createVersionlinesFromArrayLists(TcVersion, tcVersions, libs, ghVersions, transposeTable); 136 | writeLocalTable(ref headline, ref secondLine, versionLines); 137 | fullText = currentText.Substring(0, currentText.IndexOf("|TcVersion|")) + headline + secondLine; 138 | 139 | foreach (string vline in versionLines) 140 | { 141 | fullText += vline; 142 | } 143 | 144 | if (userName.Equals("RumstiBumsti")) 145 | { 146 | await updateReadmeOnGithub(fullText, TcVersion, sha, gitHubClient); 147 | } 148 | else 149 | { 150 | string commitMessage = "inserted entry for Twincat Version: " + TcVersion; 151 | 152 | try 153 | { 154 | var updateRequest = new UpdateFileRequest(commitMessage, fullText, sha, branch); 155 | var updatefile = await gitHubClient.Repository.Content.UpdateFile(owner, repoName, filePath, updateRequest); 156 | NewPullRequest newPr = new NewPullRequest(commitMessage, userName+":main", "main"); 157 | await gitHubClient.PullRequest.Create("RumstiBumsti", "TcLibraryVersions", newPr); 158 | } 159 | catch (Octokit.NotFoundException) 160 | { 161 | Console.WriteLine("Seems like the github Client does not have the permissions to write the readme file"); 162 | System.Environment.Exit(0); 163 | } 164 | } 165 | } 166 | else 167 | { 168 | Console.WriteLine("Version already exists in table."); 169 | } 170 | 171 | } 172 | else if (cloneRepo || push) 173 | { 174 | // ##################################################################################################################### 175 | // ############### Clone repo, perform changes and commit. if option is active also push the changes ################### 176 | // ##################################################################################################################### 177 | LibGit2Sharp.Repository repo; 178 | 179 | string path = @"c:\temp\TcLibraryVersions"; 180 | clone(path); 181 | 182 | string currentText = File.ReadAllText(path + "\\readme.md"); 183 | 184 | ArrayList tcVersions; 185 | ArrayList[] ghVersions; 186 | 187 | createVersionArrayLists(libs, latestVersion, TcVersion, currentText, out tcVersions, out ghVersions); 188 | createTopLines(libs, tcVersions, out headline, out secondLine, transposeTable); 189 | 190 | if (!currentText.Contains(TcVersion)) 191 | { 192 | versionLines = createVersionlinesFromArrayLists(TcVersion, tcVersions, libs, ghVersions, transposeTable); 193 | 194 | writeLocalTable(ref headline, ref secondLine, versionLines); 195 | 196 | string fullText = ""; 197 | fullText = currentText.Substring(0, currentText.IndexOf("|TcVersion|")) + headline + secondLine; 198 | foreach (string vline in versionLines) 199 | { 200 | fullText += vline; 201 | } 202 | 203 | if (File.Exists(path + "\\readme.md")) 204 | { 205 | File.Delete(path + "\\readme.md"); 206 | } 207 | 208 | //Create the file. 209 | using (FileStream fs = File.Create(path + "\\readme.md")) 210 | { 211 | byte[] info = new UTF8Encoding(true).GetBytes(fullText); 212 | fs.Write(info, 0, info.Length); 213 | } 214 | 215 | Console.Write("Enter your Github username: "); 216 | string userName = Console.ReadLine(); 217 | 218 | commit(path, out repo, userName, TcVersion); 219 | 220 | if (push) 221 | { 222 | pushChanges(inputTokenManually, repo, userName); 223 | } 224 | } 225 | else 226 | { 227 | Console.WriteLine("Informations for current TcVersion already exist."); 228 | } 229 | } 230 | else 231 | { 232 | // ############################################################ 233 | // ############### Just write a local table ################### 234 | // ############################################################ 235 | ArrayList tcVersions = new ArrayList(); 236 | ArrayList[] ghVersions = new ArrayList[1]; 237 | ghVersions[0] = new ArrayList(); 238 | ghVersions[0] = latestVersion; 239 | tcVersions.Add(TcVersion); 240 | 241 | versionLines = createVersionlinesFromArrayLists(TcVersion, tcVersions, libs, ghVersions, transposeTable); 242 | createTopLines(libs, tcVersions, out headline, out secondLine, transposeTable); 243 | writeLocalTable(ref headline, ref secondLine, versionLines); 244 | } 245 | } 246 | 247 | private static void pushChanges(bool inputToken, LibGit2Sharp.Repository repo, string userName) 248 | { 249 | string accessToken = ""; 250 | 251 | if (inputToken) 252 | { 253 | Console.Write("Enter your access token: "); 254 | accessToken = Console.ReadLine(); 255 | } 256 | else 257 | { 258 | accessToken = Environment.GetEnvironmentVariable("GITHUBKEY"); 259 | } 260 | 261 | 262 | LibGit2Sharp.PushOptions options = new LibGit2Sharp.PushOptions(); 263 | options.CredentialsProvider = new CredentialsHandler( 264 | (url, usernameFromUrl, types) => 265 | new UsernamePasswordCredentials() 266 | { 267 | Username = userName, 268 | Password = accessToken 269 | }); 270 | try 271 | { 272 | repo.Network.Push(repo.Branches["main"], options); 273 | } 274 | catch (LibGit2Sharp.LibGit2SharpException) 275 | { 276 | Console.WriteLine("Invalid Credentials!"); 277 | System.Environment.Exit(0); 278 | } 279 | 280 | } 281 | 282 | private static void clone(string path) 283 | { 284 | System.IO.DirectoryInfo dir = new System.IO.DirectoryInfo(path); 285 | 286 | // Delete the directory if it exists. 287 | if (Directory.Exists(path)) 288 | { 289 | setFileAttributesNormal(dir); 290 | Directory.Delete(path, true); 291 | } 292 | 293 | var cloneResult = LibGit2Sharp.Repository.Clone(@"https://github.com/RumstiBumsti/TcLibraryVersions", path); 294 | } 295 | 296 | private static void commit(string path, out LibGit2Sharp.Repository repo, string userName, string TcVersion) 297 | { 298 | // ############### commit the readme file ################### 299 | Console.Write("Enter your email adress: "); 300 | string email = Console.ReadLine(); 301 | string commitMessage = "inserted entry for Twincat Version: " + TcVersion; 302 | 303 | repo = new LibGit2Sharp.Repository(path); 304 | repo.Index.Add("Readme.md"); 305 | repo.Commit(commitMessage, new LibGit2Sharp.Signature(userName, email, DateTimeOffset.Now), 306 | new LibGit2Sharp.Signature(userName, email, DateTimeOffset.Now)); 307 | } 308 | 309 | public static void setFileAttributesNormal(DirectoryInfo dir) 310 | { 311 | foreach (var subDir in dir.GetDirectories()) 312 | setFileAttributesNormal(subDir); 313 | foreach (var file in dir.GetFiles()) 314 | { 315 | file.Attributes = FileAttributes.Normal; 316 | } 317 | } 318 | 319 | private static void createTopLines(ArrayList libs, ArrayList tcVersions, out string headline, out string secondLine, bool transposed) 320 | { 321 | if (transposed) 322 | { 323 | 324 | headline = "|TcVersion|"; 325 | secondLine = "|---|"; 326 | foreach (string version in tcVersions) 327 | { 328 | headline += version + "|"; 329 | secondLine += "---|"; 330 | } 331 | } 332 | else 333 | { 334 | headline = "|TcVersion|"; 335 | secondLine = "|---|"; 336 | foreach (string lib in libs) 337 | { 338 | headline += lib + "|"; 339 | secondLine += "---|"; 340 | } 341 | } 342 | 343 | } 344 | 345 | private static async Task> getReadmeFromGithub(bool inputToken, GitHubClient gitHubClient) 346 | { 347 | var (owner, repoName, filePath, branch) = ("RumstiBumsti", "TcLibraryVersions", "README.md", "main"); 348 | var currentFileText = ""; 349 | IReadOnlyList contents = null; 350 | 351 | try 352 | { 353 | // try to get the file (and with the file the last commit sha) 354 | contents = await gitHubClient.Repository.Content.GetAllContentsByRef(owner, repoName, filePath, branch); 355 | var targetFile = contents.First(); 356 | 357 | if (targetFile.EncodedContent != null) 358 | { 359 | currentFileText = Encoding.UTF8.GetString(Convert.FromBase64String(targetFile.EncodedContent)); 360 | } 361 | else 362 | { 363 | currentFileText = targetFile.Content; 364 | } 365 | } 366 | catch (Octokit.NotFoundException) 367 | { 368 | // The file should exist ... so in this case there might are missing some permissions 369 | Console.WriteLine("Seems like the github Client does not have the permissions to write the readme file"); 370 | } 371 | catch (Octokit.AuthorizationException) 372 | { 373 | if (inputToken) 374 | { 375 | Console.WriteLine("The Personal Access Token is not valid."); 376 | } 377 | else 378 | { 379 | Console.WriteLine("The Environment Variable GITHUBKEY is not set or the key is not valid."); 380 | } 381 | System.Environment.Exit(0); 382 | } 383 | 384 | return new Tuple(currentFileText,contents.First().Sha); 385 | } 386 | 387 | private static async Task updateReadmeOnGithub(string fullText, string TcVersion, string sha, GitHubClient gitHubClient) 388 | { 389 | var (owner, repoName, filePath, branch) = ("RumstiBumsti", "TcLibraryVersions", "README.md", "main"); 390 | 391 | try 392 | { 393 | string commitMessage = "inserted entry for Twincat Version: " + TcVersion; 394 | var updateRequest = new UpdateFileRequest(commitMessage, fullText, sha, branch); 395 | var updatefile = await gitHubClient.Repository.Content.UpdateFile(owner, repoName, filePath, updateRequest); 396 | } 397 | catch (Octokit.NotFoundException) 398 | { 399 | // The file should exist ... so in this case there might are missing some permissions 400 | Console.WriteLine("Seems like the github Client does not have the permissions to write the readme file"); 401 | } 402 | } 403 | 404 | private static void createVersionArrayLists(ArrayList libs, ArrayList latestVersion, string TcVersion, string currentFileText, out ArrayList tcVersions, out ArrayList[] ghVersions) 405 | { 406 | string ghHeadline = currentFileText.Substring(currentFileText.IndexOf("|TcVersion|") + 10); 407 | string linebreak = ghHeadline.IndexOf("\n") >= 0 ? "\n" : "\r\n"; 408 | ghHeadline = ghHeadline.Substring(0, ghHeadline.IndexOf(linebreak)); 409 | 410 | MatchCollection headlineMatches; 411 | MatchCollection libVersionMatches; 412 | MatchCollection libMatches; 413 | MatchCollection tcVersionMatches; 414 | ArrayList ghLibs = new ArrayList(); 415 | tcVersions = new ArrayList(); 416 | ArrayList[] ghVersionsTemp; 417 | string[] lines; 418 | 419 | string pattern = @"([0-9]{3,}.[0-9]+)"; 420 | headlineMatches = Regex.Matches(ghHeadline, pattern); 421 | 422 | // find out if the currentext has a normal or transposed table 423 | if(headlineMatches.Count > 0) 424 | { 425 | // The table is transposed 426 | pattern = @"(\|)([0-9]{3,}.[0-9]+)"; 427 | tcVersionMatches = Regex.Matches(ghHeadline, pattern); 428 | 429 | pattern = @"Tc[0-9]_[A-Z,a-z,0-9,_]+"; 430 | libMatches = Regex.Matches(currentFileText, pattern); 431 | 432 | lines = new string[libMatches.Count]; 433 | for (int i = 0; i < libMatches.Count; i++) 434 | { 435 | int startOfString = currentFileText.IndexOf(libMatches[i].Value) + libMatches[i].Value.Length; 436 | 437 | if (i < libMatches.Count - 1) 438 | { 439 | int uhuh = currentFileText.IndexOf(libMatches[i + 1].Value); 440 | lines[i] = currentFileText.Substring(startOfString, currentFileText.IndexOf(libMatches[i + 1].Value) - startOfString - 2); 441 | } 442 | else 443 | { 444 | lines[i] = currentFileText.Substring(currentFileText.IndexOf(libMatches[i].Value) + libMatches[i].Value.Length); 445 | } 446 | } 447 | 448 | ghVersionsTemp = new ArrayList[libMatches.Count]; 449 | 450 | 451 | pattern = @"[0-9,.]{4,}|--"; 452 | for (int i = 0; i < libMatches.Count; i++) 453 | { 454 | libVersionMatches = Regex.Matches(lines[i], pattern); 455 | 456 | ghVersionsTemp[i] = new ArrayList(); 457 | 458 | ghLibs.Add(libMatches[i].Value); 459 | 460 | for (int j = 0; j < tcVersionMatches.Count; j++) 461 | { 462 | ghVersionsTemp[i].Add(libVersionMatches[j].Value); 463 | } 464 | } 465 | ghVersionsTemp = transposeArrayListTable(ghVersionsTemp); 466 | } 467 | else 468 | { 469 | pattern = @"[A-Z,a-z,0-9,_]+"; 470 | headlineMatches = Regex.Matches(ghHeadline, pattern); 471 | // The table is not transposed 472 | pattern = @"(\|)([0-9]{3,}.[0-9]+)(\|)"; 473 | tcVersionMatches = Regex.Matches(currentFileText, pattern); 474 | 475 | lines = new string[tcVersionMatches.Count]; 476 | for (int i = 0; i < tcVersionMatches.Count; i++) 477 | { 478 | int startOfString = currentFileText.IndexOf(tcVersionMatches[i].Value) + tcVersionMatches[i].Value.Length; 479 | 480 | if (i < tcVersionMatches.Count - 1) 481 | { 482 | lines[i] = currentFileText.Substring(startOfString, currentFileText.IndexOf(tcVersionMatches[i + 1].Value) - startOfString - 2); 483 | } 484 | else 485 | { 486 | lines[i] = currentFileText.Substring(startOfString); 487 | } 488 | } 489 | 490 | ghVersionsTemp = new ArrayList[tcVersionMatches.Count]; 491 | 492 | pattern = @"[0-9,.]{4,}|--"; 493 | for (int i = 0; i < tcVersionMatches.Count; i++) 494 | { 495 | libVersionMatches = Regex.Matches(lines[i], pattern); 496 | 497 | ghVersionsTemp[i] = new ArrayList(); 498 | 499 | for (int j = 0; j < headlineMatches.Count; j++) 500 | { 501 | if (i == 0) 502 | { 503 | ghLibs.Add(headlineMatches[j].Value); 504 | } 505 | ghVersionsTemp[i].Add(libVersionMatches[j].Value); 506 | } 507 | } 508 | } 509 | 510 | // ############### Edit the table ################### 511 | for (int i = 0; i < ghLibs.Count; i++) 512 | { 513 | if (libs.Count > i) 514 | { 515 | if (!ghLibs[i].Equals(libs[i])) 516 | { 517 | // Do we have an additional lib or do we have missing libs?? 518 | StringComparer sc = StringComparer.CurrentCultureIgnoreCase; 519 | int j = 0; 520 | while (!ghLibs[i].Equals(libs[i + j]) && sc.Compare(ghLibs[i], libs[i + j]) > 0) 521 | { 522 | j++; 523 | } 524 | 525 | // if while exit in the first loop, we have less libs in libs[], else we have addditional 526 | if (j == 0) 527 | { 528 | libs.Insert(i, ghLibs[i]); 529 | latestVersion.Insert(i, "--"); 530 | } 531 | else 532 | { 533 | for (int k = 0; k < j; k++) 534 | { 535 | ghLibs.Insert(i + k, libs[i + k]); 536 | for (int l = 0; l < tcVersionMatches.Count; l++) 537 | { 538 | ghVersionsTemp[l].Insert(i + k, "--"); 539 | } 540 | } 541 | } 542 | } 543 | } 544 | else 545 | { 546 | libs.Insert(i, ghLibs[i]); 547 | latestVersion.Insert(i, "--"); 548 | } 549 | } 550 | 551 | if (libs.Count > ghLibs.Count) 552 | { 553 | for (int i = ghLibs.Count; i < libs.Count; i++) 554 | { 555 | ghLibs.Insert(i, libs[i]); 556 | for (int l = 0; l < tcVersionMatches.Count; l++) 557 | { 558 | ghVersionsTemp[l].Insert(i, "--"); 559 | } 560 | } 561 | } 562 | 563 | // Consolidate the ArrayLists 564 | System.Version currentVersion = System.Version.Parse(TcVersion); 565 | ghVersions = new ArrayList[tcVersionMatches.Count+1]; 566 | bool insertedNewLine = false; 567 | 568 | for (int i = 0; i < tcVersionMatches.Count+1; i++) 569 | { 570 | ghVersions[i] = new ArrayList(); 571 | if (i != tcVersionMatches.Count || insertedNewLine) 572 | { 573 | System.Version tempVersion = System.Version.Parse(tcVersionMatches[i - Convert.ToInt32(insertedNewLine)].Groups[2].Value); 574 | if (currentVersion.CompareTo(tempVersion) > 0 && !insertedNewLine) 575 | { 576 | insertedNewLine = true; 577 | ghVersions[i]=latestVersion; 578 | tcVersions.Add(TcVersion); 579 | } 580 | else 581 | { 582 | ghVersions[i]= ghVersionsTemp[i - Convert.ToInt32(insertedNewLine)]; 583 | tcVersions.Add(tempVersion.ToString()); 584 | } 585 | } 586 | else 587 | { 588 | insertedNewLine = true; 589 | ghVersions[i]=latestVersion; 590 | tcVersions.Add(TcVersion); 591 | } 592 | } 593 | } 594 | 595 | private static ArrayList[] transposeArrayListTable(ArrayList[] ghVersions) 596 | { 597 | ArrayList[] transposedList = new ArrayList[ghVersions[0].Count]; 598 | 599 | for (int i = 0; i < ghVersions.Length; i++) 600 | { 601 | for (int j = 0; j < ghVersions[0].Count; j++) 602 | { 603 | if (i == 0) 604 | { 605 | transposedList[j] = new ArrayList(); 606 | } 607 | transposedList[j].Add(ghVersions[i][j]); 608 | } 609 | 610 | } 611 | 612 | return transposedList; 613 | } 614 | 615 | private static string[] createVersionlinesFromArrayLists(string TcVersion, ArrayList tcVersions, ArrayList libs, ArrayList[] ghVersions, bool transpose) 616 | { 617 | string[] versionLines; 618 | if (transpose) 619 | { 620 | ghVersions = transposeArrayListTable(ghVersions); 621 | versionLines = new string[libs.Count]; 622 | 623 | for (int i = 0; i < libs.Count; i++) 624 | { 625 | versionLines[i] = "|" + libs[i] + "|"; 626 | for (int j = 0; j < tcVersions.Count; j++) 627 | { 628 | versionLines[i] += ghVersions[i][j] + "|"; 629 | } 630 | } 631 | } 632 | else 633 | { 634 | versionLines = new string[tcVersions.Count]; 635 | 636 | for (int i = 0; i < tcVersions.Count; i++) 637 | { 638 | versionLines[i] = "|" + tcVersions[i].ToString() + "|"; 639 | for (int j = 0; j < ghVersions[0].Count; j++) 640 | { 641 | versionLines[i] += ghVersions[i][j].ToString() + "|"; 642 | } 643 | } 644 | } 645 | 646 | return versionLines; 647 | } 648 | 649 | private static void checkLocalLibraries(out string TcVersion, out ArrayList libs, out ArrayList latestVersion, out int index) 650 | { 651 | TcVersion = ""; 652 | 653 | // Check the product version of TCATSysSrv.exe 654 | try 655 | { 656 | var versionInfo = FileVersionInfo.GetVersionInfo(@"C:\TwinCAT\3.1\System\TCATSysSrv.exe"); 657 | TcVersion = versionInfo.ProductBuildPart.ToString() + "." + versionInfo.ProductPrivatePart.ToString(); 658 | } 659 | catch (System.IO.FileNotFoundException) 660 | { 661 | Console.WriteLine("Twincat Path not found on System"); 662 | System.Environment.Exit(0); 663 | } 664 | 665 | // root Directory for the installed libs 666 | System.IO.DirectoryInfo root = new System.IO.DirectoryInfo("C:\\TwinCAT\\3.1\\Components\\Plc\\Managed Libraries\\Beckhoff Automation GmbH"); 667 | System.IO.DirectoryInfo[] dirs = root.GetDirectories("*"); 668 | 669 | libs = new ArrayList(); 670 | latestVersion = new ArrayList(); 671 | index = 0; 672 | 673 | // Go through all libs and save the latest version 674 | foreach (System.IO.DirectoryInfo dir in dirs) 675 | { 676 | libs.Add(dir.Name); 677 | System.IO.DirectoryInfo[] subDirs = dir.GetDirectories("*"); 678 | 679 | System.Version latestVersionNumber = new System.Version(); 680 | 681 | foreach (System.IO.DirectoryInfo subDir in subDirs) 682 | { 683 | System.Version ver = System.Version.Parse(subDir.Name); 684 | if (latestVersionNumber.CompareTo(ver) < 0) 685 | { 686 | latestVersionNumber = ver; 687 | } 688 | } 689 | 690 | // build the string for the latest version of lib[intdex] 691 | latestVersion.Add(latestVersionNumber.ToString()); 692 | 693 | index++; 694 | } 695 | } 696 | 697 | private static void checkOptions(string[] args, out bool directUpload, out bool cloneRepo, out bool push, out bool inputTokenManually, out bool transposeTable) 698 | { 699 | ParserResult parser = null; 700 | parser = Parser.Default.ParseArguments(args); 701 | 702 | 703 | bool directUploadTemp = true, cloneRepoTemp = false, pushTemp = false, inputTokenManuallyTemp = true, transposeTableTemp = true; 704 | 705 | parser.WithParsed(o => 706 | { 707 | if (o.Direct) 708 | { 709 | directUploadTemp = true; 710 | inputTokenManuallyTemp = false; 711 | cloneRepoTemp = false; 712 | } 713 | if (o.Local) 714 | { 715 | cloneRepoTemp = false; 716 | inputTokenManuallyTemp = false; 717 | directUploadTemp = false; 718 | } 719 | if (o.Push) 720 | { 721 | directUploadTemp = false; 722 | pushTemp = true; 723 | cloneRepoTemp = true; 724 | } 725 | if (o.Commit) 726 | { 727 | directUploadTemp = false; 728 | pushTemp = false; 729 | cloneRepoTemp = true; 730 | } 731 | if(o.Manually && !o.Local) 732 | { 733 | inputTokenManuallyTemp = true; 734 | } 735 | if (o.Transpose) 736 | { 737 | transposeTableTemp = true; 738 | } 739 | 740 | }); 741 | 742 | directUpload = directUploadTemp; 743 | push = pushTemp; 744 | cloneRepo = cloneRepoTemp; 745 | inputTokenManually = inputTokenManuallyTemp; 746 | transposeTable = transposeTableTemp; 747 | } 748 | 749 | private static void writeLocalTable(ref string headline, ref string secondLine, string[] versionLines) 750 | { 751 | // Generates teh file and inserts all information provided in the parameters 752 | string path = @"c:\temp\TcLibVersions.txt"; 753 | 754 | // Delete the file if it exists. 755 | if (File.Exists(path)) 756 | { 757 | File.Delete(path); 758 | } 759 | headline += "\n"; 760 | secondLine += "\n"; 761 | 762 | //Create the file. 763 | using (FileStream fs = File.Create(path)) 764 | { 765 | AddText(fs, headline); 766 | AddText(fs, secondLine); 767 | for (int i = 0; i < versionLines.Count(); i++) 768 | { 769 | versionLines[i] += "\n"; 770 | AddText(fs, versionLines[i]); 771 | } 772 | } 773 | } 774 | 775 | private static void AddText(FileStream fs, string value) 776 | { 777 | // Adds text to the filestream 778 | byte[] info = new UTF8Encoding(true).GetBytes(value); 779 | fs.Write(info, 0, info.Length); 780 | } 781 | } 782 | } 783 | -------------------------------------------------------------------------------- /TcLibraryVersions/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "TcLibraryVersions": { 4 | "commandName": "Project", 5 | "commandLineArgs": "-c" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /TcLibraryVersions/TcLibraryVersions.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net5.0 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /TcLibraryVersions/TcLibraryVersions/bin/Debug/net5.0/TcLibraryVersions.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v5.0", 4 | "signature": "" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v5.0": { 9 | "TcLibraryVersions/1.0.0": { 10 | "dependencies": { 11 | "ToMarkdownTable": "0.2.0" 12 | }, 13 | "runtime": { 14 | "TcLibraryVersions.dll": {} 15 | } 16 | }, 17 | "Microsoft.NETCore.Platforms/1.0.1": {}, 18 | "Microsoft.NETCore.Targets/1.0.1": {}, 19 | "Microsoft.Win32.Primitives/4.0.1": { 20 | "dependencies": { 21 | "Microsoft.NETCore.Platforms": "1.0.1", 22 | "Microsoft.NETCore.Targets": "1.0.1", 23 | "System.Runtime": "4.1.0" 24 | } 25 | }, 26 | "NETStandard.Library/1.6.0": { 27 | "dependencies": { 28 | "Microsoft.NETCore.Platforms": "1.0.1", 29 | "Microsoft.Win32.Primitives": "4.0.1", 30 | "System.AppContext": "4.1.0", 31 | "System.Collections": "4.0.11", 32 | "System.Collections.Concurrent": "4.0.12", 33 | "System.Console": "4.0.0", 34 | "System.Diagnostics.Debug": "4.0.11", 35 | "System.Diagnostics.Tools": "4.0.1", 36 | "System.Diagnostics.Tracing": "4.1.0", 37 | "System.Globalization": "4.0.11", 38 | "System.Globalization.Calendars": "4.0.1", 39 | "System.IO": "4.1.0", 40 | "System.IO.Compression": "4.1.0", 41 | "System.IO.Compression.ZipFile": "4.0.1", 42 | "System.IO.FileSystem": "4.0.1", 43 | "System.IO.FileSystem.Primitives": "4.0.1", 44 | "System.Linq": "4.1.0", 45 | "System.Linq.Expressions": "4.1.0", 46 | "System.Net.Http": "4.1.0", 47 | "System.Net.Primitives": "4.0.11", 48 | "System.Net.Sockets": "4.1.0", 49 | "System.ObjectModel": "4.0.12", 50 | "System.Reflection": "4.1.0", 51 | "System.Reflection.Extensions": "4.0.1", 52 | "System.Reflection.Primitives": "4.0.1", 53 | "System.Resources.ResourceManager": "4.0.1", 54 | "System.Runtime": "4.1.0", 55 | "System.Runtime.Extensions": "4.1.0", 56 | "System.Runtime.Handles": "4.0.1", 57 | "System.Runtime.InteropServices": "4.1.0", 58 | "System.Runtime.InteropServices.RuntimeInformation": "4.0.0", 59 | "System.Runtime.Numerics": "4.0.1", 60 | "System.Security.Cryptography.Algorithms": "4.2.0", 61 | "System.Security.Cryptography.Encoding": "4.0.0", 62 | "System.Security.Cryptography.Primitives": "4.0.0", 63 | "System.Security.Cryptography.X509Certificates": "4.1.0", 64 | "System.Text.Encoding": "4.0.11", 65 | "System.Text.Encoding.Extensions": "4.0.11", 66 | "System.Text.RegularExpressions": "4.1.0", 67 | "System.Threading": "4.0.11", 68 | "System.Threading.Tasks": "4.0.11", 69 | "System.Threading.Timer": "4.0.1", 70 | "System.Xml.ReaderWriter": "4.0.11", 71 | "System.Xml.XDocument": "4.0.11" 72 | } 73 | }, 74 | "runtime.native.System/4.0.0": { 75 | "dependencies": { 76 | "Microsoft.NETCore.Platforms": "1.0.1", 77 | "Microsoft.NETCore.Targets": "1.0.1" 78 | } 79 | }, 80 | "runtime.native.System.IO.Compression/4.1.0": { 81 | "dependencies": { 82 | "Microsoft.NETCore.Platforms": "1.0.1", 83 | "Microsoft.NETCore.Targets": "1.0.1" 84 | } 85 | }, 86 | "runtime.native.System.Net.Http/4.0.1": { 87 | "dependencies": { 88 | "Microsoft.NETCore.Platforms": "1.0.1", 89 | "Microsoft.NETCore.Targets": "1.0.1" 90 | } 91 | }, 92 | "runtime.native.System.Security.Cryptography/4.0.0": { 93 | "dependencies": { 94 | "Microsoft.NETCore.Platforms": "1.0.1", 95 | "Microsoft.NETCore.Targets": "1.0.1" 96 | } 97 | }, 98 | "System.AppContext/4.1.0": { 99 | "dependencies": { 100 | "System.Runtime": "4.1.0" 101 | } 102 | }, 103 | "System.Buffers/4.0.0": { 104 | "dependencies": { 105 | "System.Diagnostics.Debug": "4.0.11", 106 | "System.Diagnostics.Tracing": "4.1.0", 107 | "System.Resources.ResourceManager": "4.0.1", 108 | "System.Runtime": "4.1.0", 109 | "System.Threading": "4.0.11" 110 | } 111 | }, 112 | "System.Collections/4.0.11": { 113 | "dependencies": { 114 | "Microsoft.NETCore.Platforms": "1.0.1", 115 | "Microsoft.NETCore.Targets": "1.0.1", 116 | "System.Runtime": "4.1.0" 117 | } 118 | }, 119 | "System.Collections.Concurrent/4.0.12": { 120 | "dependencies": { 121 | "System.Collections": "4.0.11", 122 | "System.Diagnostics.Debug": "4.0.11", 123 | "System.Diagnostics.Tracing": "4.1.0", 124 | "System.Globalization": "4.0.11", 125 | "System.Reflection": "4.1.0", 126 | "System.Resources.ResourceManager": "4.0.1", 127 | "System.Runtime": "4.1.0", 128 | "System.Runtime.Extensions": "4.1.0", 129 | "System.Threading": "4.0.11", 130 | "System.Threading.Tasks": "4.0.11" 131 | } 132 | }, 133 | "System.Console/4.0.0": { 134 | "dependencies": { 135 | "Microsoft.NETCore.Platforms": "1.0.1", 136 | "Microsoft.NETCore.Targets": "1.0.1", 137 | "System.IO": "4.1.0", 138 | "System.Runtime": "4.1.0", 139 | "System.Text.Encoding": "4.0.11" 140 | } 141 | }, 142 | "System.Diagnostics.Debug/4.0.11": { 143 | "dependencies": { 144 | "Microsoft.NETCore.Platforms": "1.0.1", 145 | "Microsoft.NETCore.Targets": "1.0.1", 146 | "System.Runtime": "4.1.0" 147 | } 148 | }, 149 | "System.Diagnostics.DiagnosticSource/4.0.0": { 150 | "dependencies": { 151 | "System.Collections": "4.0.11", 152 | "System.Diagnostics.Tracing": "4.1.0", 153 | "System.Reflection": "4.1.0", 154 | "System.Runtime": "4.1.0", 155 | "System.Threading": "4.0.11" 156 | } 157 | }, 158 | "System.Diagnostics.Tools/4.0.1": { 159 | "dependencies": { 160 | "Microsoft.NETCore.Platforms": "1.0.1", 161 | "Microsoft.NETCore.Targets": "1.0.1", 162 | "System.Runtime": "4.1.0" 163 | } 164 | }, 165 | "System.Diagnostics.Tracing/4.1.0": { 166 | "dependencies": { 167 | "Microsoft.NETCore.Platforms": "1.0.1", 168 | "Microsoft.NETCore.Targets": "1.0.1", 169 | "System.Runtime": "4.1.0" 170 | } 171 | }, 172 | "System.Globalization/4.0.11": { 173 | "dependencies": { 174 | "Microsoft.NETCore.Platforms": "1.0.1", 175 | "Microsoft.NETCore.Targets": "1.0.1", 176 | "System.Runtime": "4.1.0" 177 | } 178 | }, 179 | "System.Globalization.Calendars/4.0.1": { 180 | "dependencies": { 181 | "Microsoft.NETCore.Platforms": "1.0.1", 182 | "Microsoft.NETCore.Targets": "1.0.1", 183 | "System.Globalization": "4.0.11", 184 | "System.Runtime": "4.1.0" 185 | } 186 | }, 187 | "System.Globalization.Extensions/4.0.1": { 188 | "dependencies": { 189 | "Microsoft.NETCore.Platforms": "1.0.1", 190 | "System.Globalization": "4.0.11", 191 | "System.Resources.ResourceManager": "4.0.1", 192 | "System.Runtime": "4.1.0", 193 | "System.Runtime.Extensions": "4.1.0", 194 | "System.Runtime.InteropServices": "4.1.0" 195 | } 196 | }, 197 | "System.IO/4.1.0": { 198 | "dependencies": { 199 | "Microsoft.NETCore.Platforms": "1.0.1", 200 | "Microsoft.NETCore.Targets": "1.0.1", 201 | "System.Runtime": "4.1.0", 202 | "System.Text.Encoding": "4.0.11", 203 | "System.Threading.Tasks": "4.0.11" 204 | } 205 | }, 206 | "System.IO.Compression/4.1.0": { 207 | "dependencies": { 208 | "Microsoft.NETCore.Platforms": "1.0.1", 209 | "System.Collections": "4.0.11", 210 | "System.Diagnostics.Debug": "4.0.11", 211 | "System.IO": "4.1.0", 212 | "System.Resources.ResourceManager": "4.0.1", 213 | "System.Runtime": "4.1.0", 214 | "System.Runtime.Extensions": "4.1.0", 215 | "System.Runtime.Handles": "4.0.1", 216 | "System.Runtime.InteropServices": "4.1.0", 217 | "System.Text.Encoding": "4.0.11", 218 | "System.Threading": "4.0.11", 219 | "System.Threading.Tasks": "4.0.11", 220 | "runtime.native.System": "4.0.0", 221 | "runtime.native.System.IO.Compression": "4.1.0" 222 | } 223 | }, 224 | "System.IO.Compression.ZipFile/4.0.1": { 225 | "dependencies": { 226 | "System.Buffers": "4.0.0", 227 | "System.IO": "4.1.0", 228 | "System.IO.Compression": "4.1.0", 229 | "System.IO.FileSystem": "4.0.1", 230 | "System.IO.FileSystem.Primitives": "4.0.1", 231 | "System.Resources.ResourceManager": "4.0.1", 232 | "System.Runtime": "4.1.0", 233 | "System.Runtime.Extensions": "4.1.0", 234 | "System.Text.Encoding": "4.0.11" 235 | } 236 | }, 237 | "System.IO.FileSystem/4.0.1": { 238 | "dependencies": { 239 | "Microsoft.NETCore.Platforms": "1.0.1", 240 | "Microsoft.NETCore.Targets": "1.0.1", 241 | "System.IO": "4.1.0", 242 | "System.IO.FileSystem.Primitives": "4.0.1", 243 | "System.Runtime": "4.1.0", 244 | "System.Runtime.Handles": "4.0.1", 245 | "System.Text.Encoding": "4.0.11", 246 | "System.Threading.Tasks": "4.0.11" 247 | } 248 | }, 249 | "System.IO.FileSystem.Primitives/4.0.1": { 250 | "dependencies": { 251 | "System.Runtime": "4.1.0" 252 | } 253 | }, 254 | "System.Linq/4.1.0": { 255 | "dependencies": { 256 | "System.Collections": "4.0.11", 257 | "System.Diagnostics.Debug": "4.0.11", 258 | "System.Resources.ResourceManager": "4.0.1", 259 | "System.Runtime": "4.1.0", 260 | "System.Runtime.Extensions": "4.1.0" 261 | } 262 | }, 263 | "System.Linq.Expressions/4.1.0": { 264 | "dependencies": { 265 | "System.Collections": "4.0.11", 266 | "System.Diagnostics.Debug": "4.0.11", 267 | "System.Globalization": "4.0.11", 268 | "System.IO": "4.1.0", 269 | "System.Linq": "4.1.0", 270 | "System.ObjectModel": "4.0.12", 271 | "System.Reflection": "4.1.0", 272 | "System.Reflection.Emit": "4.0.1", 273 | "System.Reflection.Emit.ILGeneration": "4.0.1", 274 | "System.Reflection.Emit.Lightweight": "4.0.1", 275 | "System.Reflection.Extensions": "4.0.1", 276 | "System.Reflection.Primitives": "4.0.1", 277 | "System.Reflection.TypeExtensions": "4.1.0", 278 | "System.Resources.ResourceManager": "4.0.1", 279 | "System.Runtime": "4.1.0", 280 | "System.Runtime.Extensions": "4.1.0", 281 | "System.Threading": "4.0.11" 282 | } 283 | }, 284 | "System.Net.Http/4.1.0": { 285 | "dependencies": { 286 | "Microsoft.NETCore.Platforms": "1.0.1", 287 | "System.Collections": "4.0.11", 288 | "System.Diagnostics.Debug": "4.0.11", 289 | "System.Diagnostics.DiagnosticSource": "4.0.0", 290 | "System.Diagnostics.Tracing": "4.1.0", 291 | "System.Globalization": "4.0.11", 292 | "System.Globalization.Extensions": "4.0.1", 293 | "System.IO": "4.1.0", 294 | "System.IO.FileSystem": "4.0.1", 295 | "System.Net.Primitives": "4.0.11", 296 | "System.Resources.ResourceManager": "4.0.1", 297 | "System.Runtime": "4.1.0", 298 | "System.Runtime.Extensions": "4.1.0", 299 | "System.Runtime.Handles": "4.0.1", 300 | "System.Runtime.InteropServices": "4.1.0", 301 | "System.Security.Cryptography.Algorithms": "4.2.0", 302 | "System.Security.Cryptography.Encoding": "4.0.0", 303 | "System.Security.Cryptography.OpenSsl": "4.0.0", 304 | "System.Security.Cryptography.Primitives": "4.0.0", 305 | "System.Security.Cryptography.X509Certificates": "4.1.0", 306 | "System.Text.Encoding": "4.0.11", 307 | "System.Threading": "4.0.11", 308 | "System.Threading.Tasks": "4.0.11", 309 | "runtime.native.System": "4.0.0", 310 | "runtime.native.System.Net.Http": "4.0.1", 311 | "runtime.native.System.Security.Cryptography": "4.0.0" 312 | } 313 | }, 314 | "System.Net.Primitives/4.0.11": { 315 | "dependencies": { 316 | "Microsoft.NETCore.Platforms": "1.0.1", 317 | "Microsoft.NETCore.Targets": "1.0.1", 318 | "System.Runtime": "4.1.0", 319 | "System.Runtime.Handles": "4.0.1" 320 | } 321 | }, 322 | "System.Net.Sockets/4.1.0": { 323 | "dependencies": { 324 | "Microsoft.NETCore.Platforms": "1.0.1", 325 | "Microsoft.NETCore.Targets": "1.0.1", 326 | "System.IO": "4.1.0", 327 | "System.Net.Primitives": "4.0.11", 328 | "System.Runtime": "4.1.0", 329 | "System.Threading.Tasks": "4.0.11" 330 | } 331 | }, 332 | "System.ObjectModel/4.0.12": { 333 | "dependencies": { 334 | "System.Collections": "4.0.11", 335 | "System.Diagnostics.Debug": "4.0.11", 336 | "System.Resources.ResourceManager": "4.0.1", 337 | "System.Runtime": "4.1.0", 338 | "System.Threading": "4.0.11" 339 | } 340 | }, 341 | "System.Reflection/4.1.0": { 342 | "dependencies": { 343 | "Microsoft.NETCore.Platforms": "1.0.1", 344 | "Microsoft.NETCore.Targets": "1.0.1", 345 | "System.IO": "4.1.0", 346 | "System.Reflection.Primitives": "4.0.1", 347 | "System.Runtime": "4.1.0" 348 | } 349 | }, 350 | "System.Reflection.Emit/4.0.1": { 351 | "dependencies": { 352 | "System.IO": "4.1.0", 353 | "System.Reflection": "4.1.0", 354 | "System.Reflection.Emit.ILGeneration": "4.0.1", 355 | "System.Reflection.Primitives": "4.0.1", 356 | "System.Runtime": "4.1.0" 357 | } 358 | }, 359 | "System.Reflection.Emit.ILGeneration/4.0.1": { 360 | "dependencies": { 361 | "System.Reflection": "4.1.0", 362 | "System.Reflection.Primitives": "4.0.1", 363 | "System.Runtime": "4.1.0" 364 | } 365 | }, 366 | "System.Reflection.Emit.Lightweight/4.0.1": { 367 | "dependencies": { 368 | "System.Reflection": "4.1.0", 369 | "System.Reflection.Emit.ILGeneration": "4.0.1", 370 | "System.Reflection.Primitives": "4.0.1", 371 | "System.Runtime": "4.1.0" 372 | } 373 | }, 374 | "System.Reflection.Extensions/4.0.1": { 375 | "dependencies": { 376 | "Microsoft.NETCore.Platforms": "1.0.1", 377 | "Microsoft.NETCore.Targets": "1.0.1", 378 | "System.Reflection": "4.1.0", 379 | "System.Runtime": "4.1.0" 380 | } 381 | }, 382 | "System.Reflection.Primitives/4.0.1": { 383 | "dependencies": { 384 | "Microsoft.NETCore.Platforms": "1.0.1", 385 | "Microsoft.NETCore.Targets": "1.0.1", 386 | "System.Runtime": "4.1.0" 387 | } 388 | }, 389 | "System.Reflection.TypeExtensions/4.1.0": { 390 | "dependencies": { 391 | "System.Reflection": "4.1.0", 392 | "System.Runtime": "4.1.0" 393 | } 394 | }, 395 | "System.Resources.ResourceManager/4.0.1": { 396 | "dependencies": { 397 | "Microsoft.NETCore.Platforms": "1.0.1", 398 | "Microsoft.NETCore.Targets": "1.0.1", 399 | "System.Globalization": "4.0.11", 400 | "System.Reflection": "4.1.0", 401 | "System.Runtime": "4.1.0" 402 | } 403 | }, 404 | "System.Runtime/4.1.0": { 405 | "dependencies": { 406 | "Microsoft.NETCore.Platforms": "1.0.1", 407 | "Microsoft.NETCore.Targets": "1.0.1" 408 | } 409 | }, 410 | "System.Runtime.Extensions/4.1.0": { 411 | "dependencies": { 412 | "Microsoft.NETCore.Platforms": "1.0.1", 413 | "Microsoft.NETCore.Targets": "1.0.1", 414 | "System.Runtime": "4.1.0" 415 | } 416 | }, 417 | "System.Runtime.Handles/4.0.1": { 418 | "dependencies": { 419 | "Microsoft.NETCore.Platforms": "1.0.1", 420 | "Microsoft.NETCore.Targets": "1.0.1", 421 | "System.Runtime": "4.1.0" 422 | } 423 | }, 424 | "System.Runtime.InteropServices/4.1.0": { 425 | "dependencies": { 426 | "Microsoft.NETCore.Platforms": "1.0.1", 427 | "Microsoft.NETCore.Targets": "1.0.1", 428 | "System.Reflection": "4.1.0", 429 | "System.Reflection.Primitives": "4.0.1", 430 | "System.Runtime": "4.1.0", 431 | "System.Runtime.Handles": "4.0.1" 432 | } 433 | }, 434 | "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { 435 | "dependencies": { 436 | "Microsoft.NETCore.Platforms": "1.0.1", 437 | "System.Reflection": "4.1.0", 438 | "System.Resources.ResourceManager": "4.0.1", 439 | "System.Runtime": "4.1.0", 440 | "System.Runtime.InteropServices": "4.1.0", 441 | "System.Threading": "4.0.11", 442 | "runtime.native.System": "4.0.0" 443 | } 444 | }, 445 | "System.Runtime.Numerics/4.0.1": { 446 | "dependencies": { 447 | "System.Globalization": "4.0.11", 448 | "System.Resources.ResourceManager": "4.0.1", 449 | "System.Runtime": "4.1.0", 450 | "System.Runtime.Extensions": "4.1.0" 451 | } 452 | }, 453 | "System.Security.Cryptography.Algorithms/4.2.0": { 454 | "dependencies": { 455 | "Microsoft.NETCore.Platforms": "1.0.1", 456 | "System.Collections": "4.0.11", 457 | "System.IO": "4.1.0", 458 | "System.Resources.ResourceManager": "4.0.1", 459 | "System.Runtime": "4.1.0", 460 | "System.Runtime.Extensions": "4.1.0", 461 | "System.Runtime.Handles": "4.0.1", 462 | "System.Runtime.InteropServices": "4.1.0", 463 | "System.Runtime.Numerics": "4.0.1", 464 | "System.Security.Cryptography.Encoding": "4.0.0", 465 | "System.Security.Cryptography.Primitives": "4.0.0", 466 | "System.Text.Encoding": "4.0.11", 467 | "runtime.native.System.Security.Cryptography": "4.0.0" 468 | } 469 | }, 470 | "System.Security.Cryptography.Cng/4.2.0": { 471 | "dependencies": { 472 | "Microsoft.NETCore.Platforms": "1.0.1", 473 | "System.IO": "4.1.0", 474 | "System.Resources.ResourceManager": "4.0.1", 475 | "System.Runtime": "4.1.0", 476 | "System.Runtime.Extensions": "4.1.0", 477 | "System.Runtime.Handles": "4.0.1", 478 | "System.Runtime.InteropServices": "4.1.0", 479 | "System.Security.Cryptography.Algorithms": "4.2.0", 480 | "System.Security.Cryptography.Encoding": "4.0.0", 481 | "System.Security.Cryptography.Primitives": "4.0.0", 482 | "System.Text.Encoding": "4.0.11" 483 | } 484 | }, 485 | "System.Security.Cryptography.Csp/4.0.0": { 486 | "dependencies": { 487 | "Microsoft.NETCore.Platforms": "1.0.1", 488 | "System.IO": "4.1.0", 489 | "System.Reflection": "4.1.0", 490 | "System.Resources.ResourceManager": "4.0.1", 491 | "System.Runtime": "4.1.0", 492 | "System.Runtime.Extensions": "4.1.0", 493 | "System.Runtime.Handles": "4.0.1", 494 | "System.Runtime.InteropServices": "4.1.0", 495 | "System.Security.Cryptography.Algorithms": "4.2.0", 496 | "System.Security.Cryptography.Encoding": "4.0.0", 497 | "System.Security.Cryptography.Primitives": "4.0.0", 498 | "System.Text.Encoding": "4.0.11", 499 | "System.Threading": "4.0.11" 500 | } 501 | }, 502 | "System.Security.Cryptography.Encoding/4.0.0": { 503 | "dependencies": { 504 | "Microsoft.NETCore.Platforms": "1.0.1", 505 | "System.Collections": "4.0.11", 506 | "System.Collections.Concurrent": "4.0.12", 507 | "System.Linq": "4.1.0", 508 | "System.Resources.ResourceManager": "4.0.1", 509 | "System.Runtime": "4.1.0", 510 | "System.Runtime.Extensions": "4.1.0", 511 | "System.Runtime.Handles": "4.0.1", 512 | "System.Runtime.InteropServices": "4.1.0", 513 | "System.Security.Cryptography.Primitives": "4.0.0", 514 | "System.Text.Encoding": "4.0.11", 515 | "runtime.native.System.Security.Cryptography": "4.0.0" 516 | } 517 | }, 518 | "System.Security.Cryptography.OpenSsl/4.0.0": { 519 | "dependencies": { 520 | "System.Collections": "4.0.11", 521 | "System.IO": "4.1.0", 522 | "System.Resources.ResourceManager": "4.0.1", 523 | "System.Runtime": "4.1.0", 524 | "System.Runtime.Extensions": "4.1.0", 525 | "System.Runtime.Handles": "4.0.1", 526 | "System.Runtime.InteropServices": "4.1.0", 527 | "System.Runtime.Numerics": "4.0.1", 528 | "System.Security.Cryptography.Algorithms": "4.2.0", 529 | "System.Security.Cryptography.Encoding": "4.0.0", 530 | "System.Security.Cryptography.Primitives": "4.0.0", 531 | "System.Text.Encoding": "4.0.11", 532 | "runtime.native.System.Security.Cryptography": "4.0.0" 533 | } 534 | }, 535 | "System.Security.Cryptography.Primitives/4.0.0": { 536 | "dependencies": { 537 | "System.Diagnostics.Debug": "4.0.11", 538 | "System.Globalization": "4.0.11", 539 | "System.IO": "4.1.0", 540 | "System.Resources.ResourceManager": "4.0.1", 541 | "System.Runtime": "4.1.0", 542 | "System.Threading": "4.0.11", 543 | "System.Threading.Tasks": "4.0.11" 544 | } 545 | }, 546 | "System.Security.Cryptography.X509Certificates/4.1.0": { 547 | "dependencies": { 548 | "Microsoft.NETCore.Platforms": "1.0.1", 549 | "System.Collections": "4.0.11", 550 | "System.Diagnostics.Debug": "4.0.11", 551 | "System.Globalization": "4.0.11", 552 | "System.Globalization.Calendars": "4.0.1", 553 | "System.IO": "4.1.0", 554 | "System.IO.FileSystem": "4.0.1", 555 | "System.IO.FileSystem.Primitives": "4.0.1", 556 | "System.Resources.ResourceManager": "4.0.1", 557 | "System.Runtime": "4.1.0", 558 | "System.Runtime.Extensions": "4.1.0", 559 | "System.Runtime.Handles": "4.0.1", 560 | "System.Runtime.InteropServices": "4.1.0", 561 | "System.Runtime.Numerics": "4.0.1", 562 | "System.Security.Cryptography.Algorithms": "4.2.0", 563 | "System.Security.Cryptography.Cng": "4.2.0", 564 | "System.Security.Cryptography.Csp": "4.0.0", 565 | "System.Security.Cryptography.Encoding": "4.0.0", 566 | "System.Security.Cryptography.OpenSsl": "4.0.0", 567 | "System.Security.Cryptography.Primitives": "4.0.0", 568 | "System.Text.Encoding": "4.0.11", 569 | "System.Threading": "4.0.11", 570 | "runtime.native.System": "4.0.0", 571 | "runtime.native.System.Net.Http": "4.0.1", 572 | "runtime.native.System.Security.Cryptography": "4.0.0" 573 | } 574 | }, 575 | "System.Text.Encoding/4.0.11": { 576 | "dependencies": { 577 | "Microsoft.NETCore.Platforms": "1.0.1", 578 | "Microsoft.NETCore.Targets": "1.0.1", 579 | "System.Runtime": "4.1.0" 580 | } 581 | }, 582 | "System.Text.Encoding.Extensions/4.0.11": { 583 | "dependencies": { 584 | "Microsoft.NETCore.Platforms": "1.0.1", 585 | "Microsoft.NETCore.Targets": "1.0.1", 586 | "System.Runtime": "4.1.0", 587 | "System.Text.Encoding": "4.0.11" 588 | } 589 | }, 590 | "System.Text.RegularExpressions/4.1.0": { 591 | "dependencies": { 592 | "System.Collections": "4.0.11", 593 | "System.Globalization": "4.0.11", 594 | "System.Resources.ResourceManager": "4.0.1", 595 | "System.Runtime": "4.1.0", 596 | "System.Runtime.Extensions": "4.1.0", 597 | "System.Threading": "4.0.11" 598 | } 599 | }, 600 | "System.Threading/4.0.11": { 601 | "dependencies": { 602 | "System.Runtime": "4.1.0", 603 | "System.Threading.Tasks": "4.0.11" 604 | } 605 | }, 606 | "System.Threading.Tasks/4.0.11": { 607 | "dependencies": { 608 | "Microsoft.NETCore.Platforms": "1.0.1", 609 | "Microsoft.NETCore.Targets": "1.0.1", 610 | "System.Runtime": "4.1.0" 611 | } 612 | }, 613 | "System.Threading.Tasks.Extensions/4.0.0": { 614 | "dependencies": { 615 | "System.Collections": "4.0.11", 616 | "System.Runtime": "4.1.0", 617 | "System.Threading.Tasks": "4.0.11" 618 | } 619 | }, 620 | "System.Threading.Timer/4.0.1": { 621 | "dependencies": { 622 | "Microsoft.NETCore.Platforms": "1.0.1", 623 | "Microsoft.NETCore.Targets": "1.0.1", 624 | "System.Runtime": "4.1.0" 625 | } 626 | }, 627 | "System.Xml.ReaderWriter/4.0.11": { 628 | "dependencies": { 629 | "System.Collections": "4.0.11", 630 | "System.Diagnostics.Debug": "4.0.11", 631 | "System.Globalization": "4.0.11", 632 | "System.IO": "4.1.0", 633 | "System.IO.FileSystem": "4.0.1", 634 | "System.IO.FileSystem.Primitives": "4.0.1", 635 | "System.Resources.ResourceManager": "4.0.1", 636 | "System.Runtime": "4.1.0", 637 | "System.Runtime.Extensions": "4.1.0", 638 | "System.Runtime.InteropServices": "4.1.0", 639 | "System.Text.Encoding": "4.0.11", 640 | "System.Text.Encoding.Extensions": "4.0.11", 641 | "System.Text.RegularExpressions": "4.1.0", 642 | "System.Threading.Tasks": "4.0.11", 643 | "System.Threading.Tasks.Extensions": "4.0.0" 644 | } 645 | }, 646 | "System.Xml.XDocument/4.0.11": { 647 | "dependencies": { 648 | "System.Collections": "4.0.11", 649 | "System.Diagnostics.Debug": "4.0.11", 650 | "System.Diagnostics.Tools": "4.0.1", 651 | "System.Globalization": "4.0.11", 652 | "System.IO": "4.1.0", 653 | "System.Reflection": "4.1.0", 654 | "System.Resources.ResourceManager": "4.0.1", 655 | "System.Runtime": "4.1.0", 656 | "System.Runtime.Extensions": "4.1.0", 657 | "System.Text.Encoding": "4.0.11", 658 | "System.Threading": "4.0.11", 659 | "System.Xml.ReaderWriter": "4.0.11" 660 | } 661 | }, 662 | "ToMarkdownTable/0.2.0": { 663 | "dependencies": { 664 | "NETStandard.Library": "1.6.0" 665 | }, 666 | "runtime": { 667 | "lib/netstandard1.2/ToMarkdownTable.dll": { 668 | "assemblyVersion": "0.2.0.0", 669 | "fileVersion": "0.2.0.0" 670 | } 671 | } 672 | } 673 | } 674 | }, 675 | "libraries": { 676 | "TcLibraryVersions/1.0.0": { 677 | "type": "project", 678 | "serviceable": false, 679 | "sha512": "" 680 | }, 681 | "Microsoft.NETCore.Platforms/1.0.1": { 682 | "type": "package", 683 | "serviceable": true, 684 | "sha512": "sha512-2G6OjjJzwBfNOO8myRV/nFrbTw5iA+DEm0N+qUqhrOmaVtn4pC77h38I1jsXGw5VH55+dPfQsqHD0We9sCl9FQ==", 685 | "path": "microsoft.netcore.platforms/1.0.1", 686 | "hashPath": "microsoft.netcore.platforms.1.0.1.nupkg.sha512" 687 | }, 688 | "Microsoft.NETCore.Targets/1.0.1": { 689 | "type": "package", 690 | "serviceable": true, 691 | "sha512": "sha512-rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw==", 692 | "path": "microsoft.netcore.targets/1.0.1", 693 | "hashPath": "microsoft.netcore.targets.1.0.1.nupkg.sha512" 694 | }, 695 | "Microsoft.Win32.Primitives/4.0.1": { 696 | "type": "package", 697 | "serviceable": true, 698 | "sha512": "sha512-fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==", 699 | "path": "microsoft.win32.primitives/4.0.1", 700 | "hashPath": "microsoft.win32.primitives.4.0.1.nupkg.sha512" 701 | }, 702 | "NETStandard.Library/1.6.0": { 703 | "type": "package", 704 | "serviceable": true, 705 | "sha512": "sha512-ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==", 706 | "path": "netstandard.library/1.6.0", 707 | "hashPath": "netstandard.library.1.6.0.nupkg.sha512" 708 | }, 709 | "runtime.native.System/4.0.0": { 710 | "type": "package", 711 | "serviceable": true, 712 | "sha512": "sha512-QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==", 713 | "path": "runtime.native.system/4.0.0", 714 | "hashPath": "runtime.native.system.4.0.0.nupkg.sha512" 715 | }, 716 | "runtime.native.System.IO.Compression/4.1.0": { 717 | "type": "package", 718 | "serviceable": true, 719 | "sha512": "sha512-Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==", 720 | "path": "runtime.native.system.io.compression/4.1.0", 721 | "hashPath": "runtime.native.system.io.compression.4.1.0.nupkg.sha512" 722 | }, 723 | "runtime.native.System.Net.Http/4.0.1": { 724 | "type": "package", 725 | "serviceable": true, 726 | "sha512": "sha512-Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==", 727 | "path": "runtime.native.system.net.http/4.0.1", 728 | "hashPath": "runtime.native.system.net.http.4.0.1.nupkg.sha512" 729 | }, 730 | "runtime.native.System.Security.Cryptography/4.0.0": { 731 | "type": "package", 732 | "serviceable": true, 733 | "sha512": "sha512-2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==", 734 | "path": "runtime.native.system.security.cryptography/4.0.0", 735 | "hashPath": "runtime.native.system.security.cryptography.4.0.0.nupkg.sha512" 736 | }, 737 | "System.AppContext/4.1.0": { 738 | "type": "package", 739 | "serviceable": true, 740 | "sha512": "sha512-3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==", 741 | "path": "system.appcontext/4.1.0", 742 | "hashPath": "system.appcontext.4.1.0.nupkg.sha512" 743 | }, 744 | "System.Buffers/4.0.0": { 745 | "type": "package", 746 | "serviceable": true, 747 | "sha512": "sha512-msXumHfjjURSkvxUjYuq4N2ghHoRi2VpXcKMA7gK6ujQfU3vGpl+B6ld0ATRg+FZFpRyA6PgEPA+VlIkTeNf2w==", 748 | "path": "system.buffers/4.0.0", 749 | "hashPath": "system.buffers.4.0.0.nupkg.sha512" 750 | }, 751 | "System.Collections/4.0.11": { 752 | "type": "package", 753 | "serviceable": true, 754 | "sha512": "sha512-YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==", 755 | "path": "system.collections/4.0.11", 756 | "hashPath": "system.collections.4.0.11.nupkg.sha512" 757 | }, 758 | "System.Collections.Concurrent/4.0.12": { 759 | "type": "package", 760 | "serviceable": true, 761 | "sha512": "sha512-2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==", 762 | "path": "system.collections.concurrent/4.0.12", 763 | "hashPath": "system.collections.concurrent.4.0.12.nupkg.sha512" 764 | }, 765 | "System.Console/4.0.0": { 766 | "type": "package", 767 | "serviceable": true, 768 | "sha512": "sha512-qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==", 769 | "path": "system.console/4.0.0", 770 | "hashPath": "system.console.4.0.0.nupkg.sha512" 771 | }, 772 | "System.Diagnostics.Debug/4.0.11": { 773 | "type": "package", 774 | "serviceable": true, 775 | "sha512": "sha512-w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==", 776 | "path": "system.diagnostics.debug/4.0.11", 777 | "hashPath": "system.diagnostics.debug.4.0.11.nupkg.sha512" 778 | }, 779 | "System.Diagnostics.DiagnosticSource/4.0.0": { 780 | "type": "package", 781 | "serviceable": true, 782 | "sha512": "sha512-YKglnq4BMTJxfcr6nuT08g+yJ0UxdePIHxosiLuljuHIUR6t4KhFsyaHOaOc1Ofqp0PUvJ0EmcgiEz6T7vEx3w==", 783 | "path": "system.diagnostics.diagnosticsource/4.0.0", 784 | "hashPath": "system.diagnostics.diagnosticsource.4.0.0.nupkg.sha512" 785 | }, 786 | "System.Diagnostics.Tools/4.0.1": { 787 | "type": "package", 788 | "serviceable": true, 789 | "sha512": "sha512-xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==", 790 | "path": "system.diagnostics.tools/4.0.1", 791 | "hashPath": "system.diagnostics.tools.4.0.1.nupkg.sha512" 792 | }, 793 | "System.Diagnostics.Tracing/4.1.0": { 794 | "type": "package", 795 | "serviceable": true, 796 | "sha512": "sha512-vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==", 797 | "path": "system.diagnostics.tracing/4.1.0", 798 | "hashPath": "system.diagnostics.tracing.4.1.0.nupkg.sha512" 799 | }, 800 | "System.Globalization/4.0.11": { 801 | "type": "package", 802 | "serviceable": true, 803 | "sha512": "sha512-B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==", 804 | "path": "system.globalization/4.0.11", 805 | "hashPath": "system.globalization.4.0.11.nupkg.sha512" 806 | }, 807 | "System.Globalization.Calendars/4.0.1": { 808 | "type": "package", 809 | "serviceable": true, 810 | "sha512": "sha512-L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==", 811 | "path": "system.globalization.calendars/4.0.1", 812 | "hashPath": "system.globalization.calendars.4.0.1.nupkg.sha512" 813 | }, 814 | "System.Globalization.Extensions/4.0.1": { 815 | "type": "package", 816 | "serviceable": true, 817 | "sha512": "sha512-KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==", 818 | "path": "system.globalization.extensions/4.0.1", 819 | "hashPath": "system.globalization.extensions.4.0.1.nupkg.sha512" 820 | }, 821 | "System.IO/4.1.0": { 822 | "type": "package", 823 | "serviceable": true, 824 | "sha512": "sha512-3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==", 825 | "path": "system.io/4.1.0", 826 | "hashPath": "system.io.4.1.0.nupkg.sha512" 827 | }, 828 | "System.IO.Compression/4.1.0": { 829 | "type": "package", 830 | "serviceable": true, 831 | "sha512": "sha512-TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==", 832 | "path": "system.io.compression/4.1.0", 833 | "hashPath": "system.io.compression.4.1.0.nupkg.sha512" 834 | }, 835 | "System.IO.Compression.ZipFile/4.0.1": { 836 | "type": "package", 837 | "serviceable": true, 838 | "sha512": "sha512-hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==", 839 | "path": "system.io.compression.zipfile/4.0.1", 840 | "hashPath": "system.io.compression.zipfile.4.0.1.nupkg.sha512" 841 | }, 842 | "System.IO.FileSystem/4.0.1": { 843 | "type": "package", 844 | "serviceable": true, 845 | "sha512": "sha512-IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==", 846 | "path": "system.io.filesystem/4.0.1", 847 | "hashPath": "system.io.filesystem.4.0.1.nupkg.sha512" 848 | }, 849 | "System.IO.FileSystem.Primitives/4.0.1": { 850 | "type": "package", 851 | "serviceable": true, 852 | "sha512": "sha512-kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==", 853 | "path": "system.io.filesystem.primitives/4.0.1", 854 | "hashPath": "system.io.filesystem.primitives.4.0.1.nupkg.sha512" 855 | }, 856 | "System.Linq/4.1.0": { 857 | "type": "package", 858 | "serviceable": true, 859 | "sha512": "sha512-bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==", 860 | "path": "system.linq/4.1.0", 861 | "hashPath": "system.linq.4.1.0.nupkg.sha512" 862 | }, 863 | "System.Linq.Expressions/4.1.0": { 864 | "type": "package", 865 | "serviceable": true, 866 | "sha512": "sha512-I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==", 867 | "path": "system.linq.expressions/4.1.0", 868 | "hashPath": "system.linq.expressions.4.1.0.nupkg.sha512" 869 | }, 870 | "System.Net.Http/4.1.0": { 871 | "type": "package", 872 | "serviceable": true, 873 | "sha512": "sha512-ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==", 874 | "path": "system.net.http/4.1.0", 875 | "hashPath": "system.net.http.4.1.0.nupkg.sha512" 876 | }, 877 | "System.Net.Primitives/4.0.11": { 878 | "type": "package", 879 | "serviceable": true, 880 | "sha512": "sha512-hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==", 881 | "path": "system.net.primitives/4.0.11", 882 | "hashPath": "system.net.primitives.4.0.11.nupkg.sha512" 883 | }, 884 | "System.Net.Sockets/4.1.0": { 885 | "type": "package", 886 | "serviceable": true, 887 | "sha512": "sha512-xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==", 888 | "path": "system.net.sockets/4.1.0", 889 | "hashPath": "system.net.sockets.4.1.0.nupkg.sha512" 890 | }, 891 | "System.ObjectModel/4.0.12": { 892 | "type": "package", 893 | "serviceable": true, 894 | "sha512": "sha512-tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==", 895 | "path": "system.objectmodel/4.0.12", 896 | "hashPath": "system.objectmodel.4.0.12.nupkg.sha512" 897 | }, 898 | "System.Reflection/4.1.0": { 899 | "type": "package", 900 | "serviceable": true, 901 | "sha512": "sha512-JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==", 902 | "path": "system.reflection/4.1.0", 903 | "hashPath": "system.reflection.4.1.0.nupkg.sha512" 904 | }, 905 | "System.Reflection.Emit/4.0.1": { 906 | "type": "package", 907 | "serviceable": true, 908 | "sha512": "sha512-P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==", 909 | "path": "system.reflection.emit/4.0.1", 910 | "hashPath": "system.reflection.emit.4.0.1.nupkg.sha512" 911 | }, 912 | "System.Reflection.Emit.ILGeneration/4.0.1": { 913 | "type": "package", 914 | "serviceable": true, 915 | "sha512": "sha512-Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==", 916 | "path": "system.reflection.emit.ilgeneration/4.0.1", 917 | "hashPath": "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512" 918 | }, 919 | "System.Reflection.Emit.Lightweight/4.0.1": { 920 | "type": "package", 921 | "serviceable": true, 922 | "sha512": "sha512-sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==", 923 | "path": "system.reflection.emit.lightweight/4.0.1", 924 | "hashPath": "system.reflection.emit.lightweight.4.0.1.nupkg.sha512" 925 | }, 926 | "System.Reflection.Extensions/4.0.1": { 927 | "type": "package", 928 | "serviceable": true, 929 | "sha512": "sha512-GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==", 930 | "path": "system.reflection.extensions/4.0.1", 931 | "hashPath": "system.reflection.extensions.4.0.1.nupkg.sha512" 932 | }, 933 | "System.Reflection.Primitives/4.0.1": { 934 | "type": "package", 935 | "serviceable": true, 936 | "sha512": "sha512-4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==", 937 | "path": "system.reflection.primitives/4.0.1", 938 | "hashPath": "system.reflection.primitives.4.0.1.nupkg.sha512" 939 | }, 940 | "System.Reflection.TypeExtensions/4.1.0": { 941 | "type": "package", 942 | "serviceable": true, 943 | "sha512": "sha512-tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==", 944 | "path": "system.reflection.typeextensions/4.1.0", 945 | "hashPath": "system.reflection.typeextensions.4.1.0.nupkg.sha512" 946 | }, 947 | "System.Resources.ResourceManager/4.0.1": { 948 | "type": "package", 949 | "serviceable": true, 950 | "sha512": "sha512-TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==", 951 | "path": "system.resources.resourcemanager/4.0.1", 952 | "hashPath": "system.resources.resourcemanager.4.0.1.nupkg.sha512" 953 | }, 954 | "System.Runtime/4.1.0": { 955 | "type": "package", 956 | "serviceable": true, 957 | "sha512": "sha512-v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==", 958 | "path": "system.runtime/4.1.0", 959 | "hashPath": "system.runtime.4.1.0.nupkg.sha512" 960 | }, 961 | "System.Runtime.Extensions/4.1.0": { 962 | "type": "package", 963 | "serviceable": true, 964 | "sha512": "sha512-CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==", 965 | "path": "system.runtime.extensions/4.1.0", 966 | "hashPath": "system.runtime.extensions.4.1.0.nupkg.sha512" 967 | }, 968 | "System.Runtime.Handles/4.0.1": { 969 | "type": "package", 970 | "serviceable": true, 971 | "sha512": "sha512-nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==", 972 | "path": "system.runtime.handles/4.0.1", 973 | "hashPath": "system.runtime.handles.4.0.1.nupkg.sha512" 974 | }, 975 | "System.Runtime.InteropServices/4.1.0": { 976 | "type": "package", 977 | "serviceable": true, 978 | "sha512": "sha512-16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==", 979 | "path": "system.runtime.interopservices/4.1.0", 980 | "hashPath": "system.runtime.interopservices.4.1.0.nupkg.sha512" 981 | }, 982 | "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { 983 | "type": "package", 984 | "serviceable": true, 985 | "sha512": "sha512-hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==", 986 | "path": "system.runtime.interopservices.runtimeinformation/4.0.0", 987 | "hashPath": "system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512" 988 | }, 989 | "System.Runtime.Numerics/4.0.1": { 990 | "type": "package", 991 | "serviceable": true, 992 | "sha512": "sha512-+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==", 993 | "path": "system.runtime.numerics/4.0.1", 994 | "hashPath": "system.runtime.numerics.4.0.1.nupkg.sha512" 995 | }, 996 | "System.Security.Cryptography.Algorithms/4.2.0": { 997 | "type": "package", 998 | "serviceable": true, 999 | "sha512": "sha512-8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==", 1000 | "path": "system.security.cryptography.algorithms/4.2.0", 1001 | "hashPath": "system.security.cryptography.algorithms.4.2.0.nupkg.sha512" 1002 | }, 1003 | "System.Security.Cryptography.Cng/4.2.0": { 1004 | "type": "package", 1005 | "serviceable": true, 1006 | "sha512": "sha512-cUJ2h+ZvONDe28Szw3st5dOHdjndhJzQ2WObDEXAWRPEQBtVItVoxbXM/OEsTthl3cNn2dk2k0I3y45igCQcLw==", 1007 | "path": "system.security.cryptography.cng/4.2.0", 1008 | "hashPath": "system.security.cryptography.cng.4.2.0.nupkg.sha512" 1009 | }, 1010 | "System.Security.Cryptography.Csp/4.0.0": { 1011 | "type": "package", 1012 | "serviceable": true, 1013 | "sha512": "sha512-/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==", 1014 | "path": "system.security.cryptography.csp/4.0.0", 1015 | "hashPath": "system.security.cryptography.csp.4.0.0.nupkg.sha512" 1016 | }, 1017 | "System.Security.Cryptography.Encoding/4.0.0": { 1018 | "type": "package", 1019 | "serviceable": true, 1020 | "sha512": "sha512-FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==", 1021 | "path": "system.security.cryptography.encoding/4.0.0", 1022 | "hashPath": "system.security.cryptography.encoding.4.0.0.nupkg.sha512" 1023 | }, 1024 | "System.Security.Cryptography.OpenSsl/4.0.0": { 1025 | "type": "package", 1026 | "serviceable": true, 1027 | "sha512": "sha512-HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==", 1028 | "path": "system.security.cryptography.openssl/4.0.0", 1029 | "hashPath": "system.security.cryptography.openssl.4.0.0.nupkg.sha512" 1030 | }, 1031 | "System.Security.Cryptography.Primitives/4.0.0": { 1032 | "type": "package", 1033 | "serviceable": true, 1034 | "sha512": "sha512-Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==", 1035 | "path": "system.security.cryptography.primitives/4.0.0", 1036 | "hashPath": "system.security.cryptography.primitives.4.0.0.nupkg.sha512" 1037 | }, 1038 | "System.Security.Cryptography.X509Certificates/4.1.0": { 1039 | "type": "package", 1040 | "serviceable": true, 1041 | "sha512": "sha512-4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==", 1042 | "path": "system.security.cryptography.x509certificates/4.1.0", 1043 | "hashPath": "system.security.cryptography.x509certificates.4.1.0.nupkg.sha512" 1044 | }, 1045 | "System.Text.Encoding/4.0.11": { 1046 | "type": "package", 1047 | "serviceable": true, 1048 | "sha512": "sha512-U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==", 1049 | "path": "system.text.encoding/4.0.11", 1050 | "hashPath": "system.text.encoding.4.0.11.nupkg.sha512" 1051 | }, 1052 | "System.Text.Encoding.Extensions/4.0.11": { 1053 | "type": "package", 1054 | "serviceable": true, 1055 | "sha512": "sha512-jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==", 1056 | "path": "system.text.encoding.extensions/4.0.11", 1057 | "hashPath": "system.text.encoding.extensions.4.0.11.nupkg.sha512" 1058 | }, 1059 | "System.Text.RegularExpressions/4.1.0": { 1060 | "type": "package", 1061 | "serviceable": true, 1062 | "sha512": "sha512-i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==", 1063 | "path": "system.text.regularexpressions/4.1.0", 1064 | "hashPath": "system.text.regularexpressions.4.1.0.nupkg.sha512" 1065 | }, 1066 | "System.Threading/4.0.11": { 1067 | "type": "package", 1068 | "serviceable": true, 1069 | "sha512": "sha512-N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==", 1070 | "path": "system.threading/4.0.11", 1071 | "hashPath": "system.threading.4.0.11.nupkg.sha512" 1072 | }, 1073 | "System.Threading.Tasks/4.0.11": { 1074 | "type": "package", 1075 | "serviceable": true, 1076 | "sha512": "sha512-k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==", 1077 | "path": "system.threading.tasks/4.0.11", 1078 | "hashPath": "system.threading.tasks.4.0.11.nupkg.sha512" 1079 | }, 1080 | "System.Threading.Tasks.Extensions/4.0.0": { 1081 | "type": "package", 1082 | "serviceable": true, 1083 | "sha512": "sha512-pH4FZDsZQ/WmgJtN4LWYmRdJAEeVkyriSwrv2Teoe5FOU0Yxlb6II6GL8dBPOfRmutHGATduj3ooMt7dJ2+i+w==", 1084 | "path": "system.threading.tasks.extensions/4.0.0", 1085 | "hashPath": "system.threading.tasks.extensions.4.0.0.nupkg.sha512" 1086 | }, 1087 | "System.Threading.Timer/4.0.1": { 1088 | "type": "package", 1089 | "serviceable": true, 1090 | "sha512": "sha512-saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==", 1091 | "path": "system.threading.timer/4.0.1", 1092 | "hashPath": "system.threading.timer.4.0.1.nupkg.sha512" 1093 | }, 1094 | "System.Xml.ReaderWriter/4.0.11": { 1095 | "type": "package", 1096 | "serviceable": true, 1097 | "sha512": "sha512-ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==", 1098 | "path": "system.xml.readerwriter/4.0.11", 1099 | "hashPath": "system.xml.readerwriter.4.0.11.nupkg.sha512" 1100 | }, 1101 | "System.Xml.XDocument/4.0.11": { 1102 | "type": "package", 1103 | "serviceable": true, 1104 | "sha512": "sha512-Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==", 1105 | "path": "system.xml.xdocument/4.0.11", 1106 | "hashPath": "system.xml.xdocument.4.0.11.nupkg.sha512" 1107 | }, 1108 | "ToMarkdownTable/0.2.0": { 1109 | "type": "package", 1110 | "serviceable": true, 1111 | "sha512": "sha512-dgH7r+I3GjuksVn4uOGbRgQnCheUfNp4f+7u8A+O0ShkWrjYqbPDU3m69CC2u5sDiGs3ckw04BQ+sxssIK908A==", 1112 | "path": "tomarkdowntable/0.2.0", 1113 | "hashPath": "tomarkdowntable.0.2.0.nupkg.sha512" 1114 | } 1115 | } 1116 | } -------------------------------------------------------------------------------- /TcLibraryVersions/TcLibraryVersions/bin/Debug/net5.0/TcLibraryVersions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RumstiBumsti/TcLibraryVersions/c586eb328322b5ca81aa93c1d52f73e1f1d901a8/TcLibraryVersions/TcLibraryVersions/bin/Debug/net5.0/TcLibraryVersions.dll -------------------------------------------------------------------------------- /TcLibraryVersions/TcLibraryVersions/bin/Debug/net5.0/TcLibraryVersions.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RumstiBumsti/TcLibraryVersions/c586eb328322b5ca81aa93c1d52f73e1f1d901a8/TcLibraryVersions/TcLibraryVersions/bin/Debug/net5.0/TcLibraryVersions.exe -------------------------------------------------------------------------------- /TcLibraryVersions/TcLibraryVersions/bin/Debug/net5.0/TcLibraryVersions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RumstiBumsti/TcLibraryVersions/c586eb328322b5ca81aa93c1d52f73e1f1d901a8/TcLibraryVersions/TcLibraryVersions/bin/Debug/net5.0/TcLibraryVersions.pdb -------------------------------------------------------------------------------- /TcLibraryVersions/TcLibraryVersions/bin/Debug/net5.0/TcLibraryVersions.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\U7050632\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\U7050632\\.nuget\\packages", 6 | "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /TcLibraryVersions/TcLibraryVersions/bin/Debug/net5.0/TcLibraryVersions.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net5.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "5.0.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /TcLibraryVersions/TcLibraryVersions/bin/Debug/net5.0/ToMarkdownTable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RumstiBumsti/TcLibraryVersions/c586eb328322b5ca81aa93c1d52f73e1f1d901a8/TcLibraryVersions/TcLibraryVersions/bin/Debug/net5.0/ToMarkdownTable.dll -------------------------------------------------------------------------------- /TcLibraryVersions/TcLibraryVersions/bin/Debug/net5.0/ref/TcLibraryVersions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RumstiBumsti/TcLibraryVersions/c586eb328322b5ca81aa93c1d52f73e1f1d901a8/TcLibraryVersions/TcLibraryVersions/bin/Debug/net5.0/ref/TcLibraryVersions.dll -------------------------------------------------------------------------------- /TcLibraryVersions/TcLibraryVersions/obj/Debug/net5.0/TcLibraryVersions.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | f70de681d8cb66512789e728cb8ad417be5e8bc6 2 | -------------------------------------------------------------------------------- /TcLibraryVersions/TcLibraryVersions/obj/Debug/net5.0/TcLibraryVersions.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RumstiBumsti/TcLibraryVersions/c586eb328322b5ca81aa93c1d52f73e1f1d901a8/TcLibraryVersions/TcLibraryVersions/obj/Debug/net5.0/TcLibraryVersions.assets.cache -------------------------------------------------------------------------------- /TcLibraryVersions/TcLibraryVersions/obj/Debug/net5.0/TcLibraryVersions.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RumstiBumsti/TcLibraryVersions/c586eb328322b5ca81aa93c1d52f73e1f1d901a8/TcLibraryVersions/TcLibraryVersions/obj/Debug/net5.0/TcLibraryVersions.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /TcLibraryVersions/TcLibraryVersions/obj/Debug/net5.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RumstiBumsti/TcLibraryVersions/c586eb328322b5ca81aa93c1d52f73e1f1d901a8/TcLibraryVersions/TcLibraryVersions/obj/Debug/net5.0/apphost.exe -------------------------------------------------------------------------------- /TcLibraryVersions/TcLibraryVersions/obj/Debug/net5.0/ref/TcLibraryVersions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RumstiBumsti/TcLibraryVersions/c586eb328322b5ca81aa93c1d52f73e1f1d901a8/TcLibraryVersions/TcLibraryVersions/obj/Debug/net5.0/ref/TcLibraryVersions.dll -------------------------------------------------------------------------------- /TcLibraryVersions/bin/Debug/net5.0/TcLibraryVersions.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v5.0", 4 | "signature": "" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v5.0": { 9 | "TcLibraryVersions/1.0.0": { 10 | "dependencies": { 11 | "CommandLineParser": "2.8.0", 12 | "LibGit2Sharp": "0.26.2", 13 | "Octokit": "0.50.0", 14 | "ToMarkdownTable": "0.2.0" 15 | }, 16 | "runtime": { 17 | "TcLibraryVersions.dll": {} 18 | } 19 | }, 20 | "CommandLineParser/2.8.0": { 21 | "runtime": { 22 | "lib/netstandard2.0/CommandLine.dll": { 23 | "assemblyVersion": "2.8.0.0", 24 | "fileVersion": "2.8.0.0" 25 | } 26 | } 27 | }, 28 | "LibGit2Sharp/0.26.2": { 29 | "dependencies": { 30 | "LibGit2Sharp.NativeBinaries": "2.0.306" 31 | }, 32 | "runtime": { 33 | "lib/netstandard2.0/LibGit2Sharp.dll": { 34 | "assemblyVersion": "0.26.0.0", 35 | "fileVersion": "0.26.2.97" 36 | } 37 | } 38 | }, 39 | "LibGit2Sharp.NativeBinaries/2.0.306": { 40 | "runtimeTargets": { 41 | "runtimes/alpine-x64/native/libgit2-106a5f2.so": { 42 | "rid": "alpine-x64", 43 | "assetType": "native", 44 | "fileVersion": "0.0.0.0" 45 | }, 46 | "runtimes/alpine.3.9-x64/native/libgit2-106a5f2.so": { 47 | "rid": "alpine.3.9-x64", 48 | "assetType": "native", 49 | "fileVersion": "0.0.0.0" 50 | }, 51 | "runtimes/debian-arm64/native/libgit2-106a5f2.so": { 52 | "rid": "debian-arm64", 53 | "assetType": "native", 54 | "fileVersion": "0.0.0.0" 55 | }, 56 | "runtimes/debian.9-x64/native/libgit2-106a5f2.so": { 57 | "rid": "debian.9-x64", 58 | "assetType": "native", 59 | "fileVersion": "0.0.0.0" 60 | }, 61 | "runtimes/fedora-x64/native/libgit2-106a5f2.so": { 62 | "rid": "fedora-x64", 63 | "assetType": "native", 64 | "fileVersion": "0.0.0.0" 65 | }, 66 | "runtimes/linux-x64/native/libgit2-106a5f2.so": { 67 | "rid": "linux-x64", 68 | "assetType": "native", 69 | "fileVersion": "0.0.0.0" 70 | }, 71 | "runtimes/osx/native/libgit2-106a5f2.dylib": { 72 | "rid": "osx", 73 | "assetType": "native", 74 | "fileVersion": "0.0.0.0" 75 | }, 76 | "runtimes/rhel-x64/native/libgit2-106a5f2.so": { 77 | "rid": "rhel-x64", 78 | "assetType": "native", 79 | "fileVersion": "0.0.0.0" 80 | }, 81 | "runtimes/ubuntu.16.04-arm64/native/libgit2-106a5f2.so": { 82 | "rid": "ubuntu.16.04-arm64", 83 | "assetType": "native", 84 | "fileVersion": "0.0.0.0" 85 | }, 86 | "runtimes/ubuntu.18.04-x64/native/libgit2-106a5f2.so": { 87 | "rid": "ubuntu.18.04-x64", 88 | "assetType": "native", 89 | "fileVersion": "0.0.0.0" 90 | }, 91 | "runtimes/win-x64/native/git2-106a5f2.dll": { 92 | "rid": "win-x64", 93 | "assetType": "native", 94 | "fileVersion": "0.28.4.0" 95 | }, 96 | "runtimes/win-x64/native/git2-106a5f2.pdb": { 97 | "rid": "win-x64", 98 | "assetType": "native", 99 | "fileVersion": "0.0.0.0" 100 | }, 101 | "runtimes/win-x86/native/git2-106a5f2.dll": { 102 | "rid": "win-x86", 103 | "assetType": "native", 104 | "fileVersion": "0.28.4.0" 105 | }, 106 | "runtimes/win-x86/native/git2-106a5f2.pdb": { 107 | "rid": "win-x86", 108 | "assetType": "native", 109 | "fileVersion": "0.0.0.0" 110 | } 111 | } 112 | }, 113 | "Microsoft.NETCore.Platforms/1.0.1": {}, 114 | "Microsoft.NETCore.Targets/1.0.1": {}, 115 | "Microsoft.Win32.Primitives/4.0.1": { 116 | "dependencies": { 117 | "Microsoft.NETCore.Platforms": "1.0.1", 118 | "Microsoft.NETCore.Targets": "1.0.1", 119 | "System.Runtime": "4.1.0" 120 | } 121 | }, 122 | "NETStandard.Library/1.6.0": { 123 | "dependencies": { 124 | "Microsoft.NETCore.Platforms": "1.0.1", 125 | "Microsoft.Win32.Primitives": "4.0.1", 126 | "System.AppContext": "4.1.0", 127 | "System.Collections": "4.0.11", 128 | "System.Collections.Concurrent": "4.0.12", 129 | "System.Console": "4.0.0", 130 | "System.Diagnostics.Debug": "4.0.11", 131 | "System.Diagnostics.Tools": "4.0.1", 132 | "System.Diagnostics.Tracing": "4.1.0", 133 | "System.Globalization": "4.0.11", 134 | "System.Globalization.Calendars": "4.0.1", 135 | "System.IO": "4.1.0", 136 | "System.IO.Compression": "4.1.0", 137 | "System.IO.Compression.ZipFile": "4.0.1", 138 | "System.IO.FileSystem": "4.0.1", 139 | "System.IO.FileSystem.Primitives": "4.0.1", 140 | "System.Linq": "4.1.0", 141 | "System.Linq.Expressions": "4.1.0", 142 | "System.Net.Http": "4.1.0", 143 | "System.Net.Primitives": "4.0.11", 144 | "System.Net.Sockets": "4.1.0", 145 | "System.ObjectModel": "4.0.12", 146 | "System.Reflection": "4.1.0", 147 | "System.Reflection.Extensions": "4.0.1", 148 | "System.Reflection.Primitives": "4.0.1", 149 | "System.Resources.ResourceManager": "4.0.1", 150 | "System.Runtime": "4.1.0", 151 | "System.Runtime.Extensions": "4.1.0", 152 | "System.Runtime.Handles": "4.0.1", 153 | "System.Runtime.InteropServices": "4.1.0", 154 | "System.Runtime.InteropServices.RuntimeInformation": "4.0.0", 155 | "System.Runtime.Numerics": "4.0.1", 156 | "System.Security.Cryptography.Algorithms": "4.2.0", 157 | "System.Security.Cryptography.Encoding": "4.0.0", 158 | "System.Security.Cryptography.Primitives": "4.0.0", 159 | "System.Security.Cryptography.X509Certificates": "4.1.0", 160 | "System.Text.Encoding": "4.0.11", 161 | "System.Text.Encoding.Extensions": "4.0.11", 162 | "System.Text.RegularExpressions": "4.1.0", 163 | "System.Threading": "4.0.11", 164 | "System.Threading.Tasks": "4.0.11", 165 | "System.Threading.Timer": "4.0.1", 166 | "System.Xml.ReaderWriter": "4.0.11", 167 | "System.Xml.XDocument": "4.0.11" 168 | } 169 | }, 170 | "Octokit/0.50.0": { 171 | "runtime": { 172 | "lib/netstandard2.0/Octokit.dll": { 173 | "assemblyVersion": "0.50.0.0", 174 | "fileVersion": "0.50.0.0" 175 | } 176 | } 177 | }, 178 | "runtime.native.System/4.0.0": { 179 | "dependencies": { 180 | "Microsoft.NETCore.Platforms": "1.0.1", 181 | "Microsoft.NETCore.Targets": "1.0.1" 182 | } 183 | }, 184 | "runtime.native.System.IO.Compression/4.1.0": { 185 | "dependencies": { 186 | "Microsoft.NETCore.Platforms": "1.0.1", 187 | "Microsoft.NETCore.Targets": "1.0.1" 188 | } 189 | }, 190 | "runtime.native.System.Net.Http/4.0.1": { 191 | "dependencies": { 192 | "Microsoft.NETCore.Platforms": "1.0.1", 193 | "Microsoft.NETCore.Targets": "1.0.1" 194 | } 195 | }, 196 | "runtime.native.System.Security.Cryptography/4.0.0": { 197 | "dependencies": { 198 | "Microsoft.NETCore.Platforms": "1.0.1", 199 | "Microsoft.NETCore.Targets": "1.0.1" 200 | } 201 | }, 202 | "System.AppContext/4.1.0": { 203 | "dependencies": { 204 | "System.Runtime": "4.1.0" 205 | } 206 | }, 207 | "System.Buffers/4.0.0": { 208 | "dependencies": { 209 | "System.Diagnostics.Debug": "4.0.11", 210 | "System.Diagnostics.Tracing": "4.1.0", 211 | "System.Resources.ResourceManager": "4.0.1", 212 | "System.Runtime": "4.1.0", 213 | "System.Threading": "4.0.11" 214 | } 215 | }, 216 | "System.Collections/4.0.11": { 217 | "dependencies": { 218 | "Microsoft.NETCore.Platforms": "1.0.1", 219 | "Microsoft.NETCore.Targets": "1.0.1", 220 | "System.Runtime": "4.1.0" 221 | } 222 | }, 223 | "System.Collections.Concurrent/4.0.12": { 224 | "dependencies": { 225 | "System.Collections": "4.0.11", 226 | "System.Diagnostics.Debug": "4.0.11", 227 | "System.Diagnostics.Tracing": "4.1.0", 228 | "System.Globalization": "4.0.11", 229 | "System.Reflection": "4.1.0", 230 | "System.Resources.ResourceManager": "4.0.1", 231 | "System.Runtime": "4.1.0", 232 | "System.Runtime.Extensions": "4.1.0", 233 | "System.Threading": "4.0.11", 234 | "System.Threading.Tasks": "4.0.11" 235 | } 236 | }, 237 | "System.Console/4.0.0": { 238 | "dependencies": { 239 | "Microsoft.NETCore.Platforms": "1.0.1", 240 | "Microsoft.NETCore.Targets": "1.0.1", 241 | "System.IO": "4.1.0", 242 | "System.Runtime": "4.1.0", 243 | "System.Text.Encoding": "4.0.11" 244 | } 245 | }, 246 | "System.Diagnostics.Debug/4.0.11": { 247 | "dependencies": { 248 | "Microsoft.NETCore.Platforms": "1.0.1", 249 | "Microsoft.NETCore.Targets": "1.0.1", 250 | "System.Runtime": "4.1.0" 251 | } 252 | }, 253 | "System.Diagnostics.DiagnosticSource/4.0.0": { 254 | "dependencies": { 255 | "System.Collections": "4.0.11", 256 | "System.Diagnostics.Tracing": "4.1.0", 257 | "System.Reflection": "4.1.0", 258 | "System.Runtime": "4.1.0", 259 | "System.Threading": "4.0.11" 260 | } 261 | }, 262 | "System.Diagnostics.Tools/4.0.1": { 263 | "dependencies": { 264 | "Microsoft.NETCore.Platforms": "1.0.1", 265 | "Microsoft.NETCore.Targets": "1.0.1", 266 | "System.Runtime": "4.1.0" 267 | } 268 | }, 269 | "System.Diagnostics.Tracing/4.1.0": { 270 | "dependencies": { 271 | "Microsoft.NETCore.Platforms": "1.0.1", 272 | "Microsoft.NETCore.Targets": "1.0.1", 273 | "System.Runtime": "4.1.0" 274 | } 275 | }, 276 | "System.Globalization/4.0.11": { 277 | "dependencies": { 278 | "Microsoft.NETCore.Platforms": "1.0.1", 279 | "Microsoft.NETCore.Targets": "1.0.1", 280 | "System.Runtime": "4.1.0" 281 | } 282 | }, 283 | "System.Globalization.Calendars/4.0.1": { 284 | "dependencies": { 285 | "Microsoft.NETCore.Platforms": "1.0.1", 286 | "Microsoft.NETCore.Targets": "1.0.1", 287 | "System.Globalization": "4.0.11", 288 | "System.Runtime": "4.1.0" 289 | } 290 | }, 291 | "System.Globalization.Extensions/4.0.1": { 292 | "dependencies": { 293 | "Microsoft.NETCore.Platforms": "1.0.1", 294 | "System.Globalization": "4.0.11", 295 | "System.Resources.ResourceManager": "4.0.1", 296 | "System.Runtime": "4.1.0", 297 | "System.Runtime.Extensions": "4.1.0", 298 | "System.Runtime.InteropServices": "4.1.0" 299 | } 300 | }, 301 | "System.IO/4.1.0": { 302 | "dependencies": { 303 | "Microsoft.NETCore.Platforms": "1.0.1", 304 | "Microsoft.NETCore.Targets": "1.0.1", 305 | "System.Runtime": "4.1.0", 306 | "System.Text.Encoding": "4.0.11", 307 | "System.Threading.Tasks": "4.0.11" 308 | } 309 | }, 310 | "System.IO.Compression/4.1.0": { 311 | "dependencies": { 312 | "Microsoft.NETCore.Platforms": "1.0.1", 313 | "System.Collections": "4.0.11", 314 | "System.Diagnostics.Debug": "4.0.11", 315 | "System.IO": "4.1.0", 316 | "System.Resources.ResourceManager": "4.0.1", 317 | "System.Runtime": "4.1.0", 318 | "System.Runtime.Extensions": "4.1.0", 319 | "System.Runtime.Handles": "4.0.1", 320 | "System.Runtime.InteropServices": "4.1.0", 321 | "System.Text.Encoding": "4.0.11", 322 | "System.Threading": "4.0.11", 323 | "System.Threading.Tasks": "4.0.11", 324 | "runtime.native.System": "4.0.0", 325 | "runtime.native.System.IO.Compression": "4.1.0" 326 | } 327 | }, 328 | "System.IO.Compression.ZipFile/4.0.1": { 329 | "dependencies": { 330 | "System.Buffers": "4.0.0", 331 | "System.IO": "4.1.0", 332 | "System.IO.Compression": "4.1.0", 333 | "System.IO.FileSystem": "4.0.1", 334 | "System.IO.FileSystem.Primitives": "4.0.1", 335 | "System.Resources.ResourceManager": "4.0.1", 336 | "System.Runtime": "4.1.0", 337 | "System.Runtime.Extensions": "4.1.0", 338 | "System.Text.Encoding": "4.0.11" 339 | } 340 | }, 341 | "System.IO.FileSystem/4.0.1": { 342 | "dependencies": { 343 | "Microsoft.NETCore.Platforms": "1.0.1", 344 | "Microsoft.NETCore.Targets": "1.0.1", 345 | "System.IO": "4.1.0", 346 | "System.IO.FileSystem.Primitives": "4.0.1", 347 | "System.Runtime": "4.1.0", 348 | "System.Runtime.Handles": "4.0.1", 349 | "System.Text.Encoding": "4.0.11", 350 | "System.Threading.Tasks": "4.0.11" 351 | } 352 | }, 353 | "System.IO.FileSystem.Primitives/4.0.1": { 354 | "dependencies": { 355 | "System.Runtime": "4.1.0" 356 | } 357 | }, 358 | "System.Linq/4.1.0": { 359 | "dependencies": { 360 | "System.Collections": "4.0.11", 361 | "System.Diagnostics.Debug": "4.0.11", 362 | "System.Resources.ResourceManager": "4.0.1", 363 | "System.Runtime": "4.1.0", 364 | "System.Runtime.Extensions": "4.1.0" 365 | } 366 | }, 367 | "System.Linq.Expressions/4.1.0": { 368 | "dependencies": { 369 | "System.Collections": "4.0.11", 370 | "System.Diagnostics.Debug": "4.0.11", 371 | "System.Globalization": "4.0.11", 372 | "System.IO": "4.1.0", 373 | "System.Linq": "4.1.0", 374 | "System.ObjectModel": "4.0.12", 375 | "System.Reflection": "4.1.0", 376 | "System.Reflection.Emit": "4.0.1", 377 | "System.Reflection.Emit.ILGeneration": "4.0.1", 378 | "System.Reflection.Emit.Lightweight": "4.0.1", 379 | "System.Reflection.Extensions": "4.0.1", 380 | "System.Reflection.Primitives": "4.0.1", 381 | "System.Reflection.TypeExtensions": "4.1.0", 382 | "System.Resources.ResourceManager": "4.0.1", 383 | "System.Runtime": "4.1.0", 384 | "System.Runtime.Extensions": "4.1.0", 385 | "System.Threading": "4.0.11" 386 | } 387 | }, 388 | "System.Net.Http/4.1.0": { 389 | "dependencies": { 390 | "Microsoft.NETCore.Platforms": "1.0.1", 391 | "System.Collections": "4.0.11", 392 | "System.Diagnostics.Debug": "4.0.11", 393 | "System.Diagnostics.DiagnosticSource": "4.0.0", 394 | "System.Diagnostics.Tracing": "4.1.0", 395 | "System.Globalization": "4.0.11", 396 | "System.Globalization.Extensions": "4.0.1", 397 | "System.IO": "4.1.0", 398 | "System.IO.FileSystem": "4.0.1", 399 | "System.Net.Primitives": "4.0.11", 400 | "System.Resources.ResourceManager": "4.0.1", 401 | "System.Runtime": "4.1.0", 402 | "System.Runtime.Extensions": "4.1.0", 403 | "System.Runtime.Handles": "4.0.1", 404 | "System.Runtime.InteropServices": "4.1.0", 405 | "System.Security.Cryptography.Algorithms": "4.2.0", 406 | "System.Security.Cryptography.Encoding": "4.0.0", 407 | "System.Security.Cryptography.OpenSsl": "4.0.0", 408 | "System.Security.Cryptography.Primitives": "4.0.0", 409 | "System.Security.Cryptography.X509Certificates": "4.1.0", 410 | "System.Text.Encoding": "4.0.11", 411 | "System.Threading": "4.0.11", 412 | "System.Threading.Tasks": "4.0.11", 413 | "runtime.native.System": "4.0.0", 414 | "runtime.native.System.Net.Http": "4.0.1", 415 | "runtime.native.System.Security.Cryptography": "4.0.0" 416 | } 417 | }, 418 | "System.Net.Primitives/4.0.11": { 419 | "dependencies": { 420 | "Microsoft.NETCore.Platforms": "1.0.1", 421 | "Microsoft.NETCore.Targets": "1.0.1", 422 | "System.Runtime": "4.1.0", 423 | "System.Runtime.Handles": "4.0.1" 424 | } 425 | }, 426 | "System.Net.Sockets/4.1.0": { 427 | "dependencies": { 428 | "Microsoft.NETCore.Platforms": "1.0.1", 429 | "Microsoft.NETCore.Targets": "1.0.1", 430 | "System.IO": "4.1.0", 431 | "System.Net.Primitives": "4.0.11", 432 | "System.Runtime": "4.1.0", 433 | "System.Threading.Tasks": "4.0.11" 434 | } 435 | }, 436 | "System.ObjectModel/4.0.12": { 437 | "dependencies": { 438 | "System.Collections": "4.0.11", 439 | "System.Diagnostics.Debug": "4.0.11", 440 | "System.Resources.ResourceManager": "4.0.1", 441 | "System.Runtime": "4.1.0", 442 | "System.Threading": "4.0.11" 443 | } 444 | }, 445 | "System.Reflection/4.1.0": { 446 | "dependencies": { 447 | "Microsoft.NETCore.Platforms": "1.0.1", 448 | "Microsoft.NETCore.Targets": "1.0.1", 449 | "System.IO": "4.1.0", 450 | "System.Reflection.Primitives": "4.0.1", 451 | "System.Runtime": "4.1.0" 452 | } 453 | }, 454 | "System.Reflection.Emit/4.0.1": { 455 | "dependencies": { 456 | "System.IO": "4.1.0", 457 | "System.Reflection": "4.1.0", 458 | "System.Reflection.Emit.ILGeneration": "4.0.1", 459 | "System.Reflection.Primitives": "4.0.1", 460 | "System.Runtime": "4.1.0" 461 | } 462 | }, 463 | "System.Reflection.Emit.ILGeneration/4.0.1": { 464 | "dependencies": { 465 | "System.Reflection": "4.1.0", 466 | "System.Reflection.Primitives": "4.0.1", 467 | "System.Runtime": "4.1.0" 468 | } 469 | }, 470 | "System.Reflection.Emit.Lightweight/4.0.1": { 471 | "dependencies": { 472 | "System.Reflection": "4.1.0", 473 | "System.Reflection.Emit.ILGeneration": "4.0.1", 474 | "System.Reflection.Primitives": "4.0.1", 475 | "System.Runtime": "4.1.0" 476 | } 477 | }, 478 | "System.Reflection.Extensions/4.0.1": { 479 | "dependencies": { 480 | "Microsoft.NETCore.Platforms": "1.0.1", 481 | "Microsoft.NETCore.Targets": "1.0.1", 482 | "System.Reflection": "4.1.0", 483 | "System.Runtime": "4.1.0" 484 | } 485 | }, 486 | "System.Reflection.Primitives/4.0.1": { 487 | "dependencies": { 488 | "Microsoft.NETCore.Platforms": "1.0.1", 489 | "Microsoft.NETCore.Targets": "1.0.1", 490 | "System.Runtime": "4.1.0" 491 | } 492 | }, 493 | "System.Reflection.TypeExtensions/4.1.0": { 494 | "dependencies": { 495 | "System.Reflection": "4.1.0", 496 | "System.Runtime": "4.1.0" 497 | } 498 | }, 499 | "System.Resources.ResourceManager/4.0.1": { 500 | "dependencies": { 501 | "Microsoft.NETCore.Platforms": "1.0.1", 502 | "Microsoft.NETCore.Targets": "1.0.1", 503 | "System.Globalization": "4.0.11", 504 | "System.Reflection": "4.1.0", 505 | "System.Runtime": "4.1.0" 506 | } 507 | }, 508 | "System.Runtime/4.1.0": { 509 | "dependencies": { 510 | "Microsoft.NETCore.Platforms": "1.0.1", 511 | "Microsoft.NETCore.Targets": "1.0.1" 512 | } 513 | }, 514 | "System.Runtime.Extensions/4.1.0": { 515 | "dependencies": { 516 | "Microsoft.NETCore.Platforms": "1.0.1", 517 | "Microsoft.NETCore.Targets": "1.0.1", 518 | "System.Runtime": "4.1.0" 519 | } 520 | }, 521 | "System.Runtime.Handles/4.0.1": { 522 | "dependencies": { 523 | "Microsoft.NETCore.Platforms": "1.0.1", 524 | "Microsoft.NETCore.Targets": "1.0.1", 525 | "System.Runtime": "4.1.0" 526 | } 527 | }, 528 | "System.Runtime.InteropServices/4.1.0": { 529 | "dependencies": { 530 | "Microsoft.NETCore.Platforms": "1.0.1", 531 | "Microsoft.NETCore.Targets": "1.0.1", 532 | "System.Reflection": "4.1.0", 533 | "System.Reflection.Primitives": "4.0.1", 534 | "System.Runtime": "4.1.0", 535 | "System.Runtime.Handles": "4.0.1" 536 | } 537 | }, 538 | "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { 539 | "dependencies": { 540 | "Microsoft.NETCore.Platforms": "1.0.1", 541 | "System.Reflection": "4.1.0", 542 | "System.Resources.ResourceManager": "4.0.1", 543 | "System.Runtime": "4.1.0", 544 | "System.Runtime.InteropServices": "4.1.0", 545 | "System.Threading": "4.0.11", 546 | "runtime.native.System": "4.0.0" 547 | } 548 | }, 549 | "System.Runtime.Numerics/4.0.1": { 550 | "dependencies": { 551 | "System.Globalization": "4.0.11", 552 | "System.Resources.ResourceManager": "4.0.1", 553 | "System.Runtime": "4.1.0", 554 | "System.Runtime.Extensions": "4.1.0" 555 | } 556 | }, 557 | "System.Security.Cryptography.Algorithms/4.2.0": { 558 | "dependencies": { 559 | "Microsoft.NETCore.Platforms": "1.0.1", 560 | "System.Collections": "4.0.11", 561 | "System.IO": "4.1.0", 562 | "System.Resources.ResourceManager": "4.0.1", 563 | "System.Runtime": "4.1.0", 564 | "System.Runtime.Extensions": "4.1.0", 565 | "System.Runtime.Handles": "4.0.1", 566 | "System.Runtime.InteropServices": "4.1.0", 567 | "System.Runtime.Numerics": "4.0.1", 568 | "System.Security.Cryptography.Encoding": "4.0.0", 569 | "System.Security.Cryptography.Primitives": "4.0.0", 570 | "System.Text.Encoding": "4.0.11", 571 | "runtime.native.System.Security.Cryptography": "4.0.0" 572 | } 573 | }, 574 | "System.Security.Cryptography.Cng/4.2.0": { 575 | "dependencies": { 576 | "Microsoft.NETCore.Platforms": "1.0.1", 577 | "System.IO": "4.1.0", 578 | "System.Resources.ResourceManager": "4.0.1", 579 | "System.Runtime": "4.1.0", 580 | "System.Runtime.Extensions": "4.1.0", 581 | "System.Runtime.Handles": "4.0.1", 582 | "System.Runtime.InteropServices": "4.1.0", 583 | "System.Security.Cryptography.Algorithms": "4.2.0", 584 | "System.Security.Cryptography.Encoding": "4.0.0", 585 | "System.Security.Cryptography.Primitives": "4.0.0", 586 | "System.Text.Encoding": "4.0.11" 587 | } 588 | }, 589 | "System.Security.Cryptography.Csp/4.0.0": { 590 | "dependencies": { 591 | "Microsoft.NETCore.Platforms": "1.0.1", 592 | "System.IO": "4.1.0", 593 | "System.Reflection": "4.1.0", 594 | "System.Resources.ResourceManager": "4.0.1", 595 | "System.Runtime": "4.1.0", 596 | "System.Runtime.Extensions": "4.1.0", 597 | "System.Runtime.Handles": "4.0.1", 598 | "System.Runtime.InteropServices": "4.1.0", 599 | "System.Security.Cryptography.Algorithms": "4.2.0", 600 | "System.Security.Cryptography.Encoding": "4.0.0", 601 | "System.Security.Cryptography.Primitives": "4.0.0", 602 | "System.Text.Encoding": "4.0.11", 603 | "System.Threading": "4.0.11" 604 | } 605 | }, 606 | "System.Security.Cryptography.Encoding/4.0.0": { 607 | "dependencies": { 608 | "Microsoft.NETCore.Platforms": "1.0.1", 609 | "System.Collections": "4.0.11", 610 | "System.Collections.Concurrent": "4.0.12", 611 | "System.Linq": "4.1.0", 612 | "System.Resources.ResourceManager": "4.0.1", 613 | "System.Runtime": "4.1.0", 614 | "System.Runtime.Extensions": "4.1.0", 615 | "System.Runtime.Handles": "4.0.1", 616 | "System.Runtime.InteropServices": "4.1.0", 617 | "System.Security.Cryptography.Primitives": "4.0.0", 618 | "System.Text.Encoding": "4.0.11", 619 | "runtime.native.System.Security.Cryptography": "4.0.0" 620 | } 621 | }, 622 | "System.Security.Cryptography.OpenSsl/4.0.0": { 623 | "dependencies": { 624 | "System.Collections": "4.0.11", 625 | "System.IO": "4.1.0", 626 | "System.Resources.ResourceManager": "4.0.1", 627 | "System.Runtime": "4.1.0", 628 | "System.Runtime.Extensions": "4.1.0", 629 | "System.Runtime.Handles": "4.0.1", 630 | "System.Runtime.InteropServices": "4.1.0", 631 | "System.Runtime.Numerics": "4.0.1", 632 | "System.Security.Cryptography.Algorithms": "4.2.0", 633 | "System.Security.Cryptography.Encoding": "4.0.0", 634 | "System.Security.Cryptography.Primitives": "4.0.0", 635 | "System.Text.Encoding": "4.0.11", 636 | "runtime.native.System.Security.Cryptography": "4.0.0" 637 | } 638 | }, 639 | "System.Security.Cryptography.Primitives/4.0.0": { 640 | "dependencies": { 641 | "System.Diagnostics.Debug": "4.0.11", 642 | "System.Globalization": "4.0.11", 643 | "System.IO": "4.1.0", 644 | "System.Resources.ResourceManager": "4.0.1", 645 | "System.Runtime": "4.1.0", 646 | "System.Threading": "4.0.11", 647 | "System.Threading.Tasks": "4.0.11" 648 | } 649 | }, 650 | "System.Security.Cryptography.X509Certificates/4.1.0": { 651 | "dependencies": { 652 | "Microsoft.NETCore.Platforms": "1.0.1", 653 | "System.Collections": "4.0.11", 654 | "System.Diagnostics.Debug": "4.0.11", 655 | "System.Globalization": "4.0.11", 656 | "System.Globalization.Calendars": "4.0.1", 657 | "System.IO": "4.1.0", 658 | "System.IO.FileSystem": "4.0.1", 659 | "System.IO.FileSystem.Primitives": "4.0.1", 660 | "System.Resources.ResourceManager": "4.0.1", 661 | "System.Runtime": "4.1.0", 662 | "System.Runtime.Extensions": "4.1.0", 663 | "System.Runtime.Handles": "4.0.1", 664 | "System.Runtime.InteropServices": "4.1.0", 665 | "System.Runtime.Numerics": "4.0.1", 666 | "System.Security.Cryptography.Algorithms": "4.2.0", 667 | "System.Security.Cryptography.Cng": "4.2.0", 668 | "System.Security.Cryptography.Csp": "4.0.0", 669 | "System.Security.Cryptography.Encoding": "4.0.0", 670 | "System.Security.Cryptography.OpenSsl": "4.0.0", 671 | "System.Security.Cryptography.Primitives": "4.0.0", 672 | "System.Text.Encoding": "4.0.11", 673 | "System.Threading": "4.0.11", 674 | "runtime.native.System": "4.0.0", 675 | "runtime.native.System.Net.Http": "4.0.1", 676 | "runtime.native.System.Security.Cryptography": "4.0.0" 677 | } 678 | }, 679 | "System.Text.Encoding/4.0.11": { 680 | "dependencies": { 681 | "Microsoft.NETCore.Platforms": "1.0.1", 682 | "Microsoft.NETCore.Targets": "1.0.1", 683 | "System.Runtime": "4.1.0" 684 | } 685 | }, 686 | "System.Text.Encoding.Extensions/4.0.11": { 687 | "dependencies": { 688 | "Microsoft.NETCore.Platforms": "1.0.1", 689 | "Microsoft.NETCore.Targets": "1.0.1", 690 | "System.Runtime": "4.1.0", 691 | "System.Text.Encoding": "4.0.11" 692 | } 693 | }, 694 | "System.Text.RegularExpressions/4.1.0": { 695 | "dependencies": { 696 | "System.Collections": "4.0.11", 697 | "System.Globalization": "4.0.11", 698 | "System.Resources.ResourceManager": "4.0.1", 699 | "System.Runtime": "4.1.0", 700 | "System.Runtime.Extensions": "4.1.0", 701 | "System.Threading": "4.0.11" 702 | } 703 | }, 704 | "System.Threading/4.0.11": { 705 | "dependencies": { 706 | "System.Runtime": "4.1.0", 707 | "System.Threading.Tasks": "4.0.11" 708 | } 709 | }, 710 | "System.Threading.Tasks/4.0.11": { 711 | "dependencies": { 712 | "Microsoft.NETCore.Platforms": "1.0.1", 713 | "Microsoft.NETCore.Targets": "1.0.1", 714 | "System.Runtime": "4.1.0" 715 | } 716 | }, 717 | "System.Threading.Tasks.Extensions/4.0.0": { 718 | "dependencies": { 719 | "System.Collections": "4.0.11", 720 | "System.Runtime": "4.1.0", 721 | "System.Threading.Tasks": "4.0.11" 722 | } 723 | }, 724 | "System.Threading.Timer/4.0.1": { 725 | "dependencies": { 726 | "Microsoft.NETCore.Platforms": "1.0.1", 727 | "Microsoft.NETCore.Targets": "1.0.1", 728 | "System.Runtime": "4.1.0" 729 | } 730 | }, 731 | "System.Xml.ReaderWriter/4.0.11": { 732 | "dependencies": { 733 | "System.Collections": "4.0.11", 734 | "System.Diagnostics.Debug": "4.0.11", 735 | "System.Globalization": "4.0.11", 736 | "System.IO": "4.1.0", 737 | "System.IO.FileSystem": "4.0.1", 738 | "System.IO.FileSystem.Primitives": "4.0.1", 739 | "System.Resources.ResourceManager": "4.0.1", 740 | "System.Runtime": "4.1.0", 741 | "System.Runtime.Extensions": "4.1.0", 742 | "System.Runtime.InteropServices": "4.1.0", 743 | "System.Text.Encoding": "4.0.11", 744 | "System.Text.Encoding.Extensions": "4.0.11", 745 | "System.Text.RegularExpressions": "4.1.0", 746 | "System.Threading.Tasks": "4.0.11", 747 | "System.Threading.Tasks.Extensions": "4.0.0" 748 | } 749 | }, 750 | "System.Xml.XDocument/4.0.11": { 751 | "dependencies": { 752 | "System.Collections": "4.0.11", 753 | "System.Diagnostics.Debug": "4.0.11", 754 | "System.Diagnostics.Tools": "4.0.1", 755 | "System.Globalization": "4.0.11", 756 | "System.IO": "4.1.0", 757 | "System.Reflection": "4.1.0", 758 | "System.Resources.ResourceManager": "4.0.1", 759 | "System.Runtime": "4.1.0", 760 | "System.Runtime.Extensions": "4.1.0", 761 | "System.Text.Encoding": "4.0.11", 762 | "System.Threading": "4.0.11", 763 | "System.Xml.ReaderWriter": "4.0.11" 764 | } 765 | }, 766 | "ToMarkdownTable/0.2.0": { 767 | "dependencies": { 768 | "NETStandard.Library": "1.6.0" 769 | }, 770 | "runtime": { 771 | "lib/netstandard1.2/ToMarkdownTable.dll": { 772 | "assemblyVersion": "0.2.0.0", 773 | "fileVersion": "0.2.0.0" 774 | } 775 | } 776 | } 777 | } 778 | }, 779 | "libraries": { 780 | "TcLibraryVersions/1.0.0": { 781 | "type": "project", 782 | "serviceable": false, 783 | "sha512": "" 784 | }, 785 | "CommandLineParser/2.8.0": { 786 | "type": "package", 787 | "serviceable": true, 788 | "sha512": "sha512-eco2HlKQBY4Joz9odHigzGpVzv6pjsXnY5lziioMveQxr+i2Z7xYcIOMeZTgYiqnMtMAbXMXsVhrNfWO5vJS8Q==", 789 | "path": "commandlineparser/2.8.0", 790 | "hashPath": "commandlineparser.2.8.0.nupkg.sha512" 791 | }, 792 | "LibGit2Sharp/0.26.2": { 793 | "type": "package", 794 | "serviceable": true, 795 | "sha512": "sha512-qHLhuI8VEtMf7jiurT/Ypquh37S6ngllCx+aq9uqOY2evok7Fb2AzhJgvNctsXOzHaJwveBs+30sPQJFn/pISg==", 796 | "path": "libgit2sharp/0.26.2", 797 | "hashPath": "libgit2sharp.0.26.2.nupkg.sha512" 798 | }, 799 | "LibGit2Sharp.NativeBinaries/2.0.306": { 800 | "type": "package", 801 | "serviceable": true, 802 | "sha512": "sha512-LY9nyPE2X/eLl69ttuDPFFlKR8b5KXlqYej1YR1YmqmhF8Izo+vPX90q5ouOO5YGCf5d4lDUOC0x2yMWw00P7Q==", 803 | "path": "libgit2sharp.nativebinaries/2.0.306", 804 | "hashPath": "libgit2sharp.nativebinaries.2.0.306.nupkg.sha512" 805 | }, 806 | "Microsoft.NETCore.Platforms/1.0.1": { 807 | "type": "package", 808 | "serviceable": true, 809 | "sha512": "sha512-2G6OjjJzwBfNOO8myRV/nFrbTw5iA+DEm0N+qUqhrOmaVtn4pC77h38I1jsXGw5VH55+dPfQsqHD0We9sCl9FQ==", 810 | "path": "microsoft.netcore.platforms/1.0.1", 811 | "hashPath": "microsoft.netcore.platforms.1.0.1.nupkg.sha512" 812 | }, 813 | "Microsoft.NETCore.Targets/1.0.1": { 814 | "type": "package", 815 | "serviceable": true, 816 | "sha512": "sha512-rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw==", 817 | "path": "microsoft.netcore.targets/1.0.1", 818 | "hashPath": "microsoft.netcore.targets.1.0.1.nupkg.sha512" 819 | }, 820 | "Microsoft.Win32.Primitives/4.0.1": { 821 | "type": "package", 822 | "serviceable": true, 823 | "sha512": "sha512-fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==", 824 | "path": "microsoft.win32.primitives/4.0.1", 825 | "hashPath": "microsoft.win32.primitives.4.0.1.nupkg.sha512" 826 | }, 827 | "NETStandard.Library/1.6.0": { 828 | "type": "package", 829 | "serviceable": true, 830 | "sha512": "sha512-ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==", 831 | "path": "netstandard.library/1.6.0", 832 | "hashPath": "netstandard.library.1.6.0.nupkg.sha512" 833 | }, 834 | "Octokit/0.50.0": { 835 | "type": "package", 836 | "serviceable": true, 837 | "sha512": "sha512-J5vqespSvjxIAAtjG1Tc6ghBqyfRgDJtKnk/ifi4N0hD/f3JbPwyEDRT+Eelu/bS4C4M6mu5gt1WJqar+fByzg==", 838 | "path": "octokit/0.50.0", 839 | "hashPath": "octokit.0.50.0.nupkg.sha512" 840 | }, 841 | "runtime.native.System/4.0.0": { 842 | "type": "package", 843 | "serviceable": true, 844 | "sha512": "sha512-QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==", 845 | "path": "runtime.native.system/4.0.0", 846 | "hashPath": "runtime.native.system.4.0.0.nupkg.sha512" 847 | }, 848 | "runtime.native.System.IO.Compression/4.1.0": { 849 | "type": "package", 850 | "serviceable": true, 851 | "sha512": "sha512-Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==", 852 | "path": "runtime.native.system.io.compression/4.1.0", 853 | "hashPath": "runtime.native.system.io.compression.4.1.0.nupkg.sha512" 854 | }, 855 | "runtime.native.System.Net.Http/4.0.1": { 856 | "type": "package", 857 | "serviceable": true, 858 | "sha512": "sha512-Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==", 859 | "path": "runtime.native.system.net.http/4.0.1", 860 | "hashPath": "runtime.native.system.net.http.4.0.1.nupkg.sha512" 861 | }, 862 | "runtime.native.System.Security.Cryptography/4.0.0": { 863 | "type": "package", 864 | "serviceable": true, 865 | "sha512": "sha512-2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==", 866 | "path": "runtime.native.system.security.cryptography/4.0.0", 867 | "hashPath": "runtime.native.system.security.cryptography.4.0.0.nupkg.sha512" 868 | }, 869 | "System.AppContext/4.1.0": { 870 | "type": "package", 871 | "serviceable": true, 872 | "sha512": "sha512-3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==", 873 | "path": "system.appcontext/4.1.0", 874 | "hashPath": "system.appcontext.4.1.0.nupkg.sha512" 875 | }, 876 | "System.Buffers/4.0.0": { 877 | "type": "package", 878 | "serviceable": true, 879 | "sha512": "sha512-msXumHfjjURSkvxUjYuq4N2ghHoRi2VpXcKMA7gK6ujQfU3vGpl+B6ld0ATRg+FZFpRyA6PgEPA+VlIkTeNf2w==", 880 | "path": "system.buffers/4.0.0", 881 | "hashPath": "system.buffers.4.0.0.nupkg.sha512" 882 | }, 883 | "System.Collections/4.0.11": { 884 | "type": "package", 885 | "serviceable": true, 886 | "sha512": "sha512-YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==", 887 | "path": "system.collections/4.0.11", 888 | "hashPath": "system.collections.4.0.11.nupkg.sha512" 889 | }, 890 | "System.Collections.Concurrent/4.0.12": { 891 | "type": "package", 892 | "serviceable": true, 893 | "sha512": "sha512-2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==", 894 | "path": "system.collections.concurrent/4.0.12", 895 | "hashPath": "system.collections.concurrent.4.0.12.nupkg.sha512" 896 | }, 897 | "System.Console/4.0.0": { 898 | "type": "package", 899 | "serviceable": true, 900 | "sha512": "sha512-qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==", 901 | "path": "system.console/4.0.0", 902 | "hashPath": "system.console.4.0.0.nupkg.sha512" 903 | }, 904 | "System.Diagnostics.Debug/4.0.11": { 905 | "type": "package", 906 | "serviceable": true, 907 | "sha512": "sha512-w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==", 908 | "path": "system.diagnostics.debug/4.0.11", 909 | "hashPath": "system.diagnostics.debug.4.0.11.nupkg.sha512" 910 | }, 911 | "System.Diagnostics.DiagnosticSource/4.0.0": { 912 | "type": "package", 913 | "serviceable": true, 914 | "sha512": "sha512-YKglnq4BMTJxfcr6nuT08g+yJ0UxdePIHxosiLuljuHIUR6t4KhFsyaHOaOc1Ofqp0PUvJ0EmcgiEz6T7vEx3w==", 915 | "path": "system.diagnostics.diagnosticsource/4.0.0", 916 | "hashPath": "system.diagnostics.diagnosticsource.4.0.0.nupkg.sha512" 917 | }, 918 | "System.Diagnostics.Tools/4.0.1": { 919 | "type": "package", 920 | "serviceable": true, 921 | "sha512": "sha512-xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==", 922 | "path": "system.diagnostics.tools/4.0.1", 923 | "hashPath": "system.diagnostics.tools.4.0.1.nupkg.sha512" 924 | }, 925 | "System.Diagnostics.Tracing/4.1.0": { 926 | "type": "package", 927 | "serviceable": true, 928 | "sha512": "sha512-vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==", 929 | "path": "system.diagnostics.tracing/4.1.0", 930 | "hashPath": "system.diagnostics.tracing.4.1.0.nupkg.sha512" 931 | }, 932 | "System.Globalization/4.0.11": { 933 | "type": "package", 934 | "serviceable": true, 935 | "sha512": "sha512-B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==", 936 | "path": "system.globalization/4.0.11", 937 | "hashPath": "system.globalization.4.0.11.nupkg.sha512" 938 | }, 939 | "System.Globalization.Calendars/4.0.1": { 940 | "type": "package", 941 | "serviceable": true, 942 | "sha512": "sha512-L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==", 943 | "path": "system.globalization.calendars/4.0.1", 944 | "hashPath": "system.globalization.calendars.4.0.1.nupkg.sha512" 945 | }, 946 | "System.Globalization.Extensions/4.0.1": { 947 | "type": "package", 948 | "serviceable": true, 949 | "sha512": "sha512-KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==", 950 | "path": "system.globalization.extensions/4.0.1", 951 | "hashPath": "system.globalization.extensions.4.0.1.nupkg.sha512" 952 | }, 953 | "System.IO/4.1.0": { 954 | "type": "package", 955 | "serviceable": true, 956 | "sha512": "sha512-3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==", 957 | "path": "system.io/4.1.0", 958 | "hashPath": "system.io.4.1.0.nupkg.sha512" 959 | }, 960 | "System.IO.Compression/4.1.0": { 961 | "type": "package", 962 | "serviceable": true, 963 | "sha512": "sha512-TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==", 964 | "path": "system.io.compression/4.1.0", 965 | "hashPath": "system.io.compression.4.1.0.nupkg.sha512" 966 | }, 967 | "System.IO.Compression.ZipFile/4.0.1": { 968 | "type": "package", 969 | "serviceable": true, 970 | "sha512": "sha512-hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==", 971 | "path": "system.io.compression.zipfile/4.0.1", 972 | "hashPath": "system.io.compression.zipfile.4.0.1.nupkg.sha512" 973 | }, 974 | "System.IO.FileSystem/4.0.1": { 975 | "type": "package", 976 | "serviceable": true, 977 | "sha512": "sha512-IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==", 978 | "path": "system.io.filesystem/4.0.1", 979 | "hashPath": "system.io.filesystem.4.0.1.nupkg.sha512" 980 | }, 981 | "System.IO.FileSystem.Primitives/4.0.1": { 982 | "type": "package", 983 | "serviceable": true, 984 | "sha512": "sha512-kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==", 985 | "path": "system.io.filesystem.primitives/4.0.1", 986 | "hashPath": "system.io.filesystem.primitives.4.0.1.nupkg.sha512" 987 | }, 988 | "System.Linq/4.1.0": { 989 | "type": "package", 990 | "serviceable": true, 991 | "sha512": "sha512-bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==", 992 | "path": "system.linq/4.1.0", 993 | "hashPath": "system.linq.4.1.0.nupkg.sha512" 994 | }, 995 | "System.Linq.Expressions/4.1.0": { 996 | "type": "package", 997 | "serviceable": true, 998 | "sha512": "sha512-I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==", 999 | "path": "system.linq.expressions/4.1.0", 1000 | "hashPath": "system.linq.expressions.4.1.0.nupkg.sha512" 1001 | }, 1002 | "System.Net.Http/4.1.0": { 1003 | "type": "package", 1004 | "serviceable": true, 1005 | "sha512": "sha512-ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==", 1006 | "path": "system.net.http/4.1.0", 1007 | "hashPath": "system.net.http.4.1.0.nupkg.sha512" 1008 | }, 1009 | "System.Net.Primitives/4.0.11": { 1010 | "type": "package", 1011 | "serviceable": true, 1012 | "sha512": "sha512-hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==", 1013 | "path": "system.net.primitives/4.0.11", 1014 | "hashPath": "system.net.primitives.4.0.11.nupkg.sha512" 1015 | }, 1016 | "System.Net.Sockets/4.1.0": { 1017 | "type": "package", 1018 | "serviceable": true, 1019 | "sha512": "sha512-xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==", 1020 | "path": "system.net.sockets/4.1.0", 1021 | "hashPath": "system.net.sockets.4.1.0.nupkg.sha512" 1022 | }, 1023 | "System.ObjectModel/4.0.12": { 1024 | "type": "package", 1025 | "serviceable": true, 1026 | "sha512": "sha512-tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==", 1027 | "path": "system.objectmodel/4.0.12", 1028 | "hashPath": "system.objectmodel.4.0.12.nupkg.sha512" 1029 | }, 1030 | "System.Reflection/4.1.0": { 1031 | "type": "package", 1032 | "serviceable": true, 1033 | "sha512": "sha512-JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==", 1034 | "path": "system.reflection/4.1.0", 1035 | "hashPath": "system.reflection.4.1.0.nupkg.sha512" 1036 | }, 1037 | "System.Reflection.Emit/4.0.1": { 1038 | "type": "package", 1039 | "serviceable": true, 1040 | "sha512": "sha512-P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==", 1041 | "path": "system.reflection.emit/4.0.1", 1042 | "hashPath": "system.reflection.emit.4.0.1.nupkg.sha512" 1043 | }, 1044 | "System.Reflection.Emit.ILGeneration/4.0.1": { 1045 | "type": "package", 1046 | "serviceable": true, 1047 | "sha512": "sha512-Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==", 1048 | "path": "system.reflection.emit.ilgeneration/4.0.1", 1049 | "hashPath": "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512" 1050 | }, 1051 | "System.Reflection.Emit.Lightweight/4.0.1": { 1052 | "type": "package", 1053 | "serviceable": true, 1054 | "sha512": "sha512-sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==", 1055 | "path": "system.reflection.emit.lightweight/4.0.1", 1056 | "hashPath": "system.reflection.emit.lightweight.4.0.1.nupkg.sha512" 1057 | }, 1058 | "System.Reflection.Extensions/4.0.1": { 1059 | "type": "package", 1060 | "serviceable": true, 1061 | "sha512": "sha512-GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==", 1062 | "path": "system.reflection.extensions/4.0.1", 1063 | "hashPath": "system.reflection.extensions.4.0.1.nupkg.sha512" 1064 | }, 1065 | "System.Reflection.Primitives/4.0.1": { 1066 | "type": "package", 1067 | "serviceable": true, 1068 | "sha512": "sha512-4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==", 1069 | "path": "system.reflection.primitives/4.0.1", 1070 | "hashPath": "system.reflection.primitives.4.0.1.nupkg.sha512" 1071 | }, 1072 | "System.Reflection.TypeExtensions/4.1.0": { 1073 | "type": "package", 1074 | "serviceable": true, 1075 | "sha512": "sha512-tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==", 1076 | "path": "system.reflection.typeextensions/4.1.0", 1077 | "hashPath": "system.reflection.typeextensions.4.1.0.nupkg.sha512" 1078 | }, 1079 | "System.Resources.ResourceManager/4.0.1": { 1080 | "type": "package", 1081 | "serviceable": true, 1082 | "sha512": "sha512-TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==", 1083 | "path": "system.resources.resourcemanager/4.0.1", 1084 | "hashPath": "system.resources.resourcemanager.4.0.1.nupkg.sha512" 1085 | }, 1086 | "System.Runtime/4.1.0": { 1087 | "type": "package", 1088 | "serviceable": true, 1089 | "sha512": "sha512-v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==", 1090 | "path": "system.runtime/4.1.0", 1091 | "hashPath": "system.runtime.4.1.0.nupkg.sha512" 1092 | }, 1093 | "System.Runtime.Extensions/4.1.0": { 1094 | "type": "package", 1095 | "serviceable": true, 1096 | "sha512": "sha512-CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==", 1097 | "path": "system.runtime.extensions/4.1.0", 1098 | "hashPath": "system.runtime.extensions.4.1.0.nupkg.sha512" 1099 | }, 1100 | "System.Runtime.Handles/4.0.1": { 1101 | "type": "package", 1102 | "serviceable": true, 1103 | "sha512": "sha512-nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==", 1104 | "path": "system.runtime.handles/4.0.1", 1105 | "hashPath": "system.runtime.handles.4.0.1.nupkg.sha512" 1106 | }, 1107 | "System.Runtime.InteropServices/4.1.0": { 1108 | "type": "package", 1109 | "serviceable": true, 1110 | "sha512": "sha512-16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==", 1111 | "path": "system.runtime.interopservices/4.1.0", 1112 | "hashPath": "system.runtime.interopservices.4.1.0.nupkg.sha512" 1113 | }, 1114 | "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { 1115 | "type": "package", 1116 | "serviceable": true, 1117 | "sha512": "sha512-hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==", 1118 | "path": "system.runtime.interopservices.runtimeinformation/4.0.0", 1119 | "hashPath": "system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512" 1120 | }, 1121 | "System.Runtime.Numerics/4.0.1": { 1122 | "type": "package", 1123 | "serviceable": true, 1124 | "sha512": "sha512-+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==", 1125 | "path": "system.runtime.numerics/4.0.1", 1126 | "hashPath": "system.runtime.numerics.4.0.1.nupkg.sha512" 1127 | }, 1128 | "System.Security.Cryptography.Algorithms/4.2.0": { 1129 | "type": "package", 1130 | "serviceable": true, 1131 | "sha512": "sha512-8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==", 1132 | "path": "system.security.cryptography.algorithms/4.2.0", 1133 | "hashPath": "system.security.cryptography.algorithms.4.2.0.nupkg.sha512" 1134 | }, 1135 | "System.Security.Cryptography.Cng/4.2.0": { 1136 | "type": "package", 1137 | "serviceable": true, 1138 | "sha512": "sha512-cUJ2h+ZvONDe28Szw3st5dOHdjndhJzQ2WObDEXAWRPEQBtVItVoxbXM/OEsTthl3cNn2dk2k0I3y45igCQcLw==", 1139 | "path": "system.security.cryptography.cng/4.2.0", 1140 | "hashPath": "system.security.cryptography.cng.4.2.0.nupkg.sha512" 1141 | }, 1142 | "System.Security.Cryptography.Csp/4.0.0": { 1143 | "type": "package", 1144 | "serviceable": true, 1145 | "sha512": "sha512-/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==", 1146 | "path": "system.security.cryptography.csp/4.0.0", 1147 | "hashPath": "system.security.cryptography.csp.4.0.0.nupkg.sha512" 1148 | }, 1149 | "System.Security.Cryptography.Encoding/4.0.0": { 1150 | "type": "package", 1151 | "serviceable": true, 1152 | "sha512": "sha512-FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==", 1153 | "path": "system.security.cryptography.encoding/4.0.0", 1154 | "hashPath": "system.security.cryptography.encoding.4.0.0.nupkg.sha512" 1155 | }, 1156 | "System.Security.Cryptography.OpenSsl/4.0.0": { 1157 | "type": "package", 1158 | "serviceable": true, 1159 | "sha512": "sha512-HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==", 1160 | "path": "system.security.cryptography.openssl/4.0.0", 1161 | "hashPath": "system.security.cryptography.openssl.4.0.0.nupkg.sha512" 1162 | }, 1163 | "System.Security.Cryptography.Primitives/4.0.0": { 1164 | "type": "package", 1165 | "serviceable": true, 1166 | "sha512": "sha512-Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==", 1167 | "path": "system.security.cryptography.primitives/4.0.0", 1168 | "hashPath": "system.security.cryptography.primitives.4.0.0.nupkg.sha512" 1169 | }, 1170 | "System.Security.Cryptography.X509Certificates/4.1.0": { 1171 | "type": "package", 1172 | "serviceable": true, 1173 | "sha512": "sha512-4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==", 1174 | "path": "system.security.cryptography.x509certificates/4.1.0", 1175 | "hashPath": "system.security.cryptography.x509certificates.4.1.0.nupkg.sha512" 1176 | }, 1177 | "System.Text.Encoding/4.0.11": { 1178 | "type": "package", 1179 | "serviceable": true, 1180 | "sha512": "sha512-U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==", 1181 | "path": "system.text.encoding/4.0.11", 1182 | "hashPath": "system.text.encoding.4.0.11.nupkg.sha512" 1183 | }, 1184 | "System.Text.Encoding.Extensions/4.0.11": { 1185 | "type": "package", 1186 | "serviceable": true, 1187 | "sha512": "sha512-jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==", 1188 | "path": "system.text.encoding.extensions/4.0.11", 1189 | "hashPath": "system.text.encoding.extensions.4.0.11.nupkg.sha512" 1190 | }, 1191 | "System.Text.RegularExpressions/4.1.0": { 1192 | "type": "package", 1193 | "serviceable": true, 1194 | "sha512": "sha512-i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==", 1195 | "path": "system.text.regularexpressions/4.1.0", 1196 | "hashPath": "system.text.regularexpressions.4.1.0.nupkg.sha512" 1197 | }, 1198 | "System.Threading/4.0.11": { 1199 | "type": "package", 1200 | "serviceable": true, 1201 | "sha512": "sha512-N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==", 1202 | "path": "system.threading/4.0.11", 1203 | "hashPath": "system.threading.4.0.11.nupkg.sha512" 1204 | }, 1205 | "System.Threading.Tasks/4.0.11": { 1206 | "type": "package", 1207 | "serviceable": true, 1208 | "sha512": "sha512-k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==", 1209 | "path": "system.threading.tasks/4.0.11", 1210 | "hashPath": "system.threading.tasks.4.0.11.nupkg.sha512" 1211 | }, 1212 | "System.Threading.Tasks.Extensions/4.0.0": { 1213 | "type": "package", 1214 | "serviceable": true, 1215 | "sha512": "sha512-pH4FZDsZQ/WmgJtN4LWYmRdJAEeVkyriSwrv2Teoe5FOU0Yxlb6II6GL8dBPOfRmutHGATduj3ooMt7dJ2+i+w==", 1216 | "path": "system.threading.tasks.extensions/4.0.0", 1217 | "hashPath": "system.threading.tasks.extensions.4.0.0.nupkg.sha512" 1218 | }, 1219 | "System.Threading.Timer/4.0.1": { 1220 | "type": "package", 1221 | "serviceable": true, 1222 | "sha512": "sha512-saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==", 1223 | "path": "system.threading.timer/4.0.1", 1224 | "hashPath": "system.threading.timer.4.0.1.nupkg.sha512" 1225 | }, 1226 | "System.Xml.ReaderWriter/4.0.11": { 1227 | "type": "package", 1228 | "serviceable": true, 1229 | "sha512": "sha512-ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==", 1230 | "path": "system.xml.readerwriter/4.0.11", 1231 | "hashPath": "system.xml.readerwriter.4.0.11.nupkg.sha512" 1232 | }, 1233 | "System.Xml.XDocument/4.0.11": { 1234 | "type": "package", 1235 | "serviceable": true, 1236 | "sha512": "sha512-Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==", 1237 | "path": "system.xml.xdocument/4.0.11", 1238 | "hashPath": "system.xml.xdocument.4.0.11.nupkg.sha512" 1239 | }, 1240 | "ToMarkdownTable/0.2.0": { 1241 | "type": "package", 1242 | "serviceable": true, 1243 | "sha512": "sha512-dgH7r+I3GjuksVn4uOGbRgQnCheUfNp4f+7u8A+O0ShkWrjYqbPDU3m69CC2u5sDiGs3ckw04BQ+sxssIK908A==", 1244 | "path": "tomarkdowntable/0.2.0", 1245 | "hashPath": "tomarkdowntable.0.2.0.nupkg.sha512" 1246 | } 1247 | } 1248 | } -------------------------------------------------------------------------------- /TcLibraryVersions/bin/Debug/net5.0/TcLibraryVersions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RumstiBumsti/TcLibraryVersions/c586eb328322b5ca81aa93c1d52f73e1f1d901a8/TcLibraryVersions/bin/Debug/net5.0/TcLibraryVersions.dll -------------------------------------------------------------------------------- /TcLibraryVersions/bin/Debug/net5.0/TcLibraryVersions.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RumstiBumsti/TcLibraryVersions/c586eb328322b5ca81aa93c1d52f73e1f1d901a8/TcLibraryVersions/bin/Debug/net5.0/TcLibraryVersions.exe -------------------------------------------------------------------------------- /TcLibraryVersions/bin/Debug/net5.0/TcLibraryVersions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RumstiBumsti/TcLibraryVersions/c586eb328322b5ca81aa93c1d52f73e1f1d901a8/TcLibraryVersions/bin/Debug/net5.0/TcLibraryVersions.pdb -------------------------------------------------------------------------------- /TcLibraryVersions/bin/Debug/net5.0/TcLibraryVersions.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\U7050632\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\U7050632\\.nuget\\packages", 6 | "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /TcLibraryVersions/bin/Debug/net5.0/TcLibraryVersions.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net5.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "5.0.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /TcLibraryVersions/bin/Debug/net5.0/ToMarkdownTable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RumstiBumsti/TcLibraryVersions/c586eb328322b5ca81aa93c1d52f73e1f1d901a8/TcLibraryVersions/bin/Debug/net5.0/ToMarkdownTable.dll -------------------------------------------------------------------------------- /TcLibraryVersions/bin/Debug/net5.0/ref/TcLibraryVersions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RumstiBumsti/TcLibraryVersions/c586eb328322b5ca81aa93c1d52f73e1f1d901a8/TcLibraryVersions/bin/Debug/net5.0/ref/TcLibraryVersions.dll -------------------------------------------------------------------------------- /TcLibraryVersions/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /TcLibraryVersions/obj/Debug/net5.0/TcLibraryVersions.AssemblyInfo.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 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("TcLibraryVersions")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("TcLibraryVersions")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("TcLibraryVersions")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /TcLibraryVersions/obj/Debug/net5.0/TcLibraryVersions.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | f70de681d8cb66512789e728cb8ad417be5e8bc6 2 | -------------------------------------------------------------------------------- /TcLibraryVersions/obj/Debug/net5.0/TcLibraryVersions.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.TargetFramework = net5.0 3 | build_property.TargetPlatformMinVersion = 4 | build_property.UsingMicrosoftNETSdkWeb = 5 | build_property.ProjectTypeGuids = 6 | build_property.PublishSingleFile = 7 | build_property.IncludeAllContentForSelfExtract = 8 | build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows 9 | build_property.RootNamespace = TcLibraryVersions 10 | build_property.ProjectDir = C:\CS\C#\TcLibraryVersions\TcLibraryVersions\ 11 | -------------------------------------------------------------------------------- /TcLibraryVersions/obj/Debug/net5.0/TcLibraryVersions.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RumstiBumsti/TcLibraryVersions/c586eb328322b5ca81aa93c1d52f73e1f1d901a8/TcLibraryVersions/obj/Debug/net5.0/TcLibraryVersions.assets.cache -------------------------------------------------------------------------------- /TcLibraryVersions/obj/Debug/net5.0/TcLibraryVersions.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /TcLibraryVersions/obj/Debug/net5.0/TcLibraryVersions.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RumstiBumsti/TcLibraryVersions/c586eb328322b5ca81aa93c1d52f73e1f1d901a8/TcLibraryVersions/obj/Debug/net5.0/TcLibraryVersions.csproj.CopyComplete -------------------------------------------------------------------------------- /TcLibraryVersions/obj/Debug/net5.0/TcLibraryVersions.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 609cda8c5abcbce9d67c250b1257c2cd7fdc900a 2 | -------------------------------------------------------------------------------- /TcLibraryVersions/obj/Debug/net5.0/TcLibraryVersions.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\CS\C#\TcLibraryVersions\TcLibraryVersions\bin\Debug\net5.0\TcLibraryVersions.exe 2 | C:\CS\C#\TcLibraryVersions\TcLibraryVersions\bin\Debug\net5.0\TcLibraryVersions.deps.json 3 | C:\CS\C#\TcLibraryVersions\TcLibraryVersions\bin\Debug\net5.0\TcLibraryVersions.runtimeconfig.json 4 | C:\CS\C#\TcLibraryVersions\TcLibraryVersions\bin\Debug\net5.0\TcLibraryVersions.runtimeconfig.dev.json 5 | C:\CS\C#\TcLibraryVersions\TcLibraryVersions\bin\Debug\net5.0\TcLibraryVersions.dll 6 | C:\CS\C#\TcLibraryVersions\TcLibraryVersions\bin\Debug\net5.0\ref\TcLibraryVersions.dll 7 | C:\CS\C#\TcLibraryVersions\TcLibraryVersions\bin\Debug\net5.0\TcLibraryVersions.pdb 8 | C:\CS\C#\TcLibraryVersions\TcLibraryVersions\obj\Debug\net5.0\TcLibraryVersions.csproj.AssemblyReference.cache 9 | C:\CS\C#\TcLibraryVersions\TcLibraryVersions\obj\Debug\net5.0\TcLibraryVersions.GeneratedMSBuildEditorConfig.editorconfig 10 | C:\CS\C#\TcLibraryVersions\TcLibraryVersions\obj\Debug\net5.0\TcLibraryVersions.AssemblyInfoInputs.cache 11 | C:\CS\C#\TcLibraryVersions\TcLibraryVersions\obj\Debug\net5.0\TcLibraryVersions.AssemblyInfo.cs 12 | C:\CS\C#\TcLibraryVersions\TcLibraryVersions\obj\Debug\net5.0\TcLibraryVersions.csproj.CoreCompileInputs.cache 13 | C:\CS\C#\TcLibraryVersions\TcLibraryVersions\obj\Debug\net5.0\TcLibraryVersions.dll 14 | C:\CS\C#\TcLibraryVersions\TcLibraryVersions\obj\Debug\net5.0\ref\TcLibraryVersions.dll 15 | C:\CS\C#\TcLibraryVersions\TcLibraryVersions\obj\Debug\net5.0\TcLibraryVersions.pdb 16 | C:\CS\C#\TcLibraryVersions\TcLibraryVersions\obj\Debug\net5.0\TcLibraryVersions.genruntimeconfig.cache 17 | C:\CS\C#\TcLibraryVersions\TcLibraryVersions\bin\Debug\net5.0\ToMarkdownTable.dll 18 | C:\CS\C#\TcLibraryVersions\TcLibraryVersions\obj\Debug\net5.0\TcLibraryVersions.csproj.CopyComplete 19 | C:\CS\C#\TcLibraryVersions\TcLibraryVersions\bin\Debug\net5.0\Octokit.dll 20 | C:\CS\C#\TcLibraryVersions\TcLibraryVersions\bin\Debug\net5.0\CommandLine.dll 21 | C:\CS\C#\TcLibraryVersions\TcLibraryVersions\bin\Debug\net5.0\LibGit2Sharp.dll 22 | C:\CS\C#\TcLibraryVersions\TcLibraryVersions\bin\Debug\net5.0\runtimes\alpine-x64\native\libgit2-106a5f2.so 23 | C:\CS\C#\TcLibraryVersions\TcLibraryVersions\bin\Debug\net5.0\runtimes\alpine.3.9-x64\native\libgit2-106a5f2.so 24 | C:\CS\C#\TcLibraryVersions\TcLibraryVersions\bin\Debug\net5.0\runtimes\debian-arm64\native\libgit2-106a5f2.so 25 | C:\CS\C#\TcLibraryVersions\TcLibraryVersions\bin\Debug\net5.0\runtimes\debian.9-x64\native\libgit2-106a5f2.so 26 | C:\CS\C#\TcLibraryVersions\TcLibraryVersions\bin\Debug\net5.0\runtimes\fedora-x64\native\libgit2-106a5f2.so 27 | C:\CS\C#\TcLibraryVersions\TcLibraryVersions\bin\Debug\net5.0\runtimes\linux-x64\native\libgit2-106a5f2.so 28 | C:\CS\C#\TcLibraryVersions\TcLibraryVersions\bin\Debug\net5.0\runtimes\osx\native\libgit2-106a5f2.dylib 29 | C:\CS\C#\TcLibraryVersions\TcLibraryVersions\bin\Debug\net5.0\runtimes\rhel-x64\native\libgit2-106a5f2.so 30 | C:\CS\C#\TcLibraryVersions\TcLibraryVersions\bin\Debug\net5.0\runtimes\ubuntu.16.04-arm64\native\libgit2-106a5f2.so 31 | C:\CS\C#\TcLibraryVersions\TcLibraryVersions\bin\Debug\net5.0\runtimes\ubuntu.18.04-x64\native\libgit2-106a5f2.so 32 | C:\CS\C#\TcLibraryVersions\TcLibraryVersions\bin\Debug\net5.0\runtimes\win-x64\native\git2-106a5f2.dll 33 | C:\CS\C#\TcLibraryVersions\TcLibraryVersions\bin\Debug\net5.0\runtimes\win-x64\native\git2-106a5f2.pdb 34 | C:\CS\C#\TcLibraryVersions\TcLibraryVersions\bin\Debug\net5.0\runtimes\win-x86\native\git2-106a5f2.dll 35 | C:\CS\C#\TcLibraryVersions\TcLibraryVersions\bin\Debug\net5.0\runtimes\win-x86\native\git2-106a5f2.pdb 36 | -------------------------------------------------------------------------------- /TcLibraryVersions/obj/Debug/net5.0/TcLibraryVersions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RumstiBumsti/TcLibraryVersions/c586eb328322b5ca81aa93c1d52f73e1f1d901a8/TcLibraryVersions/obj/Debug/net5.0/TcLibraryVersions.dll -------------------------------------------------------------------------------- /TcLibraryVersions/obj/Debug/net5.0/TcLibraryVersions.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | b92191acabd87eeb143482e6669cf76780105cf6 2 | -------------------------------------------------------------------------------- /TcLibraryVersions/obj/Debug/net5.0/TcLibraryVersions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RumstiBumsti/TcLibraryVersions/c586eb328322b5ca81aa93c1d52f73e1f1d901a8/TcLibraryVersions/obj/Debug/net5.0/TcLibraryVersions.pdb -------------------------------------------------------------------------------- /TcLibraryVersions/obj/Debug/net5.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RumstiBumsti/TcLibraryVersions/c586eb328322b5ca81aa93c1d52f73e1f1d901a8/TcLibraryVersions/obj/Debug/net5.0/apphost.exe -------------------------------------------------------------------------------- /TcLibraryVersions/obj/Debug/net5.0/ref/TcLibraryVersions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RumstiBumsti/TcLibraryVersions/c586eb328322b5ca81aa93c1d52f73e1f1d901a8/TcLibraryVersions/obj/Debug/net5.0/ref/TcLibraryVersions.dll -------------------------------------------------------------------------------- /TcLibraryVersions/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /TcLibraryVersions/obj/Release/net5.0/TcLibraryVersions.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | d89768a4a779ba88d2799dee3a4043ca204b2b98 2 | -------------------------------------------------------------------------------- /TcLibraryVersions/obj/Release/net5.0/TcLibraryVersions.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.TargetFramework = net5.0 3 | build_property.TargetPlatformMinVersion = 4 | build_property.UsingMicrosoftNETSdkWeb = 5 | build_property.ProjectTypeGuids = 6 | build_property.PublishSingleFile = 7 | build_property.IncludeAllContentForSelfExtract = 8 | build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows 9 | build_property.RootNamespace = TcLibraryVersions 10 | build_property.ProjectDir = C:\Temp\TcLibraryVersions\TcLibraryVersions\ 11 | -------------------------------------------------------------------------------- /TcLibraryVersions/obj/Release/net5.0/TcLibraryVersions.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RumstiBumsti/TcLibraryVersions/c586eb328322b5ca81aa93c1d52f73e1f1d901a8/TcLibraryVersions/obj/Release/net5.0/TcLibraryVersions.assets.cache -------------------------------------------------------------------------------- /TcLibraryVersions/obj/TcLibraryVersions.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "C:\\CS\\C#\\TcLibraryVersions\\TcLibraryVersions\\TcLibraryVersions.csproj": {} 5 | }, 6 | "projects": { 7 | "C:\\CS\\C#\\TcLibraryVersions\\TcLibraryVersions\\TcLibraryVersions.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "C:\\CS\\C#\\TcLibraryVersions\\TcLibraryVersions\\TcLibraryVersions.csproj", 11 | "projectName": "TcLibraryVersions", 12 | "projectPath": "C:\\CS\\C#\\TcLibraryVersions\\TcLibraryVersions\\TcLibraryVersions.csproj", 13 | "packagesPath": "C:\\Users\\U7050632\\.nuget\\packages\\", 14 | "outputPath": "C:\\CS\\C#\\TcLibraryVersions\\TcLibraryVersions\\obj\\", 15 | "projectStyle": "PackageReference", 16 | "fallbackFolders": [ 17 | "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" 18 | ], 19 | "configFilePaths": [ 20 | "C:\\Users\\U7050632\\AppData\\Roaming\\NuGet\\NuGet.Config", 21 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", 22 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 23 | ], 24 | "originalTargetFrameworks": [ 25 | "net5.0" 26 | ], 27 | "sources": { 28 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 29 | "https://api.nuget.org/v3/index.json": {} 30 | }, 31 | "frameworks": { 32 | "net5.0": { 33 | "targetAlias": "net5.0", 34 | "projectReferences": {} 35 | } 36 | }, 37 | "warningProperties": { 38 | "warnAsError": [ 39 | "NU1605" 40 | ] 41 | } 42 | }, 43 | "frameworks": { 44 | "net5.0": { 45 | "targetAlias": "net5.0", 46 | "dependencies": { 47 | "CommandLineParser": { 48 | "target": "Package", 49 | "version": "[2.8.0, )" 50 | }, 51 | "LibGit2Sharp": { 52 | "target": "Package", 53 | "version": "[0.26.2, )" 54 | }, 55 | "Octokit": { 56 | "target": "Package", 57 | "version": "[0.50.0, )" 58 | }, 59 | "ToMarkdownTable": { 60 | "target": "Package", 61 | "version": "[0.2.0, )" 62 | } 63 | }, 64 | "imports": [ 65 | "net461", 66 | "net462", 67 | "net47", 68 | "net471", 69 | "net472", 70 | "net48" 71 | ], 72 | "assetTargetFallback": true, 73 | "warn": true, 74 | "frameworkReferences": { 75 | "Microsoft.NETCore.App": { 76 | "privateAssets": "all" 77 | } 78 | }, 79 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json" 80 | } 81 | } 82 | } 83 | } 84 | } -------------------------------------------------------------------------------- /TcLibraryVersions/obj/TcLibraryVersions.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\U7050632\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages 9 | PackageReference 10 | 5.11.0 11 | 12 | 13 | 14 | 15 | 16 | 17 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /TcLibraryVersions/obj/TcLibraryVersions.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | -------------------------------------------------------------------------------- /TcLibraryVersions/obj/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "h/tZ0ptaCsUqdjPPHKyAAjaF/UZkRmQ3kcgF7vPlNjwwghsfx6s3qFNrE/oUV8ML1oBYMkWYGlkOI3Ts6ZfNiA==", 4 | "success": true, 5 | "projectFilePath": "C:\\CS\\C#\\TcLibraryVersions\\TcLibraryVersions\\TcLibraryVersions.csproj", 6 | "expectedPackageFiles": [ 7 | "C:\\Users\\U7050632\\.nuget\\packages\\commandlineparser\\2.8.0\\commandlineparser.2.8.0.nupkg.sha512", 8 | "C:\\Users\\U7050632\\.nuget\\packages\\libgit2sharp\\0.26.2\\libgit2sharp.0.26.2.nupkg.sha512", 9 | "C:\\Users\\U7050632\\.nuget\\packages\\libgit2sharp.nativebinaries\\2.0.306\\libgit2sharp.nativebinaries.2.0.306.nupkg.sha512", 10 | "C:\\Users\\U7050632\\.nuget\\packages\\microsoft.netcore.platforms\\1.0.1\\microsoft.netcore.platforms.1.0.1.nupkg.sha512", 11 | "C:\\Users\\U7050632\\.nuget\\packages\\microsoft.netcore.targets\\1.0.1\\microsoft.netcore.targets.1.0.1.nupkg.sha512", 12 | "C:\\Users\\U7050632\\.nuget\\packages\\microsoft.win32.primitives\\4.0.1\\microsoft.win32.primitives.4.0.1.nupkg.sha512", 13 | "C:\\Users\\U7050632\\.nuget\\packages\\netstandard.library\\1.6.0\\netstandard.library.1.6.0.nupkg.sha512", 14 | "C:\\Users\\U7050632\\.nuget\\packages\\octokit\\0.50.0\\octokit.0.50.0.nupkg.sha512", 15 | "C:\\Users\\U7050632\\.nuget\\packages\\runtime.native.system\\4.0.0\\runtime.native.system.4.0.0.nupkg.sha512", 16 | "C:\\Users\\U7050632\\.nuget\\packages\\runtime.native.system.io.compression\\4.1.0\\runtime.native.system.io.compression.4.1.0.nupkg.sha512", 17 | "C:\\Users\\U7050632\\.nuget\\packages\\runtime.native.system.net.http\\4.0.1\\runtime.native.system.net.http.4.0.1.nupkg.sha512", 18 | "C:\\Users\\U7050632\\.nuget\\packages\\runtime.native.system.security.cryptography\\4.0.0\\runtime.native.system.security.cryptography.4.0.0.nupkg.sha512", 19 | "C:\\Users\\U7050632\\.nuget\\packages\\system.appcontext\\4.1.0\\system.appcontext.4.1.0.nupkg.sha512", 20 | "C:\\Users\\U7050632\\.nuget\\packages\\system.buffers\\4.0.0\\system.buffers.4.0.0.nupkg.sha512", 21 | "C:\\Users\\U7050632\\.nuget\\packages\\system.collections\\4.0.11\\system.collections.4.0.11.nupkg.sha512", 22 | "C:\\Users\\U7050632\\.nuget\\packages\\system.collections.concurrent\\4.0.12\\system.collections.concurrent.4.0.12.nupkg.sha512", 23 | "C:\\Users\\U7050632\\.nuget\\packages\\system.console\\4.0.0\\system.console.4.0.0.nupkg.sha512", 24 | "C:\\Users\\U7050632\\.nuget\\packages\\system.diagnostics.debug\\4.0.11\\system.diagnostics.debug.4.0.11.nupkg.sha512", 25 | "C:\\Users\\U7050632\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.0.0\\system.diagnostics.diagnosticsource.4.0.0.nupkg.sha512", 26 | "C:\\Users\\U7050632\\.nuget\\packages\\system.diagnostics.tools\\4.0.1\\system.diagnostics.tools.4.0.1.nupkg.sha512", 27 | "C:\\Users\\U7050632\\.nuget\\packages\\system.diagnostics.tracing\\4.1.0\\system.diagnostics.tracing.4.1.0.nupkg.sha512", 28 | "C:\\Users\\U7050632\\.nuget\\packages\\system.globalization\\4.0.11\\system.globalization.4.0.11.nupkg.sha512", 29 | "C:\\Users\\U7050632\\.nuget\\packages\\system.globalization.calendars\\4.0.1\\system.globalization.calendars.4.0.1.nupkg.sha512", 30 | "C:\\Users\\U7050632\\.nuget\\packages\\system.globalization.extensions\\4.0.1\\system.globalization.extensions.4.0.1.nupkg.sha512", 31 | "C:\\Users\\U7050632\\.nuget\\packages\\system.io\\4.1.0\\system.io.4.1.0.nupkg.sha512", 32 | "C:\\Users\\U7050632\\.nuget\\packages\\system.io.compression\\4.1.0\\system.io.compression.4.1.0.nupkg.sha512", 33 | "C:\\Users\\U7050632\\.nuget\\packages\\system.io.compression.zipfile\\4.0.1\\system.io.compression.zipfile.4.0.1.nupkg.sha512", 34 | "C:\\Users\\U7050632\\.nuget\\packages\\system.io.filesystem\\4.0.1\\system.io.filesystem.4.0.1.nupkg.sha512", 35 | "C:\\Users\\U7050632\\.nuget\\packages\\system.io.filesystem.primitives\\4.0.1\\system.io.filesystem.primitives.4.0.1.nupkg.sha512", 36 | "C:\\Users\\U7050632\\.nuget\\packages\\system.linq\\4.1.0\\system.linq.4.1.0.nupkg.sha512", 37 | "C:\\Users\\U7050632\\.nuget\\packages\\system.linq.expressions\\4.1.0\\system.linq.expressions.4.1.0.nupkg.sha512", 38 | "C:\\Users\\U7050632\\.nuget\\packages\\system.net.http\\4.1.0\\system.net.http.4.1.0.nupkg.sha512", 39 | "C:\\Users\\U7050632\\.nuget\\packages\\system.net.primitives\\4.0.11\\system.net.primitives.4.0.11.nupkg.sha512", 40 | "C:\\Users\\U7050632\\.nuget\\packages\\system.net.sockets\\4.1.0\\system.net.sockets.4.1.0.nupkg.sha512", 41 | "C:\\Users\\U7050632\\.nuget\\packages\\system.objectmodel\\4.0.12\\system.objectmodel.4.0.12.nupkg.sha512", 42 | "C:\\Users\\U7050632\\.nuget\\packages\\system.reflection\\4.1.0\\system.reflection.4.1.0.nupkg.sha512", 43 | "C:\\Users\\U7050632\\.nuget\\packages\\system.reflection.emit\\4.0.1\\system.reflection.emit.4.0.1.nupkg.sha512", 44 | "C:\\Users\\U7050632\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.0.1\\system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512", 45 | "C:\\Users\\U7050632\\.nuget\\packages\\system.reflection.emit.lightweight\\4.0.1\\system.reflection.emit.lightweight.4.0.1.nupkg.sha512", 46 | "C:\\Users\\U7050632\\.nuget\\packages\\system.reflection.extensions\\4.0.1\\system.reflection.extensions.4.0.1.nupkg.sha512", 47 | "C:\\Users\\U7050632\\.nuget\\packages\\system.reflection.primitives\\4.0.1\\system.reflection.primitives.4.0.1.nupkg.sha512", 48 | "C:\\Users\\U7050632\\.nuget\\packages\\system.reflection.typeextensions\\4.1.0\\system.reflection.typeextensions.4.1.0.nupkg.sha512", 49 | "C:\\Users\\U7050632\\.nuget\\packages\\system.resources.resourcemanager\\4.0.1\\system.resources.resourcemanager.4.0.1.nupkg.sha512", 50 | "C:\\Users\\U7050632\\.nuget\\packages\\system.runtime\\4.1.0\\system.runtime.4.1.0.nupkg.sha512", 51 | "C:\\Users\\U7050632\\.nuget\\packages\\system.runtime.extensions\\4.1.0\\system.runtime.extensions.4.1.0.nupkg.sha512", 52 | "C:\\Users\\U7050632\\.nuget\\packages\\system.runtime.handles\\4.0.1\\system.runtime.handles.4.0.1.nupkg.sha512", 53 | "C:\\Users\\U7050632\\.nuget\\packages\\system.runtime.interopservices\\4.1.0\\system.runtime.interopservices.4.1.0.nupkg.sha512", 54 | "C:\\Users\\U7050632\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.0.0\\system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512", 55 | "C:\\Users\\U7050632\\.nuget\\packages\\system.runtime.numerics\\4.0.1\\system.runtime.numerics.4.0.1.nupkg.sha512", 56 | "C:\\Users\\U7050632\\.nuget\\packages\\system.security.cryptography.algorithms\\4.2.0\\system.security.cryptography.algorithms.4.2.0.nupkg.sha512", 57 | "C:\\Users\\U7050632\\.nuget\\packages\\system.security.cryptography.cng\\4.2.0\\system.security.cryptography.cng.4.2.0.nupkg.sha512", 58 | "C:\\Users\\U7050632\\.nuget\\packages\\system.security.cryptography.csp\\4.0.0\\system.security.cryptography.csp.4.0.0.nupkg.sha512", 59 | "C:\\Users\\U7050632\\.nuget\\packages\\system.security.cryptography.encoding\\4.0.0\\system.security.cryptography.encoding.4.0.0.nupkg.sha512", 60 | "C:\\Users\\U7050632\\.nuget\\packages\\system.security.cryptography.openssl\\4.0.0\\system.security.cryptography.openssl.4.0.0.nupkg.sha512", 61 | "C:\\Users\\U7050632\\.nuget\\packages\\system.security.cryptography.primitives\\4.0.0\\system.security.cryptography.primitives.4.0.0.nupkg.sha512", 62 | "C:\\Users\\U7050632\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.1.0\\system.security.cryptography.x509certificates.4.1.0.nupkg.sha512", 63 | "C:\\Users\\U7050632\\.nuget\\packages\\system.text.encoding\\4.0.11\\system.text.encoding.4.0.11.nupkg.sha512", 64 | "C:\\Users\\U7050632\\.nuget\\packages\\system.text.encoding.extensions\\4.0.11\\system.text.encoding.extensions.4.0.11.nupkg.sha512", 65 | "C:\\Users\\U7050632\\.nuget\\packages\\system.text.regularexpressions\\4.1.0\\system.text.regularexpressions.4.1.0.nupkg.sha512", 66 | "C:\\Users\\U7050632\\.nuget\\packages\\system.threading\\4.0.11\\system.threading.4.0.11.nupkg.sha512", 67 | "C:\\Users\\U7050632\\.nuget\\packages\\system.threading.tasks\\4.0.11\\system.threading.tasks.4.0.11.nupkg.sha512", 68 | "C:\\Users\\U7050632\\.nuget\\packages\\system.threading.tasks.extensions\\4.0.0\\system.threading.tasks.extensions.4.0.0.nupkg.sha512", 69 | "C:\\Users\\U7050632\\.nuget\\packages\\system.threading.timer\\4.0.1\\system.threading.timer.4.0.1.nupkg.sha512", 70 | "C:\\Users\\U7050632\\.nuget\\packages\\system.xml.readerwriter\\4.0.11\\system.xml.readerwriter.4.0.11.nupkg.sha512", 71 | "C:\\Users\\U7050632\\.nuget\\packages\\system.xml.xdocument\\4.0.11\\system.xml.xdocument.4.0.11.nupkg.sha512", 72 | "C:\\Users\\U7050632\\.nuget\\packages\\tomarkdowntable\\0.2.0\\tomarkdowntable.0.2.0.nupkg.sha512" 73 | ], 74 | "logs": [] 75 | } -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | 2 | title: TwinCAT Library Version 3 | description: Overview of all Twincat versions and corresponding libraries. You can clone the script and update the table if you see that it's incomplete. 4 | markdown: kramdown 5 | kramdown: 6 | input: GFM 7 | include: 8 | - README.md 9 | permalink: pretty 10 | baseurl: "/TcLibraryVersions" -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | {{ site.title }} 7 | 8 | 9 | 10 | 11 | 12 |
13 |

{{ site.title }}

14 |
15 | 16 |
17 | 18 | {{ content }} 19 |
20 | 21 |
22 |

© {{ "now" | date: "%Y" }} https://github.com/RumstiBumsti

23 |
24 | 25 | -------------------------------------------------------------------------------- /assets/main.js: -------------------------------------------------------------------------------- 1 | document.addEventListener("DOMContentLoaded", (event) => { 2 | 3 | // remove unnecessary elements from README.md 4 | document.getElementById("tclibraryversions").remove(); 5 | document.querySelectorAll('main p').forEach(e => e.remove()); 6 | 7 | // search 8 | const searchInput = document.getElementById('search'); 9 | const rows = document.querySelectorAll('table tbody tr'); 10 | 11 | if (searchInput && rows.length > 0) { 12 | searchInput.addEventListener('keyup', function () { 13 | let filter = this.value.toLowerCase(); 14 | 15 | rows.forEach(row => { 16 | let cells = row.getElementsByTagName('td'); 17 | let match = Array.from(cells).some(cell => 18 | cell.textContent.toLowerCase().includes(filter) 19 | ); 20 | 21 | 22 | row.style.display = match ? '' : 'none'; 23 | }); 24 | }); 25 | } else { 26 | console.warn("Search field or table rows not found."); 27 | } 28 | }); 29 | 30 | 31 | -------------------------------------------------------------------------------- /assets/style.css: -------------------------------------------------------------------------------- 1 | 139 | -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | title: "Home" 4 | --- 5 | 6 | {% include_relative README.md %} --------------------------------------------------------------------------------