botframework-cli - @microsoft/bf-luis-cli 4.8.0-preview.107671
> npm install @microsoft/bf-luis-cli@4.8.0-preview.107671
@microsoft/bf-luis-cli
Relevant docs
Commands
bf luis
bf luis:application:create
bf luis:application:delete
bf luis:application:import
bf luis:application:list
bf luis:application:publish
bf luis:application:query
bf luis:application:rename
bf luis:application:show
bf luis:build
bf luis:convert
bf luis:endpoints:list
bf luis:generate:cs
bf luis:generate:ts
bf luis:train:run
bf luis:train:show
bf luis:translate
bf luis:version:clone
bf luis:version:delete
bf luis:version:export
bf luis:version:import
bf luis:version:list
bf luis:version:rename
bf luis
Manages LUIS assets on service and/or locally.
USAGE
$ bf luis
OPTIONS
-h, --help LUIS command help
See code: src\commands\luis\index.ts
bf luis:application:create
Creates a new LUIS application
USAGE
$ bf luis:application:create
OPTIONS
-h, --help show CLI help
--culture=culture Specify culture language (default: en-us)
--description=description Description of LUIS application
--endpoint=endpoint LUIS endpoint hostname
--name=name (required) Name of LUIS application
--save Save configuration settings from imported app (appId & endpoint)
--subscriptionKey=subscriptionKey (required) LUIS cognitive services subscription key (default:
config:LUIS:subscriptionKey)
--tokenizerVersion=tokenizerVersion Version specifies how sentences are tokenized (optional). See also:
https://aka.ms/luistokens
--versionId=versionId (required) LUIS version Id. (defaults to config:LUIS:versionId)
EXAMPLE
$ bf luis:application:create --endpoint {ENDPOINT} --subscriptionKey {SUBSCRIPTION_KEY} --name {NAME} --culture
{CULTURE}
--domain {DOMAIN} --description {DESCRIPTION} --versionId {INITIAL_VERSION_ID} --usageScenario {USAGE_SCENARIO}
See code: src\commands\luis\application\create.ts
bf luis:application:delete
Deletes a LUIS application
USAGE
$ bf luis:application:delete
OPTIONS
-h, --help show CLI help
--appId=appId (required) LUIS application Id (defaults to config:LUIS:appId)
--endpoint=endpoint LUIS endpoint hostname
--subscriptionKey=subscriptionKey (required) LUIS cognitive services subscription key (default:
config:LUIS:subscriptionKey)
EXAMPLE
$ bf luis:application:delete --appId {APP_ID} --endpoint {ENDPOINT} --subscriptionKey {SUBSCRIPTION_KEY}
See code: src\commands\luis\application\delete.ts
bf luis:application:import
Imports LUIS application from JSON or LU content.
USAGE
$ bf luis:application:import
OPTIONS
-h, --help show CLI help
-i, --in=in (required) File path containing LUIS application contents, uses STDOUT if not
specified
--endpoint=endpoint LUIS endpoint hostname
--name=name LUIS application name (optional)
--subscriptionKey=subscriptionKey (required) LUIS cognitive services subscription key (default:
config:LUIS:subscriptionKey)
EXAMPLE
$ bf luis:application:import --endpoint {ENDPOINT} --subscriptionKey {SUBSCRIPTION_KEY} --name {NAME} --in
{PATH_TO_JSON}
$ echo {SERIALIZED_JSON} | bf luis:application:import --endpoint {ENDPOINT} --subscriptionKey {SUBSCRIPTION_KEY}
--name {NAME}
See code: src\commands\luis\application\import.ts
bf luis:application:list
Lists all applications on LUIS service.
USAGE
$ bf luis:application:list
OPTIONS
-f, --force If --out flag is provided with the path to an existing file, overwrites that file
-h, --help show CLI help
-o, --out=out Output results to specified file in JSON format, otherwise prints to STDOUT
(optional)
--endpoint=endpoint LUIS endpoint hostname
--skip=skip Number of entries to skip. Default: 0 (no skips)
--subscriptionKey=subscriptionKey (required) LUIS cognitive services subscription key (default:
config:LUIS:subscriptionKey)
--take=take Number of etnries to return. Maximum page size is 500. Default: 100
EXAMPLE
$ bf luis:application:list --endpoint {ENDPOINT} --subscriptionKey {SUBSCRIPTION_KEY} --take 3
$ bf luis:application:list --endpoint {ENDPOINT} --subscriptionKey {SUBSCRIPTION_KEY} --out {PATH_TO_JSON_FILE}
See code: src\commands\luis\application\list.ts
bf luis:application:publish
Publishes application's version
USAGE
$ bf luis:application:publish
OPTIONS
-h, --help show CLI help
--appId=appId (required) LUIS application Id (defaults to config:LUIS:appId)
--direct Available only in direct version query. Do not publish to staging or production
(default: false)
--endpoint=endpoint LUIS endpoint hostname
--staging Publishes application version to Staging slot, otherwise publish to production
(default: false)
--subscriptionKey=subscriptionKey (required) LUIS cognitive services subscription key (default:
config:LUIS:subscriptionKey)
--versionId=versionId (required) Version to publish (defaults to config:LUIS:versionId)
EXAMPLE
$ bf luis:application:publish --endpoint {ENDPOINT} --subscriptionKey {SUBSCRIPTION_KEY} --versionId
{INITIAL_VERSION_ID} --appId {APP_ID} --staging {BOOLEAN}
See code: src\commands\luis\application\publish.ts
bf luis:application:query
Queries application for intent predictions
USAGE
$ bf luis:application:query
OPTIONS
-h, --help show CLI help
--appId=appId (required) LUIS application Id (defaults to config:LUIS:appId)
--endpoint=endpoint LUIS endpoint hostname
--log Logs query operation on service (default: true)
--query=query (required) Query string to predict
--staging Presence of flag targets the staging app, if no flag passed defaults to production
--subscriptionKey=subscriptionKey (required) LUIS cognitive services subscription key (default:
config:LUIS:subscriptionKey)
--timezoneOffset=timezoneOffset Timezone offset for the location of the request in minutes (optional)
--verbose Returns all intents, otherwise only top scoring intent. (default: false)
EXAMPLE
$ bf luis:application:query --endpoint {ENDPOINT} --subscriptionKey {SUBSCRIPTION_KEY} --appId {APP_ID} --query
{QUERY} --prod {BOOLEAN}
See code: src\commands\luis\application\query.ts
bf luis:application:rename
Renames the application and updates its description
USAGE
$ bf luis:application:rename
OPTIONS
-h, --help show CLI help
--appId=appId (required) LUIS application Id (defaults to config:LUIS:appId)
--description=description Description of LUIS application
--endpoint=endpoint LUIS endpoint hostname
--name=name (required) (required) Name of LUIS application
--subscriptionKey=subscriptionKey (required) LUIS cognitive services subscription key (default:
config:LUIS:subscriptionKey)
EXAMPLE
$ bf luis:application:rename --endpoint {ENDPOINT} --subscriptionKey {SUBSCRIPTION_KEY} --appId {APP_ID} --name
{NAME} --description {DESCRIPTION}
See code: src\commands\luis\application\rename.ts
bf luis:application:show
Shows application information
USAGE
$ bf luis:application:show
OPTIONS
-h, --help show CLI help
--appId=appId (required) LUIS application Id (defaults to config:LUIS:appId)
--endpoint=endpoint LUIS endpoint hostname
--subscriptionKey=subscriptionKey (required) LUIS cognitive services subscription key (default:
config:LUIS:subscriptionKey)
EXAMPLE
$ bf luis:application:show --appId {APPLICATION_ID} --endpoint {ENDPOINT} --subscriptionKey {SUBSCRIPTION_KEY}
See code: src\commands\luis\application\show.ts
bf luis:build
Build lu files to train and publish luis applications
USAGE
$ bf luis:build
OPTIONS
-f, --force Force write dialog and settings files
-h, --help show CLI help
-i, --in=in Lu file or folder
--authoringKey=authoringKey (required) LUIS authoring key
--botName=botName Bot name
--defaultCulture=defaultCulture Culture code for the content. Infer from .lu if available. Defaults to en-us
--dialog Write out .dialog files
--fallbackLocale=fallbackLocale Locale to be used at the fallback if no locale specific recognizer is found. Only
valid if --dialog is set
--log write out log messages to console
--luConfig=luConfig Path to config for lu build
--out=out Output location
--region=region LUIS authoring region
--suffix=suffix Environment name as a suffix identifier to include in LUIS app name
EXAMPLE
$ bf luis:build --in {INPUT_FILE_OR_FOLDER} --authoringKey {AUTHORING_KEY} --botName {BOT_NAME} --dialog {true}
See code: src\commands\luis\build.ts
bf luis:convert
Convert .lu file(s) to a LUIS application JSON model or vice versa
USAGE
$ bf luis:convert
OPTIONS
-f, --force If --out flag is provided with the path to an existing file, overwrites that file
-h, --help luis:convert help
-i, --in=in Source .lu file(s) or LUIS application JSON model
-o, --out=out Output file or folder name. If not specified stdout will be used as output
-r, --recurse Indicates if sub-folders need to be considered to file .lu file(s)
--culture=culture Lang code for the LUIS application
--description=description Text describing the LUIS applicaion
--log Enables log messages
--name=name Name of the LUIS application
--schemaversion=schemaversion Schema version of the LUIS application
--sort When set, intent, utterances, entities are alphabetically sorted in .lu files
--versionid=versionid Version ID of the LUIS application
See code: src\commands\luis\convert.ts
bf luis:endpoints:list
Returns available deployment endpoints
USAGE
$ bf luis:endpoints:list
OPTIONS
-f, --force If --out flag is provided with the path to an existing file, overwrites that file
-h, --help show CLI help
-o, --out=out Output results to specified file in JSON format, otherwise prints to STDOUT
(optional)
--appId=appId (required) LUIS application Id (defaults to config:LUIS:appId)
--endpoint=endpoint LUIS endpoint hostname
--subscriptionKey=subscriptionKey (required) LUIS cognitive services subscription key (default:
config:LUIS:subscriptionKey)
EXAMPLE
$ bf luis:endpoints:list --appId {APPLICATION_ID} --endpoint {ENDPOINT} --subscriptionKey {SUBSCRIPTION_KEY}
--out {PATH_TO_JSON_FILE}
See code: src\commands\luis\endpoints\list.ts
bf luis:generate:cs
Generate:cs generates a strongly typed C# source code from an exported (json) LUIS model.
USAGE
$ bf luis:generate:cs
OPTIONS
-f, --force If --out flag is provided with the path to an existing file, overwrites that file
-h, --help luis:generate:cs help
-i, --in=in Path to the file containing the LUIS application JSON model
-o, --out=out Output file or folder name. If not specified stdout will be used as output
--className=className Name of the autogenerated class (can include namespace)
See code: src\commands\luis\generate\cs.ts
bf luis:generate:ts
Generate:ts generates a strongly typed typescript source code from an exported (json) LUIS model.
USAGE
$ bf luis:generate:ts
OPTIONS
-f, --force If --out flag is provided with the path to an existing file, overwrites that file
-h, --help luis:generate:ts help
-i, --in=in Path to the file containing the LUIS application JSON model
-o, --out=out Output file or folder name. If not specified stdout will be used as output
--className=className Name of the autogenerated class
See code: src\commands\luis\generate\ts.ts
bf luis:train:run
Issues asynchronous training request for LUIS application
USAGE
$ bf luis:train:run
OPTIONS
-h, --help show CLI help
--appId=appId (required) LUIS application Id (defaults to config:LUIS:appId)
--endpoint=endpoint LUIS endpoint hostname
--subscriptionKey=subscriptionKey (required) LUIS cognitive services subscription key (default:
config:LUIS:subscriptionKey)
--versionId=versionId (required) Version to show training status (defaults to config:LUIS:versionId)
--wait Wait until training complete and then display status
EXAMPLE
$ bf luis:train:run --appId {APPLICATION_ID} --versionId {VERSION_ID} --endpoint {ENDPOINT} --subscriptionKey
{SUBSCRIPTION_KEY}
See code: src\commands\luis\train\run.ts
bf luis:train:show
Shows training status
USAGE
$ bf luis:train:show
OPTIONS
-h, --help show CLI help
--appId=appId (required) LUIS application Id (defaults to config:LUIS:appId)
--endpoint=endpoint LUIS endpoint hostname
--subscriptionKey=subscriptionKey (required) LUIS cognitive services subscription key (default:
config:LUIS:subscriptionKey)
--versionId=versionId (required) Version to show training status (defaults to config:LUIS:versionId)
EXAMPLE
$ bf luis:train:show --appId {APPLICATION_ID} --versionId {VERSION_ID} --endpoint {ENDPOINT} --subscriptionKey
{SUBSCRIPTION_KEY}
See code: src\commands\luis\train\show.ts
bf luis:translate
Translate given LUIS application JSON model or lu file(s)
USAGE
$ bf luis:translate
OPTIONS
-f, --force If --out flag is provided with the path to an existing file, overwrites that file
-h, --help luis:translate help
-i, --in=in Source .lu file(s) or LUIS application JSON model
-o, --out=out Output folder name. If not specified stdout will be used as output
-r, --recurse Indicates if sub-folders need to be considered to file .lu file(s)
--srclang=srclang Source lang code. Auto detect if missing.
--tgtlang=tgtlang (required) Comma separated list of target languages.
--translate_comments When set, machine translate comments found in .lu file
--translate_link_text When set, machine translate link description in .lu file
--translatekey=translatekey (required) Machine translation endpoint key.
See code: src\commands\luis\translate.ts
bf luis:version:clone
Creates a new version equivalent to the current snapshot of the selected application version.
USAGE
$ bf luis:version:clone
OPTIONS
-h, --help show CLI help
--appId=appId (required) LUIS application Id (defaults to config:LUIS:appId)
--endpoint=endpoint LUIS endpoint hostname
--subscriptionKey=subscriptionKey LUIS authoring (Ocp-Apim-subscription) key
--targetVersionId=targetVersionId (required) Destination version to create
--versionId=versionId (required) Source version to clone (defaults to config:LUIS:versionId)
EXAMPLE
$ bf luis:version:clone --appId {APP_ID} --versionId {VERSION_ID} --targetVersionId {TARGET_VERSION_ID}
--endpoint {ENDPOINT} --subscriptionKey {SUBSCRIPTION_KEY}
See code: src\commands\luis\version\clone.ts
bf luis:version:delete
Deletes a LUIS application version
USAGE
$ bf luis:version:delete
OPTIONS
-h, --help show CLI help
--appId=appId (required) LUIS application Id (defaults to config:LUIS:appId)
--endpoint=endpoint LUIS endpoint hostname
--subscriptionKey=subscriptionKey (required) LUIS cognitive services subscription key (default:
config:LUIS:subscriptionKey)
--versionId=versionId (required) Version to delete
EXAMPLE
$ bf luis:version:delete --appId {APP_ID} --versionId {VERSION_ID} --endpoint {ENDPOINT} --subscriptionKey
{SUBSCRIPTION_KEY}
See code: src\commands\luis\version\delete.ts
bf luis:version:export
Exports a LUIS application to JSON format
USAGE
$ bf luis:version:export
OPTIONS
-f, --force Overwrites output file if exists, otherwise creates a parallel numbered file
(optional)
-h, --help show CLI help
-o, --out=out Save exported application to specified file, uses STDOUT if not specified
(optional)
--appId=appId (required) LUIS application Id (defaults to config:LUIS:appId)
--endpoint=endpoint LUIS endpoint hostname
--subscriptionKey=subscriptionKey (required) LUIS cognitive services subscription key (default:
config:LUIS:subscriptionKey)
--versionId=versionId (required) Version to export (defaults to config:LUIS:versionId)
EXAMPLE
$ bf luis:version:export --appId {APP_ID} --versionId {VERSION_ID} --out {FILENAME.json or PATH/FILENAME.json}
--endpoint {ENDPOINT} --subscriptionKey {SUBSCRIPTION_KEY}
See code: src\commands\luis\version\export.ts
bf luis:version:import
Imports a new version into a LUIS application from JSON or LU content.
USAGE
$ bf luis:version:import
OPTIONS
-h, --help show CLI help
-i, --in=in (required) File path containing LUIS application contents, uses STDIN if not
specified
--appId=appId (required) LUIS application Id (defaults to config:LUIS:appId)
--endpoint=endpoint LUIS endpoint hostname
--subscriptionKey=subscriptionKey (required) LUIS cognitive services subscription key (default:
config:LUIS:subscriptionKey)
--versionId=versionId Version to export (defaults to config:LUIS:versionId)
EXAMPLE
$ bf luis:version:import --endpoint {ENDPOINT} --subscriptionKey {SUBSCRIPTION_KEY} --appId {APP_ID} --in
{PATH_TO_JSON} --versionId {VERSION_ID}
$ echo {SERIALIZED_JSON} | bf luis:version:import --endpoint {ENDPOINT} --subscriptionKey {SUBSCRIPTION_KEY}
--appId {APP_ID}
See code: src\commands\luis\version\import.ts
bf luis:version:list
Returns application's versions
USAGE
$ bf luis:version:list
OPTIONS
-f, --force If --out flag is provided with the path to an existing file, overwrites that file
-h, --help show CLI help
-o, --out=out Output results to specified folder and/or file in JSON format, otherwise prints to
STDOUT (optional)
--appId=appId (required) LUIS application Id (defaults to config:LUIS:appId)
--endpoint=endpoint LUIS endpoint hostname
--skip=skip Number of entries to skip. Default: 0 (no skips)
--subscriptionKey=subscriptionKey (required) LUIS cognitive services subscription key (default:
config:LUIS:subscriptionKey)
--take=take Number of etnries to return. Maximum page size is 500. Default: 100
EXAMPLE
$ bf luis:version:list --appId {APPLICATION_ID} --endpoint {ENDPOINT} --subscriptionKey {SUBSCRIPTION_KEY} --take
3
$ bf luis:version:list --endpoint {ENDPOINT} --subscriptionKey {SUBSCRIPTION_KEY} --out {PATH_TO_JSON_FILE}
See code: src\commands\luis\version\list.ts
bf luis:version:rename
Renames application version
USAGE
$ bf luis:version:rename
OPTIONS
-h, --help show CLI help
--appId=appId (required) LUIS application Id (defaults to config:LUIS:appId)
--endpoint=endpoint LUIS endpoint hostname
--newVersionId=newVersionId (required) New version id
--subscriptionKey=subscriptionKey (required) LUIS cognitive services subscription key (default:
config:LUIS:subscriptionKey)
--versionId=versionId (required) Version to update (defaults to config:LUIS:versionId)
EXAMPLE
$ bf luis:version:rename --endpoint {ENDPOINT} --subscriptionKey {SUBSCRIPTION_KEY} --appId {APP_ID} --name
{NAME} --description {DESCRIPTION}
See code: src\commands\luis\version\rename.ts
bf luis
bf luis:application:create
bf luis:application:delete
bf luis:application:import
bf luis:application:list
bf luis:application:publish
bf luis:application:query
bf luis:application:rename
bf luis:application:show
bf luis:build
bf luis:endpoints:list
bf luis:train:run
bf luis:train:show
bf luis:version:clone
bf luis:version:delete
bf luis:version:export
bf luis:version:import
bf luis:version:list
bf luis:version:rename
bf luis
Manages LUIS assets on service and/or locally.
USAGE
$ bf luis
OPTIONS
-h, --help LUIS command help
See code: src/commands/luis/index.ts
bf luis:application:create
Creates a new LUIS application
USAGE
$ bf luis:application:create
OPTIONS
-h, --help show CLI help
--culture=culture Specify culture language (default: en-us)
--description=description Description of LUIS application
--endpoint=endpoint LUIS endpoint hostname
--name=name (required) Name of LUIS application
--save Save configuration settings from imported app (appId & endpoint)
--subscriptionKey=subscriptionKey (required) LUIS cognitive services subscription key (default:
config:LUIS:subscriptionKey)
--tokenizerVersion=tokenizerVersion Version specifies how sentences are tokenized (optional). See also:
https://aka.ms/luistokens
--versionId=versionId (required) LUIS version Id. (defaults to config:LUIS:versionId)
EXAMPLE
$ bf luis:application:create --endpoint {ENDPOINT} --subscriptionKey {SUBSCRIPTION_KEY} --name {NAME} --culture
{CULTURE}
--domain {DOMAIN} --description {DESCRIPTION} --versionId {INITIAL_VERSION_ID} --usageScenario {USAGE_SCENARIO}
See code: src/commands/luis/application/create.ts
bf luis:application:delete
Deletes a LUIS application
USAGE
$ bf luis:application:delete
OPTIONS
-h, --help show CLI help
--appId=appId (required) LUIS application Id (defaults to config:LUIS:appId)
--endpoint=endpoint LUIS endpoint hostname
--subscriptionKey=subscriptionKey (required) LUIS cognitive services subscription key (default:
config:LUIS:subscriptionKey)
EXAMPLE
$ bf luis:application:delete --appId {APP_ID} --endpoint {ENDPOINT} --subscriptionKey {SUBSCRIPTION_KEY}
See code: src/commands/luis/application/delete.ts
bf luis:application:import
Imports LUIS application from JSON or LU content.
USAGE
$ bf luis:application:import
OPTIONS
-h, --help show CLI help
-i, --in=in (required) File path containing LUIS application contents, uses STDOUT if not
specified
--endpoint=endpoint LUIS endpoint hostname
--name=name LUIS application name (optional)
--subscriptionKey=subscriptionKey (required) LUIS cognitive services subscription key (default:
config:LUIS:subscriptionKey)
EXAMPLE
$ bf luis:application:import --endpoint {ENDPOINT} --subscriptionKey {SUBSCRIPTION_KEY} --name {NAME} --in
{PATH_TO_JSON}
$ echo {SERIALIZED_JSON} | bf luis:application:import --endpoint {ENDPOINT} --subscriptionKey {SUBSCRIPTION_KEY}
--name {NAME}
See code: src/commands/luis/application/import.ts
bf luis:application:list
Lists all applications on LUIS service.
USAGE
$ bf luis:application:list
OPTIONS
-f, --force If --out flag is provided with the path to an existing file, overwrites that file
-h, --help show CLI help
-o, --out=out Output results to specified file in JSON format, otherwise prints to STDOUT
(optional)
--endpoint=endpoint LUIS endpoint hostname
--skip=skip Number of entries to skip. Default: 0 (no skips)
--subscriptionKey=subscriptionKey (required) LUIS cognitive services subscription key (default:
config:LUIS:subscriptionKey)
--take=take Number of etnries to return. Maximum page size is 500. Default: 100
EXAMPLE
$ bf luis:application:list --endpoint {ENDPOINT} --subscriptionKey {SUBSCRIPTION_KEY} --take 3
$ bf luis:application:list --endpoint {ENDPOINT} --subscriptionKey {SUBSCRIPTION_KEY} --out {PATH_TO_JSON_FILE}
See code: src/commands/luis/application/list.ts
bf luis:application:publish
Publishes application's version
USAGE
$ bf luis:application:publish
OPTIONS
-h, --help show CLI help
--appId=appId (required) LUIS application Id (defaults to config:LUIS:appId)
--direct Available only in direct version query. Do not publish to staging or production
(default: false)
--endpoint=endpoint LUIS endpoint hostname
--staging Publishes application version to Staging slot, otherwise publish to production
(default: false)
--subscriptionKey=subscriptionKey (required) LUIS cognitive services subscription key (default:
config:LUIS:subscriptionKey)
--versionId=versionId (required) Version to publish (defaults to config:LUIS:versionId)
EXAMPLE
$ bf luis:application:publish --endpoint {ENDPOINT} --subscriptionKey {SUBSCRIPTION_KEY} --versionId
{INITIAL_VERSION_ID} --appId {APP_ID} --staging {BOOLEAN}
See code: src/commands/luis/application/publish.ts
bf luis:application:query
Queries application for intent predictions
USAGE
$ bf luis:application:query
OPTIONS
-h, --help show CLI help
--appId=appId (required) LUIS application Id (defaults to config:LUIS:appId)
--endpoint=endpoint LUIS endpoint hostname
--log Logs query operation on service (default: true)
--query=query (required) Query string to predict
--staging Presence of flag targets the staging app, if no flag passed defaults to production
--subscriptionKey=subscriptionKey (required) LUIS cognitive services subscription key (default:
config:LUIS:subscriptionKey)
--timezoneOffset=timezoneOffset Timezone offset for the location of the request in minutes (optional)
--verbose Returns all intents, otherwise only top scoring intent. (default: false)
EXAMPLE
$ bf luis:application:query --endpoint {ENDPOINT} --subscriptionKey {SUBSCRIPTION_KEY} --appId {APP_ID} --query
{QUERY} --prod {BOOLEAN}
See code: src/commands/luis/application/query.ts
bf luis:application:rename
Renames the application and updates its description
USAGE
$ bf luis:application:rename
OPTIONS
-h, --help show CLI help
--appId=appId (required) LUIS application Id (defaults to config:LUIS:appId)
--description=description Description of LUIS application
--endpoint=endpoint LUIS endpoint hostname
--name=name (required) (required) Name of LUIS application
--subscriptionKey=subscriptionKey (required) LUIS cognitive services subscription key (default:
config:LUIS:subscriptionKey)
EXAMPLE
$ bf luis:application:rename --endpoint {ENDPOINT} --subscriptionKey {SUBSCRIPTION_KEY} --appId {APP_ID} --name
{NAME} --description {DESCRIPTION}
See code: src/commands/luis/application/rename.ts
bf luis:application:show
Shows application information
USAGE
$ bf luis:application:show
OPTIONS
-h, --help show CLI help
--appId=appId (required) LUIS application Id (defaults to config:LUIS:appId)
--endpoint=endpoint LUIS endpoint hostname
--subscriptionKey=subscriptionKey (required) LUIS cognitive services subscription key (default:
config:LUIS:subscriptionKey)
EXAMPLE
$ bf luis:application:show --appId {APPLICATION_ID} --endpoint {ENDPOINT} --subscriptionKey {SUBSCRIPTION_KEY}
See code: src/commands/luis/application/show.ts
bf-luisbuild
Build lu files to train and publish luis applications
USAGE
$ bf luis:build
OPTIONS
-f, --force If --dialog flag is provided, overwirtes relevant dialog file
-h, --help show CLI help
-i, --in=in Lu file or folder
-o, --out=out Output file or folder name. If not specified, current directory will be used as output
--authoringKey=authoringKey (required) LUIS authoring key
--botName=botName Bot name
--defaultCulture=defaultCulture Culture code for the content. Infer from .lu if available. Defaults to en-us
--dialog Write out .dialog files
--fallbackLocale=fallbackLocale Locale to be used at the fallback if no locale specific recognizer is found. Only valid if --dialog is set
--log write out log messages to console
--luConfig=luConfig Path to config for lu build
--region=region [default: westus] LUIS authoring region [westus|westeurope|australiaeast]
--suffix=suffix Environment name as a suffix identifier to include in LUIS app name. Defaults to current logged in useralias
EXAMPLE
$ bf luis:build --in {INPUT_FILE_OR_FOLDER} --authoringKey {AUTHORING_KEY} --botName {BOT_NAME} --dialog {true}
bf luis:endpoints:list
Returns available deployment endpoints
USAGE
$ bf luis:endpoints:list
OPTIONS
-f, --force If --out flag is provided with the path to an existing file, overwrites that file
-h, --help show CLI help
-o, --out=out Output results to specified file in JSON format, otherwise prints to STDOUT
(optional)
--appId=appId (required) LUIS application Id (defaults to config:LUIS:appId)
--endpoint=endpoint LUIS endpoint hostname
--subscriptionKey=subscriptionKey (required) LUIS cognitive services subscription key (default:
config:LUIS:subscriptionKey)
EXAMPLE
$ bf luis:endpoints:list --appId {APPLICATION_ID} --endpoint {ENDPOINT} --subscriptionKey {SUBSCRIPTION_KEY}
--out {PATH_TO_JSON_FILE}
See code: src/commands/luis/endpoints/list.ts
bf luis:train:run
Issues asynchronous training request for LUIS application
USAGE
$ bf luis:train:run
OPTIONS
-h, --help show CLI help
--appId=appId (required) LUIS application Id (defaults to config:LUIS:appId)
--endpoint=endpoint LUIS endpoint hostname
--subscriptionKey=subscriptionKey (required) LUIS cognitive services subscription key (default:
config:LUIS:subscriptionKey)
--versionId=versionId (required) Version to show training status (defaults to config:LUIS:versionId)
EXAMPLE
$ bf luis:train:run --appId {APPLICATION_ID} --versionId {VERSION_ID} --endpoint {ENDPOINT} --subscriptionKey
{SUBSCRIPTION_KEY}
See code: src/commands/luis/train/run.ts
bf luis:train:show
Shows training status
USAGE
$ bf luis:train:show
OPTIONS
-h, --help show CLI help
--appId=appId (required) LUIS application Id (defaults to config:LUIS:appId)
--endpoint=endpoint LUIS endpoint hostname
--subscriptionKey=subscriptionKey (required) LUIS cognitive services subscription key (default:
config:LUIS:subscriptionKey)
--versionId=versionId (required) Version to show training status (defaults to config:LUIS:versionId)
EXAMPLE
$ bf luis:train:show --appId {APPLICATION_ID} --versionId {VERSION_ID} --endpoint {ENDPOINT} --subscriptionKey
{SUBSCRIPTION_KEY}
See code: src/commands/luis/train/show.ts
bf luis:version:clone
Creates a new version equivalent to the current snapshot of the selected application version.
USAGE
$ bf luis:version:clone
OPTIONS
-h, --help show CLI help
--appId=appId (required) LUIS application Id (defaults to config:LUIS:appId)
--endpoint=endpoint LUIS endpoint hostname
--subscriptionKey=subscriptionKey LUIS authoring (Ocp-Apim-subscription) key
--targetVersionId=targetVersionId (required) Destination version to create
--versionId=versionId (required) Source version to clone (defaults to config:LUIS:versionId)
EXAMPLE
$ bf luis:version:clone --appId {APP_ID} --versionId {VERSION_ID} --targetVersionId {TARGET_VERSION_ID}
--endpoint {ENDPOINT} --subscriptionKey {SUBSCRIPTION_KEY}
See code: src/commands/luis/version/clone.ts
bf luis:version:delete
Deletes a LUIS application version
USAGE
$ bf luis:version:delete
OPTIONS
-h, --help show CLI help
--appId=appId (required) LUIS application Id (defaults to config:LUIS:appId)
--endpoint=endpoint LUIS endpoint hostname
--subscriptionKey=subscriptionKey (required) LUIS cognitive services subscription key (default:
config:LUIS:subscriptionKey)
--versionId=versionId (required) Version to delete
EXAMPLE
$ bf luis:version:delete --appId {APP_ID} --versionId {VERSION_ID} --endpoint {ENDPOINT} --subscriptionKey
{SUBSCRIPTION_KEY}
See code: src/commands/luis/version/delete.ts
bf luis:version:export
Exports a LUIS application to JSON format
USAGE
$ bf luis:version:export
OPTIONS
-f, --force Overwrites output file if exists, otherwise creates a parallel numbered file
(optional)
-h, --help show CLI help
-o, --out=out Save exported application to specified file, uses STDOUT if not specified
(optional)
--appId=appId (required) LUIS application Id (defaults to config:LUIS:appId)
--endpoint=endpoint LUIS endpoint hostname
--subscriptionKey=subscriptionKey (required) LUIS cognitive services subscription key (default:
config:LUIS:subscriptionKey)
--versionId=versionId (required) Version to export (defaults to config:LUIS:versionId)
EXAMPLE
$ bf luis:version:export --appId {APP_ID} --versionId {VERSION_ID} --out {FILENAME.json or PATH/FILENAME.json}
--endpoint {ENDPOINT} --subscriptionKey {SUBSCRIPTION_KEY}
See code: src/commands/luis/version/export.ts
bf luis:version:import
Imports a new version into a LUIS application from JSON or LU content.
USAGE
$ bf luis:version:import
OPTIONS
-h, --help show CLI help
-i, --in=in (required) File path containing LUIS application contents, uses STDIN if not
specified
--appId=appId (required) LUIS application Id (defaults to config:LUIS:appId)
--endpoint=endpoint LUIS endpoint hostname
--subscriptionKey=subscriptionKey (required) LUIS cognitive services subscription key (default:
config:LUIS:subscriptionKey)
--versionId=versionId Version to export (defaults to config:LUIS:versionId)
EXAMPLE
$ bf luis:version:import --endpoint {ENDPOINT} --subscriptionKey {SUBSCRIPTION_KEY} --appId {APP_ID} --in
{PATH_TO_JSON} --versionId {VERSION_ID}
$ echo {SERIALIZED_JSON} | bf luis:version:import --endpoint {ENDPOINT} --subscriptionKey {SUBSCRIPTION_KEY}
--appId {APP_ID}
See code: src/commands/luis/version/import.ts
bf luis:version:list
Returns application's versions
USAGE
$ bf luis:version:list
OPTIONS
-f, --force If --out flag is provided with the path to an existing file, overwrites that file
-h, --help show CLI help
-o, --out=out Output results to specified folder and/or file in JSON format, otherwise prints to
STDOUT (optional)
--appId=appId (required) LUIS application Id (defaults to config:LUIS:appId)
--endpoint=endpoint LUIS endpoint hostname
--skip=skip Number of entries to skip. Default: 0 (no skips)
--subscriptionKey=subscriptionKey (required) LUIS cognitive services subscription key (default:
config:LUIS:subscriptionKey)
--take=take Number of etnries to return. Maximum page size is 500. Default: 100
EXAMPLE
$ bf luis:version:list --appId {APPLICATION_ID} --endpoint {ENDPOINT} --subscriptionKey {SUBSCRIPTION_KEY} --take
3
$ bf luis:version:list --endpoint {ENDPOINT} --subscriptionKey {SUBSCRIPTION_KEY} --out {PATH_TO_JSON_FILE}
See code: src/commands/luis/version/list.ts
bf luis:version:rename
Renames application version
USAGE
$ bf luis:version:rename
OPTIONS
-h, --help show CLI help
--appId=appId (required) LUIS application Id (defaults to config:LUIS:appId)
--endpoint=endpoint LUIS endpoint hostname
--newVersionId=newVersionId (required) New version id
--subscriptionKey=subscriptionKey (required) LUIS cognitive services subscription key (default:
config:LUIS:subscriptionKey)
--versionId=versionId (required) Version to update (defaults to config:LUIS:versionId)
EXAMPLE
$ bf luis:version:rename --endpoint {ENDPOINT} --subscriptionKey {SUBSCRIPTION_KEY} --appId {APP_ID} --name
{NAME} --description {DESCRIPTION}
See code: src/commands/luis/version/rename.ts
OwnersChrisM |
|
Project URLhttps://github.com/microsoft/botframework-cli |
|
LicenseMIT |
|
Keywordsoclif-plugin |
|
Info18179 total downloads |
|
5 downloads for version 4.8.0-preview.107671 | |
Download (20.78 KB) | |
Dependencies@azure/cognitiveservices-luis-authoring@4.0.0-preview.1, @azure/cognitiveservices-luis-runtime@5.0.0, @azure/ms-rest-azure-js@2.0.1, @microsoft/bf-cli-command@4.8.0-preview.107671, @microsoft/bf-lu@4.8.0-preview.107671, @oclif/command@~1.5.19, @oclif/config@~1.13.3, @oclif/errors@~1.2.2, @types/sinon@^7.5.0, cli-ux@~5.3.3, fs-extra@^8.1.0, lodash@^4.17.15, tslib@^1.10.0 |
|
Dependencies (dev)@oclif/dev-cli@~1.22.2, @oclif/plugin-help@~2.2.1, @oclif/test@~1.2.5, @oclif/tslint@~3.1.1, @types/chai@^4.2.4, @types/lodash@~4.14.146, @types/mocha@^5.2.7, @types/node@^10.17.4, @types/rimraf@^2.0.3, chai@^4.2.0, globby@^10.0.1, mocha@^6.2.2, nyc@^14.1.1, rimraf@^3.0.0, sinon@^7.5.0, ts-node@^8.4.1, tslint@^5.20.1, typescript@^3.5.3, uuid@^3.3.3 |
Package history
Version | Size | Last updated | Downloads | Mirrored? | |||
---|---|---|---|---|---|---|---|
4.10.0-preview.148066 | 43.16 KB | Mon, 20 Jul 2020 04:04:25 GMT | 17 | ||||
4.10.0-preview.147978 | 43.16 KB | Sun, 19 Jul 2020 00:24:11 GMT | 5 | ||||
4.10.0-preview.147970 | 43.16 KB | Sat, 18 Jul 2020 22:21:18 GMT | 5 | ||||
4.10.0-preview.147574 | 43.16 KB | Fri, 17 Jul 2020 09:02:46 GMT | 6 | ||||
4.10.0-preview.147526 | 43.16 KB | Fri, 17 Jul 2020 07:10:07 GMT | 6 | ||||
4.10.0-preview.146618 | 43.04 KB | Wed, 15 Jul 2020 02:07:38 GMT | 10 | ||||
4.10.0-preview.146521 | 43.04 KB | Tue, 14 Jul 2020 21:32:23 GMT | 5 | ||||
4.10.0-preview.146517 | 43.04 KB | Tue, 14 Jul 2020 21:28:22 GMT | 5 | ||||
4.10.0-preview.146512 | 43.04 KB | Tue, 14 Jul 2020 21:18:34 GMT | 4 | ||||
4.10.0-preview.146508 | 43.04 KB | Tue, 14 Jul 2020 21:13:20 GMT | 4 | ||||
4.10.0-preview.146502 | 43.04 KB | Tue, 14 Jul 2020 21:02:40 GMT | 4 | ||||
4.10.0-preview.146500 | 43.04 KB | Tue, 14 Jul 2020 20:59:52 GMT | 4 | ||||
4.10.0-preview.146490 | 43.04 KB | Tue, 14 Jul 2020 20:57:00 GMT | 4 | ||||
4.10.0-preview.146482 | 43.04 KB | Tue, 14 Jul 2020 20:38:22 GMT | 4 | ||||
4.10.0-preview.146469 | 43.04 KB | Tue, 14 Jul 2020 20:32:18 GMT | 4 | ||||
4.10.0-preview.146458 | 43.04 KB | Tue, 14 Jul 2020 20:23:41 GMT | 4 | ||||
4.10.0-preview.146427 | 43.04 KB | Tue, 14 Jul 2020 19:49:48 GMT | 4 | ||||
4.10.0-preview.146110 | 43.04 KB | Tue, 14 Jul 2020 04:25:45 GMT | 7 | ||||
4.10.0-preview.146107 | 43.04 KB | Tue, 14 Jul 2020 04:22:43 GMT | 4 | ||||
4.10.0-preview.146096 | 43.04 KB | Tue, 14 Jul 2020 04:19:26 GMT | 4 | ||||
4.10.0-preview.146082 | 43.04 KB | Tue, 14 Jul 2020 03:46:07 GMT | 4 | ||||
4.10.0-preview.146075 | 43.04 KB | Tue, 14 Jul 2020 03:35:49 GMT | 4 | ||||
4.10.0-preview.146067 | 43.04 KB | Tue, 14 Jul 2020 03:26:47 GMT | 4 | ||||
4.10.0-preview.146060 | 43.04 KB | Tue, 14 Jul 2020 03:08:18 GMT | 4 | ||||
4.10.0-preview.146053 | 43.04 KB | Tue, 14 Jul 2020 02:28:17 GMT | 4 | ||||
4.10.0-preview.146040 | 43.04 KB | Tue, 14 Jul 2020 01:42:12 GMT | 4 | ||||
4.10.0-preview.145500 | 43.04 KB | Fri, 10 Jul 2020 23:57:10 GMT | 17 | ||||
4.10.0-preview.143744 | 40.54 KB | Mon, 06 Jul 2020 19:58:19 GMT | 40 | ||||
4.10.0-preview.143701 | 40.54 KB | Mon, 06 Jul 2020 19:24:17 GMT | 4 | ||||
4.10.0-preview.143677 | 40.54 KB | Mon, 06 Jul 2020 18:50:16 GMT | 4 | ||||
4.10.0-preview.143194 | 40.54 KB | Thu, 02 Jul 2020 22:06:50 GMT | 19 | ||||
4.10.0-preview.143144 | 40.54 KB | Thu, 02 Jul 2020 18:15:18 GMT | 6 | ||||
4.10.0-preview.142426 | 40.65 KB | Tue, 30 Jun 2020 21:22:13 GMT | 26 | ||||
4.10.0-preview.142067 | 40.65 KB | Tue, 30 Jun 2020 03:01:52 GMT | 16 | ||||
4.10.0-preview.141983 | 40.65 KB | Mon, 29 Jun 2020 23:01:14 GMT | 6 | ||||
4.10.0-preview.141651 | 40.68 KB | Sun, 28 Jun 2020 03:25:20 GMT | 1402 | ||||
4.10.0-preview.140487 | 40.68 KB | Tue, 23 Jun 2020 19:42:22 GMT | 34 | ||||
4.10.0-preview.139191 | 40.2 KB | Thu, 18 Jun 2020 05:47:53 GMT | 50 | ||||
4.10.0-preview.138415 | 40.2 KB | Mon, 15 Jun 2020 17:21:23 GMT | 31 | ||||
4.10.0-preview.137911 | 40.2 KB | Fri, 12 Jun 2020 04:58:42 GMT | 20 | ||||
4.10.0-preview.137905 | 40.2 KB | Fri, 12 Jun 2020 04:35:33 GMT | 4 | ||||
4.10.0-preview.137831 | 39.63 KB | Fri, 12 Jun 2020 00:08:26 GMT | 4 | ||||
4.10.0-preview.137611 | 39.53 KB | Thu, 11 Jun 2020 13:33:20 GMT | 20 | ||||
4.10.0-preview.136150 | 39.48 KB | Fri, 05 Jun 2020 04:56:05 GMT | 5 | ||||
4.10.0-preview.136144 | 39.48 KB | Fri, 05 Jun 2020 03:54:18 GMT | 4 | ||||
4.10.0-preview.136133 | 39.47 KB | Fri, 05 Jun 2020 03:22:55 GMT | 4 | ||||
4.10.0-preview.136099 | 39.48 KB | Fri, 05 Jun 2020 00:08:50 GMT | 6 | ||||
4.10.0-preview.135963 | 39.73 KB | Thu, 04 Jun 2020 16:58:28 GMT | 5 | ||||
4.10.0-preview.135844 | 39.48 KB | Thu, 04 Jun 2020 09:06:11 GMT | 9 | ||||
4.10.0-preview.135815 | 39.73 KB | Thu, 04 Jun 2020 06:03:28 GMT | 6 | ||||
4.10.0-preview.135802 | 39.73 KB | Thu, 04 Jun 2020 04:57:08 GMT | 4 | ||||
4.10.0-preview.135791 | 39.72 KB | Thu, 04 Jun 2020 03:29:49 GMT | 4 | ||||
4.10.0-preview.135790 | 39.72 KB | Thu, 04 Jun 2020 03:17:33 GMT | 4 | ||||
4.10.0-preview.135789 | 39.72 KB | Thu, 04 Jun 2020 02:29:10 GMT | 4 | ||||
4.10.0-preview.135774 | 39.72 KB | Thu, 04 Jun 2020 01:45:48 GMT | 5 | ||||
4.10.0-preview.135772 | 39.72 KB | Thu, 04 Jun 2020 01:28:00 GMT | 4 | ||||
4.10.0-preview.135769 | 39.72 KB | Thu, 04 Jun 2020 01:05:06 GMT | 4 | ||||
4.10.0-preview.135768 | 39.72 KB | Thu, 04 Jun 2020 00:57:20 GMT | 4 | ||||
4.10.0-preview.135767 | 39.72 KB | Thu, 04 Jun 2020 00:53:10 GMT | 4 | ||||
4.10.0-preview.135764 | 39.72 KB | Wed, 03 Jun 2020 23:57:34 GMT | 4 | ||||
4.10.0-preview.135759 | 39.72 KB | Wed, 03 Jun 2020 23:45:03 GMT | 4 | ||||
4.10.0-preview.135753 | 39.72 KB | Wed, 03 Jun 2020 23:23:36 GMT | 5 | ||||
4.10.0-preview.135751 | 39.72 KB | Wed, 03 Jun 2020 23:15:27 GMT | 4 | ||||
4.10.0-preview.135748 | 39.72 KB | Wed, 03 Jun 2020 23:00:25 GMT | 4 | ||||
4.10.0-preview.135628 | 39.47 KB | Wed, 03 Jun 2020 12:48:54 GMT | 14 | ||||
4.10.0-preview.135338 | 39.55 KB | Tue, 02 Jun 2020 10:16:12 GMT | 16 | ||||
4.10.0-preview.135261 | 39.55 KB | Tue, 02 Jun 2020 02:20:39 GMT | 5 | ||||
4.10.0-preview.135174 | 39.68 KB | Mon, 01 Jun 2020 20:51:41 GMT | 4 | ||||
4.10.0-preview.135164 | 39.55 KB | Mon, 01 Jun 2020 20:27:24 GMT | 4 | ||||
4.10.0-preview.135136 | 39.69 KB | Mon, 01 Jun 2020 19:40:59 GMT | 4 | ||||
4.10.0-preview.135132 | 39.68 KB | Mon, 01 Jun 2020 19:09:24 GMT | 5 | ||||
4.10.0-preview.135101 | 39.68 KB | Mon, 01 Jun 2020 17:15:23 GMT | 5 | ||||
4.10.0-preview.135041 | 39.55 KB | Mon, 01 Jun 2020 09:12:20 GMT | 10 | ||||
4.10.0-preview.134817 | 39.69 KB | Sat, 30 May 2020 00:15:29 GMT | 8 | ||||
4.10.0-preview.134813 | 39.68 KB | Sat, 30 May 2020 00:05:43 GMT | 4 | ||||
4.10.0-preview.134595 | 39.55 KB | Fri, 29 May 2020 13:24:34 GMT | 11 | ||||
4.10.0-preview.134575 | 39.55 KB | Fri, 29 May 2020 10:27:23 GMT | 4 | ||||
4.10.0-preview.134227 | 39.94 KB | Thu, 28 May 2020 17:39:19 GMT | 18 | ||||
4.10.0-preview.134153 | 39.68 KB | Thu, 28 May 2020 10:10:33 GMT | 6 | ||||
4.10.0-preview.134149 | 39.68 KB | Thu, 28 May 2020 09:56:14 GMT | 5 | ||||
4.10.0-preview.134086 | 39.58 KB | Thu, 28 May 2020 06:12:05 GMT | 7 | ||||
4.10.0-preview.134075 | 39.55 KB | Thu, 28 May 2020 04:53:06 GMT | 5 | ||||
4.10.0-preview.134058 | 39.55 KB | Thu, 28 May 2020 03:24:50 GMT | 4 | ||||
4.10.0-preview.134054 | 39.69 KB | Thu, 28 May 2020 01:46:17 GMT | 4 | ||||
4.10.0-preview.133947 | 39.69 KB | Wed, 27 May 2020 18:57:35 GMT | 6 | ||||
4.10.0-preview.133866 | 39.69 KB | Wed, 27 May 2020 15:17:56 GMT | 6 | ||||
4.10.0-preview.133855 | 39.69 KB | Wed, 27 May 2020 14:11:07 GMT | 5 | ||||
4.10.0-preview.133832 | 39.68 KB | Wed, 27 May 2020 11:40:40 GMT | 6 | ||||
4.10.0-preview.133747 | 39.55 KB | Wed, 27 May 2020 08:06:11 GMT | 4 | ||||
4.10.0-preview.133665 | 39.68 KB | Tue, 26 May 2020 22:38:25 GMT | 5 | ||||
4.10.0-preview.133630 | 39.69 KB | Tue, 26 May 2020 18:58:45 GMT | 6 | ||||
4.10.0-preview.133628 | 39.81 KB | Tue, 26 May 2020 18:55:48 GMT | 4 | ||||
4.10.0-preview.133626 | 39.94 KB | Tue, 26 May 2020 18:33:24 GMT | 11 | ||||
4.10.0-preview.133621 | 39.68 KB | Tue, 26 May 2020 18:18:27 GMT | 4 | ||||
4.10.0-preview.133617 | 39.8 KB | Tue, 26 May 2020 18:09:07 GMT | 4 | ||||
4.10.0-preview.133127 | 39.8 KB | Fri, 22 May 2020 06:52:33 GMT | 15 | ||||
4.10.0-preview.133122 | 39.8 KB | Fri, 22 May 2020 06:23:24 GMT | 5 | ||||
4.10.0-preview.133098 | 39.81 KB | Fri, 22 May 2020 02:09:30 GMT | 4 | ||||
4.10.0-preview.133034 | 39.81 KB | Thu, 21 May 2020 21:26:10 GMT | 6 | ||||
4.10.0-preview.132916 | 39.68 KB | Thu, 21 May 2020 09:48:14 GMT | 9 | ||||
4.10.0-preview.132850 | 39.69 KB | Thu, 21 May 2020 03:28:53 GMT | 5 | ||||
4.10.0-preview.132843 | 39.8 KB | Thu, 21 May 2020 03:15:05 GMT | 4 | ||||
4.10.0-preview.132748 | 39.81 KB | Wed, 20 May 2020 15:24:50 GMT | 7 | ||||
4.10.0-preview.132725 | 39.7 KB | Wed, 20 May 2020 14:48:21 GMT | 4 | ||||
4.10.0-preview.132723 | 39.8 KB | Wed, 20 May 2020 14:45:21 GMT | 4 | ||||
4.10.0-preview.132622 | 39.69 KB | Wed, 20 May 2020 08:09:13 GMT | 4 | ||||
4.10.0-preview.132559 | 39.69 KB | Wed, 20 May 2020 02:51:03 GMT | 5 | ||||
4.10.0-preview.132551 | 39.8 KB | Tue, 19 May 2020 23:59:13 GMT | 5 | ||||
4.10.0-preview.132546 | 39.8 KB | Tue, 19 May 2020 23:46:03 GMT | 4 | ||||
4.10.0-preview.132543 | 39.8 KB | Tue, 19 May 2020 23:31:58 GMT | 4 | ||||
4.10.0-preview.132533 | 39.8 KB | Tue, 19 May 2020 23:03:04 GMT | 4 | ||||
4.10.0-preview.132500 | 39.8 KB | Tue, 19 May 2020 20:18:41 GMT | 4 | ||||
4.10.0-preview.132498 | 39.8 KB | Tue, 19 May 2020 19:59:05 GMT | 5 | ||||
4.10.0-preview.132495 | 39.8 KB | Tue, 19 May 2020 19:43:27 GMT | 4 | ||||
4.10.0-preview.132493 | 39.8 KB | Tue, 19 May 2020 19:32:15 GMT | 6 | ||||
4.10.0-preview.132491 | 39.8 KB | Tue, 19 May 2020 19:26:53 GMT | 4 | ||||
4.10.0-preview.132340 | 39.8 KB | Tue, 19 May 2020 08:34:27 GMT | 5 | ||||
4.10.0-preview.132328 | 39.81 KB | Tue, 19 May 2020 07:47:24 GMT | 5 | ||||
4.10.0-preview.132317 | 39.8 KB | Tue, 19 May 2020 06:05:55 GMT | 5 | ||||
4.10.0-preview.132306 | 39.71 KB | Tue, 19 May 2020 04:11:08 GMT | 4 | ||||
4.10.0-preview.132299 | 39.8 KB | Tue, 19 May 2020 03:54:51 GMT | 4 | ||||
4.10.0-preview.132297 | 39.7 KB | Tue, 19 May 2020 03:57:19 GMT | 4 | ||||
4.10.0-preview.132293 | 39.7 KB | Tue, 19 May 2020 03:33:42 GMT | 4 | ||||
4.10.0-preview.132291 | 39.8 KB | Tue, 19 May 2020 03:30:29 GMT | 4 | ||||
4.10.0-preview.132284 | 39.7 KB | Tue, 19 May 2020 03:13:42 GMT | 5 | ||||
4.10.0-preview.132282 | 39.62 KB | Tue, 19 May 2020 03:09:36 GMT | 4 | ||||
4.10.0-preview.132280 | 39.62 KB | Tue, 19 May 2020 03:01:50 GMT | 4 | ||||
4.10.0-preview.132277 | 39.72 KB | Tue, 19 May 2020 03:04:27 GMT | 4 | ||||
4.10.0-preview.132275 | 39.62 KB | Tue, 19 May 2020 02:59:25 GMT | 4 | ||||
4.10.0-preview.132273 | 39.7 KB | Tue, 19 May 2020 02:57:18 GMT | 5 | ||||
4.10.0-preview.132271 | 39.62 KB | Tue, 19 May 2020 02:52:28 GMT | 4 | ||||
4.10.0-preview.132264 | 39.62 KB | Tue, 19 May 2020 01:58:16 GMT | 4 | ||||
4.10.0-preview.132261 | 39.71 KB | Tue, 19 May 2020 02:00:38 GMT | 4 | ||||
4.10.0-preview.132253 | 39.62 KB | Tue, 19 May 2020 01:19:13 GMT | 4 | ||||
4.10.0-preview.132249 | 39.63 KB | Tue, 19 May 2020 01:29:03 GMT | 4 | ||||
4.10.0-preview.132243 | 39.7 KB | Tue, 19 May 2020 01:05:28 GMT | 4 | ||||
4.10.0-preview.132234 | 39.7 KB | Tue, 19 May 2020 00:41:49 GMT | 4 | ||||
4.10.0-preview.132170 | 39.62 KB | Mon, 18 May 2020 21:48:54 GMT | 4 | ||||
4.10.0-preview.132148 | 39.62 KB | Mon, 18 May 2020 21:02:43 GMT | 4 | ||||
4.10.0-preview.132091 | 39.62 KB | Mon, 18 May 2020 19:58:24 GMT | 5 | ||||
4.10.0-preview.131970 | 39.62 KB | Mon, 18 May 2020 14:44:29 GMT | 6 | ||||
4.10.0-preview.131939 | 39.71 KB | Mon, 18 May 2020 10:58:22 GMT | 4 | ||||
4.10.0-preview.131900 | 39.62 KB | Mon, 18 May 2020 09:12:21 GMT | 4 | ||||
4.10.0-preview.131837 | 39.62 KB | Sun, 17 May 2020 23:44:26 GMT | 7 | ||||
4.10.0-preview.131828 | 39.62 KB | Sun, 17 May 2020 22:31:02 GMT | 4 | ||||
4.10.0-preview.130904 | 39.62 KB | Thu, 14 May 2020 07:43:38 GMT | 17 | ||||
4.10.0-preview.130902 | 39.62 KB | Thu, 14 May 2020 07:40:41 GMT | 4 | ||||
4.10.0-preview.130828 | 39.62 KB | Wed, 13 May 2020 23:37:47 GMT | 6 | ||||
4.10.0-preview.130632 | 39.62 KB | Wed, 13 May 2020 09:36:00 GMT | 5 | ||||
4.10.0-preview.130622 | 39.62 KB | Wed, 13 May 2020 09:14:31 GMT | 4 | ||||
4.10.0-preview.130335 | 39.62 KB | Tue, 12 May 2020 16:37:16 GMT | 4 | ||||
4.10.0-preview.130225 | 39.62 KB | Tue, 12 May 2020 05:40:14 GMT | 10 | ||||
4.10.0-preview.130040 | 39.62 KB | Mon, 11 May 2020 20:19:59 GMT | 10 | ||||
4.10.0-preview.130037 | 39.62 KB | Mon, 11 May 2020 20:15:18 GMT | 4 | ||||
4.10.0-preview.130031 | 39.62 KB | Mon, 11 May 2020 20:02:47 GMT | 4 | ||||
4.10.0-preview.129995 | 39.62 KB | Mon, 11 May 2020 18:38:00 GMT | 4 | ||||
4.10.0-preview.129988 | 39.62 KB | Mon, 11 May 2020 18:23:46 GMT | 4 | ||||
4.10.0-preview.129609 | 39.62 KB | Fri, 08 May 2020 23:05:33 GMT | 5 | ||||
4.10.0-preview.129599 | 39.62 KB | Fri, 08 May 2020 22:44:57 GMT | 4 | ||||
4.10.0-preview.129597 | 39.62 KB | Fri, 08 May 2020 22:33:22 GMT | 4 | ||||
4.10.0-preview.129501 | 39.62 KB | Fri, 08 May 2020 18:44:01 GMT | 4 | ||||
4.10.0-preview.129498 | 39.62 KB | Fri, 08 May 2020 18:31:44 GMT | 4 | ||||
4.10.0-preview.129331 | 39.62 KB | Fri, 08 May 2020 04:28:45 GMT | 6 | ||||
4.10.0-preview.129321 | 39.62 KB | Fri, 08 May 2020 04:16:25 GMT | 4 | ||||
4.10.0-preview.129112 | 39.61 KB | Thu, 07 May 2020 14:36:23 GMT | 4 | ||||
4.10.0-preview.129110 | 39.61 KB | Thu, 07 May 2020 14:22:35 GMT | 4 | ||||
4.10.0-preview.128883 | 39.62 KB | Wed, 06 May 2020 21:17:37 GMT | 15 | ||||
4.10.0-preview.128867 | 39.62 KB | Wed, 06 May 2020 20:48:30 GMT | 4 | ||||
4.10.0-preview.128858 | 39.62 KB | Wed, 06 May 2020 20:36:29 GMT | 5 | ||||
4.10.0-preview.128844 | 39.62 KB | Wed, 06 May 2020 20:05:34 GMT | 4 | ||||
4.10.0-preview.128658 | 39.62 KB | Wed, 06 May 2020 10:32:43 GMT | 12 | ||||
4.10.0-preview.128475 | 39.61 KB | Tue, 05 May 2020 23:46:57 GMT | 5 | ||||
4.10.0-preview.128458 | 39.62 KB | Tue, 05 May 2020 23:15:14 GMT | 4 | ||||
4.10.0-preview.128431 | 39.61 KB | Tue, 05 May 2020 22:11:26 GMT | 4 | ||||
4.10.0-preview.128324 | 39.62 KB | Tue, 05 May 2020 17:30:07 GMT | 6 | ||||
4.10.0-preview.128314 | 39.62 KB | Tue, 05 May 2020 17:08:50 GMT | 5 | ||||
4.10.0-preview.128065 | 39.62 KB | Mon, 04 May 2020 22:41:52 GMT | 4 | ||||
4.10.0-preview.128060 | 39.62 KB | Mon, 04 May 2020 22:28:52 GMT | 4 | ||||
4.10.0-dev.20200730.3786d10 | 43.29 KB | Thu, 30 Jul 2020 19:22:03 GMT | 569 | ||||
4.10.0-dev.20200721.8bb21ac | 43.2 KB | Tue, 21 Jul 2020 22:24:36 GMT | 8880 | ||||
4.10.0-dev.20200721.5ee7854 | 43.2 KB | Tue, 21 Jul 2020 01:04:27 GMT | 9 | ||||
4.10.0-dev.20200720.c635ff5 | 43.2 KB | Mon, 20 Jul 2020 22:36:00 GMT | 6 | ||||
4.9.1 | 39.63 KB | Wed, 27 May 2020 22:24:54 GMT | 58 | ||||
4.9.1-RC0 | 39.65 KB | Wed, 27 May 2020 01:45:44 GMT | 8 | ||||
4.9.0 | 39.58 KB | Tue, 12 May 2020 17:47:42 GMT | 26 | ||||
4.9.0-RC6 | 39.59 KB | Fri, 08 May 2020 19:25:08 GMT | 538 | ||||
4.9.0-RC5 | 39.59 KB | Fri, 08 May 2020 04:45:41 GMT | 20 | ||||
4.9.0-RC42 | 39.6 KB | Fri, 08 May 2020 23:25:09 GMT | 54 | ||||
4.9.0-RC4 | 39.59 KB | Thu, 07 May 2020 14:49:41 GMT | 103 | ||||
4.9.0-RC3 | 39.58 KB | Wed, 06 May 2020 20:02:34 GMT | 7 | ||||
4.9.0-RC2 | 39.58 KB | Wed, 06 May 2020 02:45:54 GMT | 18 | ||||
4.9.0-RC1 | 39.58 KB | Wed, 06 May 2020 00:32:22 GMT | 7 | ||||
4.9.0-RC0 | 39.59 KB | Mon, 04 May 2020 23:01:57 GMT | 21 | ||||
4.9.0-preview.128011 | 39.61 KB | Mon, 04 May 2020 21:35:08 GMT | 5 | ||||
4.9.0-preview.127998 | 39.62 KB | Mon, 04 May 2020 21:16:20 GMT | 6 | ||||
4.9.0-preview.127614 | 26.68 KB | Sun, 03 May 2020 00:22:20 GMT | 22 | ||||
4.9.0-preview.127603 | 26.68 KB | Sun, 03 May 2020 00:10:30 GMT | 5 | ||||
4.9.0-preview.127410 | 26.5 KB | Fri, 01 May 2020 21:41:22 GMT | 7 | ||||
4.9.0-preview.127382 | 26.5 KB | Fri, 01 May 2020 21:13:49 GMT | 5 | ||||
4.9.0-preview.127303 | 26.5 KB | Fri, 01 May 2020 18:16:09 GMT | 8 | ||||
4.9.0-preview.127281 | 26.5 KB | Fri, 01 May 2020 17:54:48 GMT | 6 | ||||
4.9.0-preview.127245 | 26.5 KB | Fri, 01 May 2020 13:07:17 GMT | 7 | ||||
4.9.0-preview.127243 | 26.5 KB | Fri, 01 May 2020 12:47:23 GMT | 5 | ||||
4.9.0-preview.127174 | 25 KB | Fri, 01 May 2020 08:34:05 GMT | 5 | ||||
4.9.0-preview.126715 | 26.49 KB | Thu, 30 Apr 2020 07:49:58 GMT | 17 | ||||
4.9.0-preview.126190 | 26.49 KB | Wed, 29 Apr 2020 09:20:00 GMT | 10 | ||||
4.9.0-preview.126126 | 26.39 KB | Wed, 29 Apr 2020 06:04:11 GMT | 7 | ||||
4.9.0-preview.125721 | 25 KB | Tue, 28 Apr 2020 12:30:15 GMT | 7 | ||||
4.9.0-preview.125694 | 26.37 KB | Tue, 28 Apr 2020 10:58:41 GMT | 5 | ||||
4.9.0-preview.125659 | 26.37 KB | Tue, 28 Apr 2020 09:38:46 GMT | 5 | ||||
4.9.0-preview.125593 | 25 KB | Tue, 28 Apr 2020 03:01:46 GMT | 8 | ||||
4.9.0-preview.125589 | 25 KB | Tue, 28 Apr 2020 02:54:14 GMT | 5 | ||||
4.9.0-preview.125581 | 25 KB | Tue, 28 Apr 2020 02:19:41 GMT | 5 | ||||
4.9.0-preview.125573 | 25 KB | Tue, 28 Apr 2020 02:13:57 GMT | 5 | ||||
4.9.0-preview.125541 | 25 KB | Mon, 27 Apr 2020 23:48:28 GMT | 5 | ||||
4.9.0-preview.125510 | 26.19 KB | Mon, 27 Apr 2020 22:56:07 GMT | 6 | ||||
4.9.0-preview.125506 | 25 KB | Mon, 27 Apr 2020 22:53:51 GMT | 5 | ||||
4.9.0-preview.125437 | 26.19 KB | Mon, 27 Apr 2020 21:56:30 GMT | 5 | ||||
4.9.0-preview.125431 | 25 KB | Mon, 27 Apr 2020 21:52:59 GMT | 5 | ||||
4.9.0-preview.125414 | 25 KB | Mon, 27 Apr 2020 21:41:40 GMT | 5 | ||||
4.9.0-preview.125372 | 25 KB | Mon, 27 Apr 2020 20:34:04 GMT | 5 | ||||
4.9.0-preview.125156 | 25 KB | Mon, 27 Apr 2020 15:36:28 GMT | 5 | ||||
4.9.0-preview.125148 | 25 KB | Mon, 27 Apr 2020 15:10:52 GMT | 5 | ||||
4.9.0-preview.125096 | 26.19 KB | Mon, 27 Apr 2020 10:06:57 GMT | 5 | ||||
4.9.0-preview.124997 | 25 KB | Mon, 27 Apr 2020 03:09:59 GMT | 6 | ||||
4.9.0-preview.124995 | 25 KB | Mon, 27 Apr 2020 02:50:33 GMT | 5 | ||||
4.9.0-preview.124980 | 25 KB | Sun, 26 Apr 2020 23:58:04 GMT | 5 | ||||
4.9.0-preview.124864 | 25 KB | Sun, 26 Apr 2020 02:26:30 GMT | 7 | ||||
4.9.0-preview.124860 | 25 KB | Sun, 26 Apr 2020 02:23:52 GMT | 5 | ||||
4.9.0-preview.124854 | 24.94 KB | Sun, 26 Apr 2020 02:06:38 GMT | 5 | ||||
4.9.0-preview.124817 | 25 KB | Sun, 26 Apr 2020 02:09:30 GMT | 5 | ||||
4.9.0-preview.124763 | 24.94 KB | Sat, 25 Apr 2020 03:47:19 GMT | 5 | ||||
4.9.0-preview.124688 | 24.94 KB | Fri, 24 Apr 2020 22:43:54 GMT | 5 | ||||
4.9.0-preview.124686 | 24.94 KB | Fri, 24 Apr 2020 22:41:33 GMT | 5 | ||||
4.9.0-preview.124684 | 24.99 KB | Fri, 24 Apr 2020 22:45:54 GMT | 5 | ||||
4.9.0-preview.124678 | 24.94 KB | Fri, 24 Apr 2020 22:39:44 GMT | 5 | ||||
4.9.0-preview.124662 | 24.93 KB | Fri, 24 Apr 2020 22:37:47 GMT | 5 | ||||
4.9.0-preview.124651 | 24.94 KB | Fri, 24 Apr 2020 22:31:30 GMT | 5 | ||||
4.9.0-preview.124647 | 24.93 KB | Fri, 24 Apr 2020 22:34:16 GMT | 5 | ||||
4.9.0-preview.124643 | 24.93 KB | Fri, 24 Apr 2020 22:17:49 GMT | 5 | ||||
4.9.0-preview.124625 | 24.94 KB | Fri, 24 Apr 2020 21:52:40 GMT | 5 | ||||
4.9.0-preview.124620 | 24.94 KB | Fri, 24 Apr 2020 21:49:13 GMT | 5 | ||||
4.9.0-preview.124616 | 24.94 KB | Fri, 24 Apr 2020 21:44:32 GMT | 5 | ||||
4.9.0-preview.124612 | 24.99 KB | Fri, 24 Apr 2020 21:47:13 GMT | 5 | ||||
4.9.0-preview.124607 | 24.94 KB | Fri, 24 Apr 2020 21:42:17 GMT | 5 | ||||
4.9.0-preview.124498 | 24.94 KB | Fri, 24 Apr 2020 19:57:53 GMT | 5 | ||||
4.9.0-preview.124455 | 24.94 KB | Fri, 24 Apr 2020 19:46:42 GMT | 5 | ||||
4.9.0-preview.124452 | 24.94 KB | Fri, 24 Apr 2020 19:43:45 GMT | 5 | ||||
4.9.0-preview.124450 | 24.94 KB | Fri, 24 Apr 2020 19:38:19 GMT | 5 | ||||
4.9.0-preview.124446 | 24.94 KB | Fri, 24 Apr 2020 19:41:09 GMT | 5 | ||||
4.9.0-preview.124443 | 24.94 KB | Fri, 24 Apr 2020 19:35:16 GMT | 5 | ||||
4.9.0-preview.124441 | 24.94 KB | Fri, 24 Apr 2020 19:32:18 GMT | 5 | ||||
4.9.0-preview.124435 | 24.99 KB | Fri, 24 Apr 2020 19:27:05 GMT | 5 | ||||
4.9.0-preview.124428 | 24.94 KB | Fri, 24 Apr 2020 19:30:12 GMT | 5 | ||||
4.9.0-preview.124412 | 24.94 KB | Fri, 24 Apr 2020 18:58:17 GMT | 5 | ||||
4.9.0-preview.124245 | 24.94 KB | Fri, 24 Apr 2020 09:22:41 GMT | 5 | ||||
4.9.0-preview.123642 | 24.94 KB | Thu, 23 Apr 2020 04:02:58 GMT | 12 | ||||
4.9.0-preview.121555 | 24.94 KB | Mon, 20 Apr 2020 08:25:35 GMT | 2764 | ||||
4.9.0-preview.121508 | 24.94 KB | Mon, 20 Apr 2020 03:33:04 GMT | 9 | ||||
4.9.0-preview.121045 | 24.94 KB | Fri, 17 Apr 2020 10:42:42 GMT | 15 | ||||
4.9.0-preview.121038 | 24.94 KB | Fri, 17 Apr 2020 10:16:41 GMT | 233 | ||||
4.9.0-preview.120963 | 24.94 KB | Fri, 17 Apr 2020 07:45:09 GMT | 5 | ||||
4.9.0-preview.120961 | 24.94 KB | Fri, 17 Apr 2020 07:47:26 GMT | 6 | ||||
4.9.0-preview.120956 | 24.94 KB | Fri, 17 Apr 2020 07:24:01 GMT | 5 | ||||
4.9.0-preview.120835 | 24.94 KB | Thu, 16 Apr 2020 19:42:30 GMT | 21 | ||||
4.9.0-preview.120750 | 24.94 KB | Thu, 16 Apr 2020 11:17:44 GMT | 11 | ||||
4.9.0-preview.120468 | 24.94 KB | Wed, 15 Apr 2020 19:44:12 GMT | 13 | ||||
4.9.0-preview.120123 | 24.94 KB | Wed, 15 Apr 2020 02:25:05 GMT | 23 | ||||
4.9.0-preview.120076 | 24.94 KB | Tue, 14 Apr 2020 21:55:27 GMT | 6 | ||||
4.9.0-preview.119971 | 24.94 KB | Tue, 14 Apr 2020 10:42:33 GMT | 14 | ||||
4.9.0-preview.119967 | 24.94 KB | Tue, 14 Apr 2020 10:28:03 GMT | 4 | ||||
4.9.0-preview.119909 | 24.94 KB | Tue, 14 Apr 2020 08:43:06 GMT | 4 | ||||
4.9.0-preview.119602 | 24.94 KB | Mon, 13 Apr 2020 17:19:54 GMT | 4 | ||||
4.9.0-preview.119367 | 24.94 KB | Sat, 11 Apr 2020 23:12:16 GMT | 22 | ||||
4.9.0-preview.119292 | 24.94 KB | Sat, 11 Apr 2020 04:24:24 GMT | 11 | ||||
4.9.0-preview.118967 | 24.94 KB | Thu, 09 Apr 2020 22:58:01 GMT | 7 | ||||
4.9.0-preview.118946 | 24.94 KB | Thu, 09 Apr 2020 22:15:29 GMT | 5 | ||||
4.9.0-preview.118646 | 24.94 KB | Thu, 09 Apr 2020 02:29:58 GMT | 13 | ||||
4.9.0-preview.118453 | 24.94 KB | Wed, 08 Apr 2020 17:25:22 GMT | 4 | ||||
4.9.0-preview.118389 | 24.94 KB | Wed, 08 Apr 2020 10:07:40 GMT | 7 | ||||
4.9.0-preview.118374 | 24.94 KB | Wed, 08 Apr 2020 09:16:03 GMT | 4 | ||||
4.9.0-preview.118338 | 24.94 KB | Wed, 08 Apr 2020 05:54:59 GMT | 14 | ||||
4.9.0-preview.118312 | 24.94 KB | Wed, 08 Apr 2020 03:22:16 GMT | 4 | ||||
4.9.0-preview.118295 | 24.94 KB | Wed, 08 Apr 2020 03:06:48 GMT | 4 | ||||
4.9.0-preview.118234 | 24.94 KB | Tue, 07 Apr 2020 20:17:36 GMT | 5 | ||||
4.9.0-preview.118221 | 24.94 KB | Tue, 07 Apr 2020 19:47:04 GMT | 4 | ||||
4.9.0-preview.118175 | 24.94 KB | Tue, 07 Apr 2020 17:18:16 GMT | 5 | ||||
4.9.0-preview.118150 | 24.94 KB | Tue, 07 Apr 2020 15:46:21 GMT | 5 | ||||
4.9.0-preview.118051 | 24.94 KB | Tue, 07 Apr 2020 06:10:55 GMT | 7 | ||||
4.9.0-preview.118035 | 24.94 KB | Tue, 07 Apr 2020 03:40:25 GMT | 7 | ||||
4.9.0-preview.117662 | 24.94 KB | Fri, 03 Apr 2020 20:58:58 GMT | 9 | ||||
4.9.0-preview.117660 | 24.94 KB | Fri, 03 Apr 2020 20:43:38 GMT | 4 | ||||
4.9.0-preview.117633 | 24.95 KB | Fri, 03 Apr 2020 18:33:30 GMT | 4 | ||||
4.9.0-preview.117629 | 24.95 KB | Fri, 03 Apr 2020 18:14:07 GMT | 4 | ||||
4.9.0-preview.117333 | 24.95 KB | Thu, 02 Apr 2020 19:07:30 GMT | 7 | ||||
4.9.0-preview.117296 | 24.95 KB | Thu, 02 Apr 2020 16:29:18 GMT | 5 | ||||
4.9.0-preview.116952 | 24.95 KB | Wed, 01 Apr 2020 17:19:52 GMT | 8 | ||||
4.9.0-preview.116949 | 24.95 KB | Wed, 01 Apr 2020 17:09:00 GMT | 4 | ||||
4.9.0-preview.116790 | 24.01 KB | Tue, 31 Mar 2020 23:28:31 GMT | 5 | ||||
4.9.0-preview.116779 | 24.01 KB | Tue, 31 Mar 2020 21:52:23 GMT | 4 | ||||
4.9.0-preview.116371 | 24.01 KB | Mon, 30 Mar 2020 09:37:14 GMT | 18 | ||||
4.9.0-preview.116347 | 24.01 KB | Mon, 30 Mar 2020 08:19:08 GMT | 4 | ||||
4.9.0-preview.116327 | 24.01 KB | Mon, 30 Mar 2020 06:44:57 GMT | 5 | ||||
4.9.0-preview.116032 | 24.01 KB | Fri, 27 Mar 2020 13:21:30 GMT | 10 | ||||
4.9.0-preview.115895 | 24.01 KB | Fri, 27 Mar 2020 00:42:45 GMT | 4 | ||||
4.9.0-preview.115740 | 24.01 KB | Thu, 26 Mar 2020 09:11:19 GMT | 4 | ||||
4.9.0-preview.115726 | 24.01 KB | Thu, 26 Mar 2020 08:25:19 GMT | 5 | ||||
4.9.0-preview.115707 | 24.01 KB | Thu, 26 Mar 2020 05:57:37 GMT | 7 | ||||
4.9.0-preview.115701 | 24.01 KB | Thu, 26 Mar 2020 05:45:35 GMT | 4 | ||||
4.9.0-preview.115699 | 24.01 KB | Thu, 26 Mar 2020 05:34:40 GMT | 4 | ||||
4.9.0-preview.115697 | 24.01 KB | Thu, 26 Mar 2020 05:16:39 GMT | 4 | ||||
4.9.0-preview.115678 | 24.01 KB | Thu, 26 Mar 2020 03:26:40 GMT | 10 | ||||
4.9.0-preview.115666 | 24.01 KB | Thu, 26 Mar 2020 02:44:39 GMT | 4 | ||||
4.9.0-preview.115597 | 24.01 KB | Wed, 25 Mar 2020 21:33:04 GMT | 4 | ||||
4.9.0-preview.115574 | 24.01 KB | Wed, 25 Mar 2020 18:31:52 GMT | 11 | ||||
4.9.0-preview.115535 | 24.01 KB | Wed, 25 Mar 2020 11:46:30 GMT | 64 | ||||
4.9.0-preview.115482 | 24.01 KB | Wed, 25 Mar 2020 08:22:17 GMT | 4 | ||||
4.9.0-preview.115444 | 24.01 KB | Wed, 25 Mar 2020 05:11:51 GMT | 4 | ||||
4.9.0-preview.115409 | 24.01 KB | Wed, 25 Mar 2020 00:40:58 GMT | 5 | ||||
4.9.0-preview.115164 | 24.01 KB | Tue, 24 Mar 2020 02:33:31 GMT | 13 | ||||
4.9.0-preview.115089 | 24.95 KB | Mon, 23 Mar 2020 17:44:53 GMT | 7 | ||||
4.9.0-preview.115053 | 24.01 KB | Mon, 23 Mar 2020 12:15:43 GMT | 11 | ||||
4.9.0-preview.115016 | 24.01 KB | Mon, 23 Mar 2020 09:16:18 GMT | 5 | ||||
4.9.0-preview.114948 | 24.01 KB | Mon, 23 Mar 2020 05:42:40 GMT | 6 | ||||
4.9.0-preview.114754 | 24.01 KB | Fri, 20 Mar 2020 20:29:01 GMT | 8 | ||||
4.9.0-preview.114750 | 24.01 KB | Fri, 20 Mar 2020 19:42:55 GMT | 5 | ||||
4.9.0-preview.114724 | 24.01 KB | Fri, 20 Mar 2020 15:53:59 GMT | 7 | ||||
4.9.0-preview.114601 | 24.01 KB | Fri, 20 Mar 2020 04:30:06 GMT | 16 | ||||
4.9.0-preview.114586 | 24.01 KB | Fri, 20 Mar 2020 03:32:40 GMT | 5 | ||||
4.9.0-preview.114582 | 22.54 KB | Fri, 20 Mar 2020 03:12:04 GMT | 5 | ||||
4.9.0-preview.114573 | 24.01 KB | Fri, 20 Mar 2020 03:06:47 GMT | 5 | ||||
4.9.0-preview.114571 | 24.01 KB | Fri, 20 Mar 2020 02:48:32 GMT | 5 | ||||
4.9.0-preview.114569 | 22.54 KB | Fri, 20 Mar 2020 02:22:09 GMT | 5 | ||||
4.9.0-preview.114567 | 22.54 KB | Fri, 20 Mar 2020 02:20:20 GMT | 5 | ||||
4.9.0-preview.114564 | 22.54 KB | Fri, 20 Mar 2020 02:11:27 GMT | 5 | ||||
4.9.0-preview.114562 | 22.54 KB | Fri, 20 Mar 2020 02:09:35 GMT | 5 | ||||
4.9.0-preview.114547 | 22.54 KB | Fri, 20 Mar 2020 00:50:12 GMT | 5 | ||||
4.9.0-preview.114409 | 22.54 KB | Thu, 19 Mar 2020 11:29:48 GMT | 8 | ||||
4.9.0-preview.114373 | 24.01 KB | Thu, 19 Mar 2020 09:15:14 GMT | 5 | ||||
4.9.0-preview.114332 | 22.54 KB | Thu, 19 Mar 2020 07:47:44 GMT | 5 | ||||
4.9.0-preview.114122 | 22.54 KB | Wed, 18 Mar 2020 13:42:35 GMT | 6 | ||||
4.9.0-preview.114058 | 22.54 KB | Wed, 18 Mar 2020 09:20:30 GMT | 7 | ||||
4.9.0-preview.113914 | 22.54 KB | Tue, 17 Mar 2020 18:31:46 GMT | 10 | ||||
4.9.0-preview.113642 | 24 KB | Mon, 16 Mar 2020 18:50:46 GMT | 13 | ||||
4.9.0-preview.113566 | 22.54 KB | Mon, 16 Mar 2020 08:34:51 GMT | 5 | ||||
4.9.0-preview.113563 | 22.54 KB | Mon, 16 Mar 2020 08:30:57 GMT | 5 | ||||
4.9.0-preview.113539 | 22.54 KB | Mon, 16 Mar 2020 07:59:27 GMT | 5 | ||||
4.9.0-preview.113431 | 24 KB | Mon, 16 Mar 2020 04:09:21 GMT | 6 | ||||
4.9.0-preview.113324 | 22.54 KB | Sat, 14 Mar 2020 03:07:42 GMT | 9 | ||||
4.9.0-preview.113321 | 22.54 KB | Sat, 14 Mar 2020 02:58:11 GMT | 4 | ||||
4.9.0-preview.113245 | 22.54 KB | Fri, 13 Mar 2020 17:37:10 GMT | 5 | ||||
4.9.0-preview.113242 | 22.54 KB | Fri, 13 Mar 2020 17:24:05 GMT | 5 | ||||
4.9.0-preview.113221 | 22.54 KB | Fri, 13 Mar 2020 15:33:32 GMT | 5 | ||||
4.9.0-preview.113180 | 22.54 KB | Fri, 13 Mar 2020 10:04:36 GMT | 4 | ||||
4.9.0-preview.112947 | 22.54 KB | Thu, 12 Mar 2020 18:33:04 GMT | 6 | ||||
4.9.0-preview.112944 | 22.54 KB | Thu, 12 Mar 2020 18:23:05 GMT | 5 | ||||
4.9.0-preview.112937 | 22.54 KB | Thu, 12 Mar 2020 18:09:04 GMT | 5 | ||||
4.9.0-preview.112934 | 22.54 KB | Thu, 12 Mar 2020 17:53:17 GMT | 5 | ||||
4.9.0-preview.112930 | 22.54 KB | Thu, 12 Mar 2020 17:50:58 GMT | 4 | ||||
4.9.0-preview.112926 | 22.54 KB | Thu, 12 Mar 2020 17:27:23 GMT | 5 | ||||
4.9.0-preview.112880 | 22.27 KB | Thu, 12 Mar 2020 13:38:34 GMT | 4 | ||||
4.9.0-preview.112878 | 22.27 KB | Thu, 12 Mar 2020 13:36:32 GMT | 4 | ||||
4.9.0-preview.112739 | 22.27 KB | Thu, 12 Mar 2020 04:13:43 GMT | 6 | ||||
4.9.0-preview.112698 | 22.54 KB | Thu, 12 Mar 2020 01:22:15 GMT | 6 | ||||
4.9.0-preview.112684 | 22.27 KB | Wed, 11 Mar 2020 23:11:29 GMT | 6 | ||||
4.9.0-preview.112650 | 22.27 KB | Wed, 11 Mar 2020 19:52:24 GMT | 6 | ||||
4.9.0-preview.112648 | 22.27 KB | Wed, 11 Mar 2020 19:50:33 GMT | 4 | ||||
4.9.0-preview.112645 | 22.27 KB | Wed, 11 Mar 2020 19:38:00 GMT | 5 | ||||
4.9.0-preview.112501 | 22.27 KB | Wed, 11 Mar 2020 07:09:55 GMT | 7 | ||||
4.9.0-preview.112358 | 22.27 KB | Tue, 10 Mar 2020 21:27:39 GMT | 4 | ||||
4.9.0-preview.112355 | 22.27 KB | Tue, 10 Mar 2020 21:25:52 GMT | 4 | ||||
4.8.0 | 22.52 KB | Wed, 18 Mar 2020 16:08:54 GMT | 68 | ||||
4.8.0-RC1 | 22.53 KB | Thu, 12 Mar 2020 20:55:35 GMT | 7 | ||||
4.8.0-RC0 | 22.53 KB | Thu, 12 Mar 2020 20:43:41 GMT | 9 | ||||
4.8.0-preview.112168 | 22.27 KB | Tue, 10 Mar 2020 06:02:38 GMT | 20 | ||||
4.8.0-preview.112152 | 22.27 KB | Tue, 10 Mar 2020 04:50:10 GMT | 4 | ||||
4.8.0-preview.112138 | 22.27 KB | Tue, 10 Mar 2020 01:14:31 GMT | 5 | ||||
4.8.0-preview.112135 | 22.27 KB | Tue, 10 Mar 2020 01:04:42 GMT | 4 | ||||
4.8.0-preview.111966 | 22.27 KB | Mon, 09 Mar 2020 12:52:15 GMT | 8 | ||||
4.8.0-preview.111952 | 22.27 KB | Mon, 09 Mar 2020 10:54:54 GMT | 4 | ||||
4.8.0-preview.111947 | 21.52 KB | Mon, 09 Mar 2020 10:40:27 GMT | 4 | ||||
4.8.0-preview.111944 | 22.27 KB | Mon, 09 Mar 2020 10:38:42 GMT | 4 | ||||
4.8.0-preview.111929 | 21.52 KB | Mon, 09 Mar 2020 10:06:28 GMT | 4 | ||||
4.8.0-preview.111914 | 21.52 KB | Mon, 09 Mar 2020 09:31:37 GMT | 4 | ||||
4.8.0-preview.111905 | 23.08 KB | Mon, 09 Mar 2020 09:10:03 GMT | 4 | ||||
4.8.0-preview.111893 | 21.52 KB | Mon, 09 Mar 2020 08:14:55 GMT | 4 | ||||
4.8.0-preview.111531 | 21.52 KB | Sat, 07 Mar 2020 00:46:31 GMT | 6 | ||||
4.8.0-preview.111511 | 21.52 KB | Fri, 06 Mar 2020 23:45:50 GMT | 7 | ||||
4.8.0-preview.111443 | 21.52 KB | Fri, 06 Mar 2020 20:51:56 GMT | 5 | ||||
4.8.0-preview.111424 | 21.52 KB | Fri, 06 Mar 2020 20:08:23 GMT | 5 | ||||
4.8.0-preview.111205 | 21.52 KB | Fri, 06 Mar 2020 08:09:27 GMT | 10 | ||||
4.8.0-preview.111194 | 21.52 KB | Fri, 06 Mar 2020 07:58:56 GMT | 4 | ||||
4.8.0-preview.111182 | 21.51 KB | Fri, 06 Mar 2020 07:01:55 GMT | 5 | ||||
4.8.0-preview.110925 | 21.55 KB | Thu, 05 Mar 2020 14:00:15 GMT | 7 | ||||
4.8.0-preview.110808 | 21.56 KB | Thu, 05 Mar 2020 07:45:33 GMT | 4 | ||||
4.8.0-preview.110806 | 21.56 KB | Thu, 05 Mar 2020 07:35:06 GMT | 4 | ||||
4.8.0-preview.110803 | 21.55 KB | Thu, 05 Mar 2020 06:50:24 GMT | 4 | ||||
4.8.0-preview.110795 | 21.55 KB | Thu, 05 Mar 2020 05:31:16 GMT | 4 | ||||
4.8.0-preview.110783 | 21.56 KB | Thu, 05 Mar 2020 03:42:53 GMT | 4 | ||||
4.8.0-preview.110774 | 21.56 KB | Thu, 05 Mar 2020 02:51:54 GMT | 4 | ||||
4.8.0-preview.110708 | 21.56 KB | Wed, 04 Mar 2020 23:18:12 GMT | 4 | ||||
4.8.0-preview.110702 | 21.55 KB | Wed, 04 Mar 2020 22:52:54 GMT | 4 | ||||
4.8.0-preview.110680 | 21.56 KB | Wed, 04 Mar 2020 22:15:49 GMT | 4 | ||||
4.8.0-preview.110657 | 21.52 KB | Wed, 04 Mar 2020 20:56:35 GMT | 4 | ||||
4.8.0-preview.110506 | 21.56 KB | Wed, 04 Mar 2020 10:21:25 GMT | 7 | ||||
4.8.0-preview.110420 | 21.56 KB | Wed, 04 Mar 2020 02:12:22 GMT | 6 | ||||
4.8.0-preview.110416 | 21.56 KB | Wed, 04 Mar 2020 01:36:04 GMT | 5 | ||||
4.8.0-preview.110321 | 21.55 KB | Tue, 03 Mar 2020 23:00:28 GMT | 5 | ||||
4.8.0-preview.110312 | 21.55 KB | Tue, 03 Mar 2020 22:50:24 GMT | 5 | ||||
4.8.0-preview.110305 | 21.55 KB | Tue, 03 Mar 2020 22:08:09 GMT | 5 | ||||
4.8.0-preview.110296 | 21.56 KB | Tue, 03 Mar 2020 21:51:43 GMT | 5 | ||||
4.8.0-preview.110290 | 21.56 KB | Tue, 03 Mar 2020 21:39:12 GMT | 4 | ||||
4.8.0-preview.110284 | 21.56 KB | Tue, 03 Mar 2020 21:28:35 GMT | 5 | ||||
4.8.0-preview.110256 | 21.56 KB | Tue, 03 Mar 2020 20:52:36 GMT | 5 | ||||
4.8.0-preview.110227 | 21.56 KB | Tue, 03 Mar 2020 19:58:41 GMT | 5 | ||||
4.8.0-preview.110225 | 21.55 KB | Tue, 03 Mar 2020 19:54:59 GMT | 6 | ||||
4.8.0-preview.110216 | 21.56 KB | Tue, 03 Mar 2020 19:42:07 GMT | 5 | ||||
4.8.0-preview.110212 | 21.55 KB | Tue, 03 Mar 2020 19:40:24 GMT | 5 | ||||
4.8.0-preview.110193 | 21.55 KB | Tue, 03 Mar 2020 19:03:03 GMT | 5 | ||||
4.8.0-preview.110182 | 21.55 KB | Tue, 03 Mar 2020 18:46:55 GMT | 5 | ||||
4.8.0-preview.110172 | 21.55 KB | Tue, 03 Mar 2020 18:19:00 GMT | 5 | ||||
4.8.0-preview.110170 | 21.56 KB | Tue, 03 Mar 2020 18:14:44 GMT | 5 | ||||
4.8.0-preview.110129 | 21.48 KB | Tue, 03 Mar 2020 15:36:34 GMT | 6 | ||||
4.8.0-preview.110104 | 22.88 KB | Tue, 03 Mar 2020 12:55:43 GMT | 6 | ||||
4.8.0-preview.109911 | 21.56 KB | Mon, 02 Mar 2020 22:23:01 GMT | 8 | ||||
4.8.0-preview.109849 | 21.48 KB | Mon, 02 Mar 2020 20:42:24 GMT | 6 | ||||
4.8.0-preview.109815 | 21.48 KB | Mon, 02 Mar 2020 19:34:13 GMT | 6 | ||||
4.8.0-preview.109803 | 21.48 KB | Mon, 02 Mar 2020 19:15:08 GMT | 5 | ||||
4.8.0-preview.109800 | 21.49 KB | Mon, 02 Mar 2020 19:13:26 GMT | 5 | ||||
4.8.0-preview.109792 | 21.48 KB | Mon, 02 Mar 2020 18:47:14 GMT | 5 | ||||
4.8.0-preview.109790 | 21.49 KB | Mon, 02 Mar 2020 18:37:13 GMT | 5 | ||||
4.8.0-preview.109786 | 21.49 KB | Mon, 02 Mar 2020 18:27:34 GMT | 5 | ||||
4.8.0-preview.109649 | 21.48 KB | Mon, 02 Mar 2020 18:54:37 GMT | 6 | ||||
4.8.0-preview.109513 | 21.48 KB | Sat, 29 Feb 2020 01:07:45 GMT | 130 | ||||
4.8.0-preview.109493 | 21.48 KB | Sat, 29 Feb 2020 00:31:33 GMT | 5 | ||||
4.8.0-preview.109486 | 21.49 KB | Sat, 29 Feb 2020 00:29:44 GMT | 5 | ||||
4.8.0-preview.109470 | 21.48 KB | Fri, 28 Feb 2020 23:44:13 GMT | 6 | ||||
4.8.0-preview.109403 | 21.48 KB | Fri, 28 Feb 2020 22:17:18 GMT | 6 | ||||
4.8.0-preview.109393 | 21.48 KB | Fri, 28 Feb 2020 22:06:30 GMT | 5 | ||||
4.8.0-preview.109389 | 21.48 KB | Fri, 28 Feb 2020 21:57:57 GMT | 5 | ||||
4.8.0-preview.109382 | 21.48 KB | Fri, 28 Feb 2020 21:40:00 GMT | 5 | ||||
4.8.0-preview.109342 | 21.48 KB | Fri, 28 Feb 2020 19:32:17 GMT | 6 | ||||
4.8.0-preview.109331 | 21.48 KB | Fri, 28 Feb 2020 18:52:29 GMT | 7 | ||||
4.8.0-preview.109185 | 21.48 KB | Fri, 28 Feb 2020 01:07:21 GMT | 6 | ||||
4.8.0-preview.109004 | 21.48 KB | Thu, 27 Feb 2020 09:43:02 GMT | 6 | ||||
4.8.0-preview.108963 | 21.48 KB | Thu, 27 Feb 2020 05:22:38 GMT | 7 | ||||
4.8.0-preview.108956 | 21.48 KB | Thu, 27 Feb 2020 05:10:27 GMT | 5 | ||||
4.8.0-preview.108944 | 21.48 KB | Thu, 27 Feb 2020 03:17:13 GMT | 5 | ||||
4.8.0-preview.108891 | 21.28 KB | Thu, 27 Feb 2020 02:08:31 GMT | 5 | ||||
4.8.0-preview.108881 | 21.28 KB | Thu, 27 Feb 2020 01:58:34 GMT | 6 | ||||
4.8.0-preview.108837 | 21.27 KB | Wed, 26 Feb 2020 22:20:49 GMT | 6 | ||||
4.8.0-preview.108814 | 21.25 KB | Wed, 26 Feb 2020 18:41:24 GMT | 5 | ||||
4.8.0-preview.108693 | 20.77 KB | Wed, 26 Feb 2020 06:34:08 GMT | 5 | ||||
4.8.0-preview.108660 | 21.25 KB | Wed, 26 Feb 2020 03:40:44 GMT | 5 | ||||
4.8.0-preview.108614 | 21.25 KB | Wed, 26 Feb 2020 01:35:23 GMT | 5 | ||||
4.8.0-preview.108599 | 21.25 KB | Wed, 26 Feb 2020 01:10:01 GMT | 5 | ||||
4.8.0-preview.108514 | 20.77 KB | Tue, 25 Feb 2020 23:04:51 GMT | 5 | ||||
4.8.0-preview.108509 | 20.77 KB | Tue, 25 Feb 2020 22:47:51 GMT | 5 | ||||
4.8.0-preview.108507 | 20.77 KB | Tue, 25 Feb 2020 22:43:37 GMT | 5 | ||||
4.8.0-preview.108492 | 20.77 KB | Tue, 25 Feb 2020 22:27:44 GMT | 5 | ||||
4.8.0-preview.108471 | 20.77 KB | Tue, 25 Feb 2020 22:05:19 GMT | 5 | ||||
4.8.0-preview.108469 | 20.77 KB | Tue, 25 Feb 2020 22:07:19 GMT | 5 | ||||
4.8.0-preview.108424 | 20.77 KB | Tue, 25 Feb 2020 20:18:40 GMT | 5 | ||||
4.8.0-preview.108412 | 20.77 KB | Tue, 25 Feb 2020 20:00:54 GMT | 7 | ||||
4.8.0-preview.108366 | 20.78 KB | Tue, 25 Feb 2020 19:02:48 GMT | 5 | ||||
4.8.0-preview.108353 | 20.78 KB | Tue, 25 Feb 2020 18:31:07 GMT | 5 | ||||
4.8.0-preview.108345 | 20.77 KB | Tue, 25 Feb 2020 18:16:37 GMT | 5 | ||||
4.8.0-preview.108313 | 21.26 KB | Tue, 25 Feb 2020 11:53:10 GMT | 6 | ||||
4.8.0-preview.108236 | 20.97 KB | Tue, 25 Feb 2020 06:37:31 GMT | 8 | ||||
4.8.0-preview.108200 | 20.78 KB | Tue, 25 Feb 2020 02:36:02 GMT | 6 | ||||
4.8.0-preview.108197 | 21.26 KB | Tue, 25 Feb 2020 02:30:30 GMT | 5 | ||||
4.8.0-preview.108193 | 21.26 KB | Tue, 25 Feb 2020 02:16:00 GMT | 5 | ||||
4.8.0-preview.108190 | 20.78 KB | Tue, 25 Feb 2020 02:13:49 GMT | 5 | ||||
4.8.0-preview.108188 | 20.78 KB | Tue, 25 Feb 2020 02:11:21 GMT | 5 | ||||
4.8.0-preview.108181 | 20.97 KB | Tue, 25 Feb 2020 01:46:27 GMT | 5 | ||||
4.8.0-preview.108126 | 20.78 KB | Mon, 24 Feb 2020 22:14:53 GMT | 5 | ||||
4.8.0-preview.108117 | 20.78 KB | Mon, 24 Feb 2020 21:39:15 GMT | 5 | ||||
4.8.0-preview.108096 | 20.78 KB | Mon, 24 Feb 2020 19:59:51 GMT | 5 | ||||
4.8.0-preview.107964 | 20.78 KB | Mon, 24 Feb 2020 07:05:58 GMT | 6 | ||||
4.8.0-preview.107934 | 20.78 KB | Mon, 24 Feb 2020 02:33:31 GMT | 6 | ||||
4.8.0-preview.107889 | 20.97 KB | Sun, 23 Feb 2020 11:37:07 GMT | 5 | ||||
4.8.0-preview.107728 | 20.78 KB | Fri, 21 Feb 2020 23:07:14 GMT | 5 | ||||
4.8.0-preview.107698 | 20.78 KB | Fri, 21 Feb 2020 22:37:34 GMT | 5 | ||||
4.8.0-preview.107696 | 20.78 KB | Fri, 21 Feb 2020 22:33:17 GMT | 6 | ||||
4.8.0-preview.107676 | 20.47 KB | Fri, 21 Feb 2020 21:35:28 GMT | 5 | ||||
4.8.0-preview.107671 | 20.78 KB | Fri, 21 Feb 2020 21:10:23 GMT | 5 | ||||
4.8.0-preview.107656 | 20.47 KB | Fri, 21 Feb 2020 19:47:32 GMT | 5 | ||||
4.8.0-preview.107635 | 20.46 KB | Fri, 21 Feb 2020 18:00:33 GMT | 6 | ||||
4.8.0-preview.107585 | 20.46 KB | Fri, 21 Feb 2020 12:13:20 GMT | 5 | ||||
4.8.0-preview.107497 | 20.47 KB | Fri, 21 Feb 2020 07:04:55 GMT | 3 | ||||
4.8.0-preview.107484 | 20.47 KB | Fri, 21 Feb 2020 06:43:28 GMT | 3 | ||||
4.8.0-preview.107482 | 20.46 KB | Fri, 21 Feb 2020 06:39:00 GMT | 3 | ||||
4.8.0-preview.107307 | 20.46 KB | Thu, 20 Feb 2020 12:37:39 GMT | 3 | ||||
4.8.0-preview.107238 | 20.47 KB | Thu, 20 Feb 2020 08:45:29 GMT | 3 | ||||
4.8.0-preview.107236 | 20.47 KB | Thu, 20 Feb 2020 08:18:14 GMT | 3 | ||||
4.8.0-preview.107184 | 20.5 KB | Thu, 20 Feb 2020 03:35:27 GMT | 4 | ||||
4.8.0-preview.107179 | 20.49 KB | Thu, 20 Feb 2020 02:59:03 GMT | 3 | ||||
4.8.0-preview.107109 | 20.46 KB | Wed, 19 Feb 2020 22:48:13 GMT | 3 | ||||
4.8.0-preview.107100 | 20.47 KB | Wed, 19 Feb 2020 22:07:01 GMT | 3 | ||||
4.8.0-preview.107089 | 20.47 KB | Wed, 19 Feb 2020 21:39:21 GMT | 3 | ||||
4.8.0-preview.107049 | 20.47 KB | Wed, 19 Feb 2020 19:43:21 GMT | 3 | ||||
4.8.0-preview.107034 | 20.45 KB | Wed, 19 Feb 2020 18:51:38 GMT | 3 | ||||
4.8.0-preview.107029 | 20.42 KB | Wed, 19 Feb 2020 18:37:30 GMT | 3 | ||||
4.8.0-preview.107026 | 20.42 KB | Wed, 19 Feb 2020 17:59:45 GMT | 3 | ||||
4.8.0-preview.107024 | 20.42 KB | Wed, 19 Feb 2020 17:57:59 GMT | 3 | ||||
4.8.0-preview.107020 | 20.42 KB | Wed, 19 Feb 2020 17:45:37 GMT | 3 | ||||
4.8.0-preview.107008 | 20.45 KB | Wed, 19 Feb 2020 14:36:14 GMT | 3 | ||||
4.8.0-preview.106953 | 20.42 KB | Wed, 19 Feb 2020 09:34:54 GMT | 4 | ||||
4.8.0-preview.106951 | 20.45 KB | Wed, 19 Feb 2020 09:33:12 GMT | 3 | ||||
4.8.0-preview.106914 | 20.42 KB | Wed, 19 Feb 2020 07:09:55 GMT | 3 | ||||
4.8.0-preview.106896 | 20.42 KB | Wed, 19 Feb 2020 05:13:16 GMT | 3 | ||||
4.8.0-preview.106890 | 22.21 KB | Wed, 19 Feb 2020 04:30:32 GMT | 3 | ||||
4.8.0-preview.106879 | 20.42 KB | Wed, 19 Feb 2020 02:58:45 GMT | 3 | ||||
4.8.0-preview.106760 | 22.21 KB | Tue, 18 Feb 2020 23:41:11 GMT | 3 | ||||
4.8.0-preview.106753 | 22.21 KB | Tue, 18 Feb 2020 23:18:54 GMT | 3 | ||||
4.8.0-preview.106751 | 22.21 KB | Tue, 18 Feb 2020 23:05:52 GMT | 3 | ||||
4.8.0-preview.106749 | 12.82 KB | Tue, 18 Feb 2020 23:04:20 GMT | 3 | ||||
4.8.0-preview.106747 | 22.21 KB | Tue, 18 Feb 2020 22:48:39 GMT | 3 | ||||