From 37bec4789ac9dc5fe0908dce4df745088144e468 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Rodrigo=20Qui=C3=B1ones=20Pinilla?= Date: Thu, 19 Sep 2019 22:22:35 +0200 Subject: [PATCH 01/24] Update path for xml output, reactivated github ci --- .github/workflows/{ci-release.yml.backup => ci-release.yml} | 0 QD.Components.Semantic/QD.Components.Semantic.csproj | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename .github/workflows/{ci-release.yml.backup => ci-release.yml} (100%) diff --git a/.github/workflows/ci-release.yml.backup b/.github/workflows/ci-release.yml similarity index 100% rename from .github/workflows/ci-release.yml.backup rename to .github/workflows/ci-release.yml diff --git a/QD.Components.Semantic/QD.Components.Semantic.csproj b/QD.Components.Semantic/QD.Components.Semantic.csproj index 12e7970..bbc6a73 100644 --- a/QD.Components.Semantic/QD.Components.Semantic.csproj +++ b/QD.Components.Semantic/QD.Components.Semantic.csproj @@ -6,11 +6,11 @@ - \QD.Components.Semantic.xml + .\QD.Components.Semantic.xml - \QD.Components.Semantic.xml + .\QD.Components.Semantic.xml From 0cab2c69e4371eb4650e9b6177e916130b1be0e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Rodrigo=20Qui=C3=B1ones=20Pinilla?= Date: Sun, 22 Sep 2019 21:12:16 +0200 Subject: [PATCH 02/24] Updated CI pipeline for publish Nuget --- .azure/workflows/azure-ci-development.yml | 50 + .azure/workflows/azure-ci-release.yml | 27 +- .../workflows/configure-variables-release.sh | 22 + .github/workflows/ci-release.yml | 2 +- .../QD.Components.Semantic.csproj | 18 +- .../QD.Components.Semantic.xml | 8884 ----------------- 6 files changed, 107 insertions(+), 8896 deletions(-) create mode 100644 .azure/workflows/azure-ci-development.yml create mode 100644 .azure/workflows/configure-variables-release.sh delete mode 100644 QD.Components.Semantic/QD.Components.Semantic.xml diff --git a/.azure/workflows/azure-ci-development.yml b/.azure/workflows/azure-ci-development.yml new file mode 100644 index 0000000..4809db9 --- /dev/null +++ b/.azure/workflows/azure-ci-development.yml @@ -0,0 +1,50 @@ +# ASP.NET Core + +# Build and test ASP.NET Core projects targeting .NET Core. +# Add steps that run tests, create a NuGet package, deploy, and more: +# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core + +trigger: +- develop +- release/* + +pr: +- master +- develop + +pool: + vmImage: 'ubuntu-latest' + +variables: + buildConfiguration: 'Debug' + +steps: + +# Install .NET Core SDK +- task: DotNetCoreInstaller@1 + inputs: + version: '2.2.402' +- task: DotNetCoreInstaller@1 + inputs: + version: '3.0.100-rc1-014190' + +# SonarCloud Prepare Analysis +- task: SonarCloudPrepare@1 + inputs: + SonarCloud: 'SonarCloud Daniel127' + organization: 'daniel127' + scannerMode: 'MSBuild' + projectKey: 'semanticui-razor-components' + projectName: 'Semantic UI Razor Components' + +# Build solution +- task: DotNetCoreCLI@2 + inputs: + command: 'build' + arguments: '--configuration $(buildConfiguration)' + +# SonarCloud analyze and publish results +- task: SonarCloudAnalyze@1 +- task: SonarCloudPublish@1 + inputs: + pollingTimeoutSec: '300' \ No newline at end of file diff --git a/.azure/workflows/azure-ci-release.yml b/.azure/workflows/azure-ci-release.yml index 25203d8..f974050 100644 --- a/.azure/workflows/azure-ci-release.yml +++ b/.azure/workflows/azure-ci-release.yml @@ -6,18 +6,13 @@ trigger: - master -- develop -- release/* - -pr: -- master -- develop pool: vmImage: 'ubuntu-latest' variables: buildConfiguration: 'Release' + packageVersion: 'null' steps: @@ -48,4 +43,22 @@ steps: - task: SonarCloudAnalyze@1 - task: SonarCloudPublish@1 inputs: - pollingTimeoutSec: '300' \ No newline at end of file + pollingTimeoutSec: '300' + +- task: Bash@3 + inputs: + filePath: '.azure/workflows/configure-variables-release.sh' + +- task: DotNetCoreCLI@2 + inputs: + command: 'pack' + packagesToPack: '**/*.csproj' + nobuild: true + versioningScheme: 'byEnvVar' + versionEnvVar: '$(packageVersion)' + +- task: PublishBuildArtifacts@1 + inputs: + PathtoPublish: '$(Build.ArtifactStagingDirectory)' + ArtifactName: 'drop' + publishLocation: 'Container' \ No newline at end of file diff --git a/.azure/workflows/configure-variables-release.sh b/.azure/workflows/configure-variables-release.sh new file mode 100644 index 0000000..a54d06f --- /dev/null +++ b/.azure/workflows/configure-variables-release.sh @@ -0,0 +1,22 @@ +#!/bin/bash +function check_version() { + if [[ $1 =~ ^(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)(-((0|[1-9][0-9]*|[0-9]*[a-zA-Z-][0-9a-zA-Z-]*)(\.(0|[1-9][0-9]*|[0-9]*[a-zA-Z-][0-9a-zA-Z-]*))*))?(\+([0-9a-zA-Z-]+(\.[0-9a-zA-Z-]+)*))?$ ]]; then + echo "$1" + else + echo "" + fi +} + +echo "Configuring package version" + +gitTagVersion="$(git describe --exact-match $(Build.SourceVersion) --abbrev=0 --tags --first-parent)" +appVersion=${gitTagVersion:1} +echo "Git version: $($gitTagVersion)" +echo "App version: $($appVersion)" + +if [[ ! $(check_version ${appVersion}) ]]; then + exit 1; +fi + +echo "##vso[task.setvariable variable=packageVersion]$appVersion" +echo "Finished" \ No newline at end of file diff --git a/.github/workflows/ci-release.yml b/.github/workflows/ci-release.yml index fd759eb..6d86061 100644 --- a/.github/workflows/ci-release.yml +++ b/.github/workflows/ci-release.yml @@ -14,4 +14,4 @@ jobs: with: dotnet-version: 3.0.100-rc1-014190 - name: Build with dotnet - run: dotnet build --configuration Release + run: dotnet build --configuration Debug diff --git a/QD.Components.Semantic/QD.Components.Semantic.csproj b/QD.Components.Semantic/QD.Components.Semantic.csproj index bbc6a73..c4aec43 100644 --- a/QD.Components.Semantic/QD.Components.Semantic.csproj +++ b/QD.Components.Semantic/QD.Components.Semantic.csproj @@ -3,10 +3,12 @@ netstandard2.0 3.0 - - - - .\QD.Components.Semantic.xml + LICENSE.md + https://github.com/Daniel127/SemanticUI-Razor-Components + https://github.com/Daniel127/SemanticUI-Razor-Components + git + Components;Component;Blazor;Razor;Semantic;UI + Daniel QuiƱones @@ -19,4 +21,12 @@ + + + + True + + + + diff --git a/QD.Components.Semantic/QD.Components.Semantic.xml b/QD.Components.Semantic/QD.Components.Semantic.xml deleted file mode 100644 index b71bbb2..0000000 --- a/QD.Components.Semantic/QD.Components.Semantic.xml +++ /dev/null @@ -1,8884 +0,0 @@ - - - - QD.Components.Semantic - - - - - An element type to render as. - - - - - An element component to render as. - - - - - Child content - - - - - Other input attributes - - - - - Html Tag - - - - - CSS classes - - - - - All component attributes - - - - - Primary Button - - - - - A container limits content to a maximum width. - - - - - Container has no maximum width. - - - - - Reduce maximum width to more naturally accommodate text. - - - - - An icon is a glyph used to represent something else. - - - - - Icon can have an aria label. - - - - - Icon can have an aria label. - - - - - Formatted to appear bordered. - - - - - Icon can formatted to appear circular. - - - - - Color of the icon. - - - - - Icons can display a smaller corner icon. - - - - - Show that the icon is inactive. - - - - - Fitted, without space to left or right of Icon. - - - - - Icon can be flipped. - - - - - Formatted to have its colors inverted for contrast. - - - - - Icon can be formatted as a link. - - - - - Icon can be used as a simple loader. - - - - - Name of the icon. - - - - - Icon can rotated. - - - - - Size of the icon. - - - - - - - - Several icons can be used together as a group. - - - - - Size of the icon group. - - - - - - - - Semantic color - - - - - Text align - - - - - Semantic flag - - - - - Semantic value: ad - - - - - Semantic value: andorra - - - - - Semantic value: ae - - - - - Semantic value: united arab emirates - - - - - Semantic value: uae - - - - - Semantic value: af - - - - - Semantic value: afghanistan - - - - - Semantic value: ag - - - - - Semantic value: antigua - - - - - Semantic value: ai - - - - - Semantic value: anguilla - - - - - Semantic value: al - - - - - Semantic value: albania - - - - - Semantic value: am - - - - - Semantic value: armenia - - - - - Semantic value: an - - - - - Semantic value: netherlands antilles - - - - - Semantic value: ao - - - - - Semantic value: angola - - - - - Semantic value: ar - - - - - Semantic value: argentina - - - - - Semantic value: as - - - - - Semantic value: american samoa - - - - - Semantic value: at - - - - - Semantic value: austria - - - - - Semantic value: au - - - - - Semantic value: australia - - - - - Semantic value: aw - - - - - Semantic value: aruba - - - - - Semantic value: ax - - - - - Semantic value: aland islands - - - - - Semantic value: az - - - - - Semantic value: azerbaijan - - - - - Semantic value: ba - - - - - Semantic value: bosnia - - - - - Semantic value: bb - - - - - Semantic value: barbados - - - - - Semantic value: bd - - - - - Semantic value: bangladesh - - - - - Semantic value: be - - - - - Semantic value: belgium - - - - - Semantic value: bf - - - - - Semantic value: burkina faso - - - - - Semantic value: bg - - - - - Semantic value: bulgaria - - - - - Semantic value: bh - - - - - Semantic value: bahrain - - - - - Semantic value: bi - - - - - Semantic value: burundi - - - - - Semantic value: bj - - - - - Semantic value: benin - - - - - Semantic value: bm - - - - - Semantic value: bermuda - - - - - Semantic value: bn - - - - - Semantic value: brunei - - - - - Semantic value: bo - - - - - Semantic value: bolivia - - - - - Semantic value: br - - - - - Semantic value: brazil - - - - - Semantic value: bs - - - - - Semantic value: bahamas - - - - - Semantic value: bt - - - - - Semantic value: bhutan - - - - - Semantic value: bv - - - - - Semantic value: bouvet island - - - - - Semantic value: bw - - - - - Semantic value: botswana - - - - - Semantic value: by - - - - - Semantic value: belarus - - - - - Semantic value: bz - - - - - Semantic value: belize - - - - - Semantic value: ca - - - - - Semantic value: canada - - - - - Semantic value: cc - - - - - Semantic value: cocos islands - - - - - Semantic value: cd - - - - - Semantic value: congo - - - - - Semantic value: cf - - - - - Semantic value: central african republic - - - - - Semantic value: cg - - - - - Semantic value: congo brazzaville - - - - - Semantic value: ch - - - - - Semantic value: switzerland - - - - - Semantic value: ci - - - - - Semantic value: cote divoire - - - - - Semantic value: ck - - - - - Semantic value: cook islands - - - - - Semantic value: cl - - - - - Semantic value: chile - - - - - Semantic value: cm - - - - - Semantic value: cameroon - - - - - Semantic value: cn - - - - - Semantic value: china - - - - - Semantic value: co - - - - - Semantic value: colombia - - - - - Semantic value: cr - - - - - Semantic value: costa rica - - - - - Semantic value: cs - - - - - Semantic value: cu - - - - - Semantic value: cuba - - - - - Semantic value: cv - - - - - Semantic value: cape verde - - - - - Semantic value: cx - - - - - Semantic value: christmas island - - - - - Semantic value: cy - - - - - Semantic value: cyprus - - - - - Semantic value: cz - - - - - Semantic value: czech republic - - - - - Semantic value: de - - - - - Semantic value: germany - - - - - Semantic value: dj - - - - - Semantic value: djibouti - - - - - Semantic value: dk - - - - - Semantic value: denmark - - - - - Semantic value: dm - - - - - Semantic value: dominica - - - - - Semantic value: do - - - - - Semantic value: dominican republic - - - - - Semantic value: dz - - - - - Semantic value: algeria - - - - - Semantic value: ec - - - - - Semantic value: ecuador - - - - - Semantic value: ee - - - - - Semantic value: estonia - - - - - Semantic value: eg - - - - - Semantic value: egypt - - - - - Semantic value: eh - - - - - Semantic value: western sahara - - - - - Semantic value: er - - - - - Semantic value: eritrea - - - - - Semantic value: es - - - - - Semantic value: spain - - - - - Semantic value: et - - - - - Semantic value: ethiopia - - - - - Semantic value: eu - - - - - Semantic value: european union - - - - - Semantic value: fi - - - - - Semantic value: finland - - - - - Semantic value: fj - - - - - Semantic value: fiji - - - - - Semantic value: fk - - - - - Semantic value: falkland islands - - - - - Semantic value: fm - - - - - Semantic value: micronesia - - - - - Semantic value: fo - - - - - Semantic value: faroe islands - - - - - Semantic value: fr - - - - - Semantic value: france - - - - - Semantic value: ga - - - - - Semantic value: gabon - - - - - Semantic value: gb - - - - - Semantic value: uk - - - - - Semantic value: united kingdom - - - - - Semantic value: gd - - - - - Semantic value: grenada - - - - - Semantic value: ge - - - - - Semantic value: georgia - - - - - Semantic value: gf - - - - - Semantic value: french guiana - - - - - Semantic value: gh - - - - - Semantic value: ghana - - - - - Semantic value: gi - - - - - Semantic value: gibraltar - - - - - Semantic value: gl - - - - - Semantic value: greenland - - - - - Semantic value: gm - - - - - Semantic value: gambia - - - - - Semantic value: gn - - - - - Semantic value: guinea - - - - - Semantic value: gp - - - - - Semantic value: guadeloupe - - - - - Semantic value: gq - - - - - Semantic value: equatorial guinea - - - - - Semantic value: gr - - - - - Semantic value: greece - - - - - Semantic value: gs - - - - - Semantic value: sandwich islands - - - - - Semantic value: gt - - - - - Semantic value: guatemala - - - - - Semantic value: gu - - - - - Semantic value: guam - - - - - Semantic value: gw - - - - - Semantic value: guinea-bissau - - - - - Semantic value: gy - - - - - Semantic value: guyana - - - - - Semantic value: hk - - - - - Semantic value: hong kong - - - - - Semantic value: hm - - - - - Semantic value: heard island - - - - - Semantic value: hn - - - - - Semantic value: honduras - - - - - Semantic value: hr - - - - - Semantic value: croatia - - - - - Semantic value: ht - - - - - Semantic value: haiti - - - - - Semantic value: hu - - - - - Semantic value: hungary - - - - - Semantic value: id - - - - - Semantic value: indonesia - - - - - Semantic value: ie - - - - - Semantic value: ireland - - - - - Semantic value: il - - - - - Semantic value: israel - - - - - Semantic value: in - - - - - Semantic value: india - - - - - Semantic value: io - - - - - Semantic value: indian ocean territory - - - - - Semantic value: iq - - - - - Semantic value: iraq - - - - - Semantic value: ir - - - - - Semantic value: iran - - - - - Semantic value: is - - - - - Semantic value: iceland - - - - - Semantic value: it - - - - - Semantic value: italy - - - - - Semantic value: jm - - - - - Semantic value: jamaica - - - - - Semantic value: jo - - - - - Semantic value: jordan - - - - - Semantic value: jp - - - - - Semantic value: japan - - - - - Semantic value: ke - - - - - Semantic value: kenya - - - - - Semantic value: kg - - - - - Semantic value: kyrgyzstan - - - - - Semantic value: kh - - - - - Semantic value: cambodia - - - - - Semantic value: ki - - - - - Semantic value: kiribati - - - - - Semantic value: km - - - - - Semantic value: comoros - - - - - Semantic value: kn - - - - - Semantic value: saint kitts and nevis - - - - - Semantic value: kp - - - - - Semantic value: north korea - - - - - Semantic value: kr - - - - - Semantic value: south korea - - - - - Semantic value: kw - - - - - Semantic value: kuwait - - - - - Semantic value: ky - - - - - Semantic value: cayman islands - - - - - Semantic value: kz - - - - - Semantic value: kazakhstan - - - - - Semantic value: la - - - - - Semantic value: laos - - - - - Semantic value: lb - - - - - Semantic value: lebanon - - - - - Semantic value: lc - - - - - Semantic value: saint lucia - - - - - Semantic value: li - - - - - Semantic value: liechtenstein - - - - - Semantic value: lk - - - - - Semantic value: sri lanka - - - - - Semantic value: lr - - - - - Semantic value: liberia - - - - - Semantic value: ls - - - - - Semantic value: lesotho - - - - - Semantic value: lt - - - - - Semantic value: lithuania - - - - - Semantic value: lu - - - - - Semantic value: luxembourg - - - - - Semantic value: lv - - - - - Semantic value: latvia - - - - - Semantic value: ly - - - - - Semantic value: libya - - - - - Semantic value: ma - - - - - Semantic value: morocco - - - - - Semantic value: mc - - - - - Semantic value: monaco - - - - - Semantic value: md - - - - - Semantic value: moldova - - - - - Semantic value: me - - - - - Semantic value: montenegro - - - - - Semantic value: mg - - - - - Semantic value: madagascar - - - - - Semantic value: mh - - - - - Semantic value: marshall islands - - - - - Semantic value: mk - - - - - Semantic value: macedonia - - - - - Semantic value: ml - - - - - Semantic value: mali - - - - - Semantic value: mm - - - - - Semantic value: myanmar - - - - - Semantic value: burma - - - - - Semantic value: mn - - - - - Semantic value: mongolia - - - - - Semantic value: mo - - - - - Semantic value: macau - - - - - Semantic value: mp - - - - - Semantic value: northern mariana islands - - - - - Semantic value: mq - - - - - Semantic value: martinique - - - - - Semantic value: mr - - - - - Semantic value: mauritania - - - - - Semantic value: ms - - - - - Semantic value: montserrat - - - - - Semantic value: mt - - - - - Semantic value: malta - - - - - Semantic value: mu - - - - - Semantic value: mauritius - - - - - Semantic value: mv - - - - - Semantic value: maldives - - - - - Semantic value: mw - - - - - Semantic value: malawi - - - - - Semantic value: mx - - - - - Semantic value: mexico - - - - - Semantic value: my - - - - - Semantic value: malaysia - - - - - Semantic value: mz - - - - - Semantic value: mozambique - - - - - Semantic value: na - - - - - Semantic value: namibia - - - - - Semantic value: nc - - - - - Semantic value: new caledonia - - - - - Semantic value: ne - - - - - Semantic value: niger - - - - - Semantic value: nf - - - - - Semantic value: norfolk island - - - - - Semantic value: ng - - - - - Semantic value: nigeria - - - - - Semantic value: ni - - - - - Semantic value: nicaragua - - - - - Semantic value: nl - - - - - Semantic value: netherlands - - - - - Semantic value: no - - - - - Semantic value: norway - - - - - Semantic value: np - - - - - Semantic value: nepal - - - - - Semantic value: nr - - - - - Semantic value: nauru - - - - - Semantic value: nu - - - - - Semantic value: niue - - - - - Semantic value: nz - - - - - Semantic value: new zealand - - - - - Semantic value: om - - - - - Semantic value: oman - - - - - Semantic value: pa - - - - - Semantic value: panama - - - - - Semantic value: pe - - - - - Semantic value: peru - - - - - Semantic value: pf - - - - - Semantic value: french polynesia - - - - - Semantic value: pg - - - - - Semantic value: new guinea - - - - - Semantic value: ph - - - - - Semantic value: philippines - - - - - Semantic value: pk - - - - - Semantic value: pakistan - - - - - Semantic value: pl - - - - - Semantic value: poland - - - - - Semantic value: pm - - - - - Semantic value: saint pierre - - - - - Semantic value: pn - - - - - Semantic value: pitcairn islands - - - - - Semantic value: pr - - - - - Semantic value: puerto rico - - - - - Semantic value: ps - - - - - Semantic value: palestine - - - - - Semantic value: pt - - - - - Semantic value: portugal - - - - - Semantic value: pw - - - - - Semantic value: palau - - - - - Semantic value: py - - - - - Semantic value: paraguay - - - - - Semantic value: qa - - - - - Semantic value: qatar - - - - - Semantic value: re - - - - - Semantic value: reunion - - - - - Semantic value: ro - - - - - Semantic value: romania - - - - - Semantic value: rs - - - - - Semantic value: serbia - - - - - Semantic value: ru - - - - - Semantic value: russia - - - - - Semantic value: rw - - - - - Semantic value: rwanda - - - - - Semantic value: sa - - - - - Semantic value: saudi arabia - - - - - Semantic value: sb - - - - - Semantic value: solomon islands - - - - - Semantic value: sc - - - - - Semantic value: seychelles - - - - - Semantic value: gb sct - - - - - Semantic value: scotland - - - - - Semantic value: sd - - - - - Semantic value: sudan - - - - - Semantic value: se - - - - - Semantic value: sweden - - - - - Semantic value: sg - - - - - Semantic value: singapore - - - - - Semantic value: sh - - - - - Semantic value: saint helena - - - - - Semantic value: si - - - - - Semantic value: slovenia - - - - - Semantic value: sj - - - - - Semantic value: svalbard - - - - - Semantic value: jan mayen - - - - - Semantic value: sk - - - - - Semantic value: slovakia - - - - - Semantic value: sl - - - - - Semantic value: sierra leone - - - - - Semantic value: sm - - - - - Semantic value: san marino - - - - - Semantic value: sn - - - - - Semantic value: senegal - - - - - Semantic value: so - - - - - Semantic value: somalia - - - - - Semantic value: sr - - - - - Semantic value: suriname - - - - - Semantic value: st - - - - - Semantic value: sao tome - - - - - Semantic value: sv - - - - - Semantic value: el salvador - - - - - Semantic value: sy - - - - - Semantic value: syria - - - - - Semantic value: sz - - - - - Semantic value: swaziland - - - - - Semantic value: tc - - - - - Semantic value: caicos islands - - - - - Semantic value: td - - - - - Semantic value: chad - - - - - Semantic value: tf - - - - - Semantic value: french territories - - - - - Semantic value: tg - - - - - Semantic value: togo - - - - - Semantic value: th - - - - - Semantic value: thailand - - - - - Semantic value: tj - - - - - Semantic value: tajikistan - - - - - Semantic value: tk - - - - - Semantic value: tokelau - - - - - Semantic value: tl - - - - - Semantic value: timorleste - - - - - Semantic value: tm - - - - - Semantic value: turkmenistan - - - - - Semantic value: tn - - - - - Semantic value: tunisia - - - - - Semantic value: to - - - - - Semantic value: tonga - - - - - Semantic value: tr - - - - - Semantic value: turkey - - - - - Semantic value: tt - - - - - Semantic value: trinidad - - - - - Semantic value: tv - - - - - Semantic value: tuvalu - - - - - Semantic value: tw - - - - - Semantic value: taiwan - - - - - Semantic value: tz - - - - - Semantic value: tanzania - - - - - Semantic value: ua - - - - - Semantic value: ukraine - - - - - Semantic value: ug - - - - - Semantic value: uganda - - - - - Semantic value: um - - - - - Semantic value: us minor islands - - - - - Semantic value: us - - - - - Semantic value: america - - - - - Semantic value: united states - - - - - Semantic value: uy - - - - - Semantic value: uruguay - - - - - Semantic value: uz - - - - - Semantic value: uzbekistan - - - - - Semantic value: va - - - - - Semantic value: vatican city - - - - - Semantic value: vc - - - - - Semantic value: saint vincent - - - - - Semantic value: ve - - - - - Semantic value: venezuela - - - - - Semantic value: vg - - - - - Semantic value: british virgin islands - - - - - Semantic value: vi - - - - - Semantic value: us virgin islands - - - - - Semantic value: vn - - - - - Semantic value: vietnam - - - - - Semantic value: vu - - - - - Semantic value: vanuatu - - - - - Semantic value: gb wls - - - - - Semantic value: wales - - - - - Semantic value: wf - - - - - Semantic value: wallis and futuna - - - - - Semantic value: ws - - - - - Semantic value: samoa - - - - - Semantic value: ye - - - - - Semantic value: yemen - - - - - Semantic value: yt - - - - - Semantic value: mayotte - - - - - Semantic value: za - - - - - Semantic value: south africa - - - - - Semantic value: zm - - - - - Semantic value: zambia - - - - - Semantic value: zw - - - - - Semantic value: zimbabwe - - - - - Semantic icon - - - - - Semantic value: american sign language interpreting - - - - - Semantic value: assistive listening systems - - - - - Semantic value: audio description - - - - - Semantic value: blind - - - - - Semantic value: braille - - - - - Semantic value: closed captioning - - - - - Semantic value: closed captioning outline - - - - - Semantic value: deaf - - - - - Semantic value: low vision - - - - - Semantic value: phone volume - - - - - Semantic value: question circle - - - - - Semantic value: question circle outline - - - - - Semantic value: sign language - - - - - Semantic value: tty - - - - - Semantic value: universal access - - - - - Semantic value: wheelchair - - - - - Semantic value: angle double down - - - - - Semantic value: angle double left - - - - - Semantic value: angle double right - - - - - Semantic value: angle double up - - - - - Semantic value: angle down - - - - - Semantic value: angle left - - - - - Semantic value: angle right - - - - - Semantic value: angle up - - - - - Semantic value: arrow alternate circle down - - - - - Semantic value: arrow alternate circle down outline - - - - - Semantic value: arrow alternate circle left - - - - - Semantic value: arrow alternate circle left outline - - - - - Semantic value: arrow alternate circle right - - - - - Semantic value: arrow alternate circle right outline - - - - - Semantic value: arrow alternate circle up - - - - - Semantic value: arrow alternate circle up outline - - - - - Semantic value: arrow circle down - - - - - Semantic value: arrow circle left - - - - - Semantic value: arrow circle right - - - - - Semantic value: arrow circle up - - - - - Semantic value: arrow down - - - - - Semantic value: arrow left - - - - - Semantic value: arrow right - - - - - Semantic value: arrow up - - - - - Semantic value: arrows alternate - - - - - Semantic value: arrows alternate horizontal - - - - - Semantic value: arrows alternate vertical - - - - - Semantic value: caret down - - - - - Semantic value: caret left - - - - - Semantic value: caret right - - - - - Semantic value: caret square down - - - - - Semantic value: caret square down outline - - - - - Semantic value: caret square left - - - - - Semantic value: caret square left outline - - - - - Semantic value: caret square right - - - - - Semantic value: caret square right outline - - - - - Semantic value: caret square up - - - - - Semantic value: caret square up outline - - - - - Semantic value: caret up - - - - - Semantic value: cart arrow down - - - - - Semantic value: chart line - - - - - Semantic value: chevron circle down - - - - - Semantic value: chevron circle left - - - - - Semantic value: chevron circle right - - - - - Semantic value: chevron circle up - - - - - Semantic value: chevron down - - - - - Semantic value: chevron left - - - - - Semantic value: chevron right - - - - - Semantic value: chevron up - - - - - Semantic value: cloud download - - - - - Semantic value: cloud upload - - - - - Semantic value: download - - - - - Semantic value: exchange - - - - - Semantic value: expand arrows alternate - - - - - Semantic value: external alternate - - - - - Semantic value: external square alternate - - - - - Semantic value: hand point down - - - - - Semantic value: hand point down outline - - - - - Semantic value: hand point left - - - - - Semantic value: hand point left outline - - - - - Semantic value: hand point right - - - - - Semantic value: hand point right outline - - - - - Semantic value: hand point up - - - - - Semantic value: hand point up outline - - - - - Semantic value: hand pointer - - - - - Semantic value: hand pointer outline - - - - - Semantic value: history - - - - - Semantic value: level down alternate - - - - - Semantic value: level up alternate - - - - - Semantic value: location arrow - - - - - Semantic value: long arrow alternate down - - - - - Semantic value: long arrow alternate left - - - - - Semantic value: long arrow alternate right - - - - - Semantic value: long arrow alternate up - - - - - Semantic value: mouse pointer - - - - - Semantic value: play - - - - - Semantic value: random - - - - - Semantic value: recycle - - - - - Semantic value: redo - - - - - Semantic value: redo alternate - - - - - Semantic value: reply - - - - - Semantic value: reply all - - - - - Semantic value: retweet - - - - - Semantic value: share - - - - - Semantic value: share square - - - - - Semantic value: share square outline - - - - - Semantic value: sign-in - - - - - Semantic value: sign-out - - - - - Semantic value: sign-in alternate - - - - - Semantic value: sign-out alternate - - - - - Semantic value: sort - - - - - Semantic value: sort alphabet down - - - - - Semantic value: sort alphabet up - - - - - Semantic value: sort amount down - - - - - Semantic value: sort amount up - - - - - Semantic value: sort down - - - - - Semantic value: sort numeric down - - - - - Semantic value: sort numeric up - - - - - Semantic value: sort up - - - - - Semantic value: sync - - - - - Semantic value: sync alternate - - - - - Semantic value: text height - - - - - Semantic value: text width - - - - - Semantic value: undo - - - - - Semantic value: undo alternate - - - - - Semantic value: upload - - - - - Semantic value: zoom-in - - - - - Semantic value: zoom-out - - - - - Semantic value: backward - - - - - Semantic value: circle - - - - - Semantic value: circle outline - - - - - Semantic value: compress - - - - - Semantic value: eject - - - - - Semantic value: expand - - - - - Semantic value: fast backward - - - - - Semantic value: fast forward - - - - - Semantic value: file audio - - - - - Semantic value: file audio outline - - - - - Semantic value: file video - - - - - Semantic value: file video outline - - - - - Semantic value: film - - - - - Semantic value: forward - - - - - Semantic value: headphones - - - - - Semantic value: microphone - - - - - Semantic value: microphone slash - - - - - Semantic value: music - - - - - Semantic value: pause - - - - - Semantic value: pause circle - - - - - Semantic value: pause circle outline - - - - - Semantic value: play circle - - - - - Semantic value: play circle outline - - - - - Semantic value: podcast - - - - - Semantic value: rss - - - - - Semantic value: rss square - - - - - Semantic value: step backward - - - - - Semantic value: step forward - - - - - Semantic value: stop - - - - - Semantic value: stop circle - - - - - Semantic value: stop circle outline - - - - - Semantic value: video - - - - - Semantic value: volume down - - - - - Semantic value: volume off - - - - - Semantic value: volume up - - - - - Semantic value: address book - - - - - Semantic value: address book outline - - - - - Semantic value: address card - - - - - Semantic value: address card outline - - - - - Semantic value: archive - - - - - Semantic value: balance scale - - - - - Semantic value: birthday cake - - - - - Semantic value: book - - - - - Semantic value: briefcase - - - - - Semantic value: building - - - - - Semantic value: building outline - - - - - Semantic value: bullhorn - - - - - Semantic value: bullseye - - - - - Semantic value: calculator - - - - - Semantic value: calendar - - - - - Semantic value: calendar outline - - - - - Semantic value: calendar alternate - - - - - Semantic value: calendar alternate outline - - - - - Semantic value: certificate - - - - - Semantic value: chart area - - - - - Semantic value: chart bar - - - - - Semantic value: chart bar outline - - - - - Semantic value: chart pie - - - - - Semantic value: clipboard - - - - - Semantic value: clipboard outline - - - - - Semantic value: coffee - - - - - Semantic value: columns - - - - - Semantic value: compass - - - - - Semantic value: compass outline - - - - - Semantic value: copy - - - - - Semantic value: copy outline - - - - - Semantic value: copyright - - - - - Semantic value: copyright outline - - - - - Semantic value: cut - - - - - Semantic value: edit - - - - - Semantic value: edit outline - - - - - Semantic value: envelope - - - - - Semantic value: envelope outline - - - - - Semantic value: envelope open - - - - - Semantic value: envelope open outline - - - - - Semantic value: envelope square - - - - - Semantic value: eraser - - - - - Semantic value: fax - - - - - Semantic value: file - - - - - Semantic value: file outline - - - - - Semantic value: file alternate - - - - - Semantic value: file alternate outline - - - - - Semantic value: folder - - - - - Semantic value: folder outline - - - - - Semantic value: folder open - - - - - Semantic value: folder open outline - - - - - Semantic value: globe - - - - - Semantic value: industry - - - - - Semantic value: paperclip - - - - - Semantic value: paste - - - - - Semantic value: pen square - - - - - Semantic value: pencil alternate - - - - - Semantic value: percent - - - - - Semantic value: phone - - - - - Semantic value: phone square - - - - - Semantic value: registered - - - - - Semantic value: registered outline - - - - - Semantic value: save - - - - - Semantic value: save outline - - - - - Semantic value: sitemap - - - - - Semantic value: sticky note - - - - - Semantic value: sticky note outline - - - - - Semantic value: suitcase - - - - - Semantic value: table - - - - - Semantic value: tag - - - - - Semantic value: tags - - - - - Semantic value: tasks - - - - - Semantic value: thumbtack - - - - - Semantic value: trademark - - - - - Semantic value: chess - - - - - Semantic value: chess bishop - - - - - Semantic value: chess board - - - - - Semantic value: chess king - - - - - Semantic value: chess knight - - - - - Semantic value: chess pawn - - - - - Semantic value: chess queen - - - - - Semantic value: chess rook - - - - - Semantic value: square full - - - - - Semantic value: barcode - - - - - Semantic value: bath - - - - - Semantic value: bug - - - - - Semantic value: code - - - - - Semantic value: code branch - - - - - Semantic value: file code - - - - - Semantic value: file code outline - - - - - Semantic value: filter - - - - - Semantic value: fire extinguisher - - - - - Semantic value: keyboard - - - - - Semantic value: keyboard outline - - - - - Semantic value: microchip - - - - - Semantic value: qrcode - - - - - Semantic value: shield alternate - - - - - Semantic value: terminal - - - - - Semantic value: user secret - - - - - Semantic value: window close - - - - - Semantic value: window close outline - - - - - Semantic value: window maximize - - - - - Semantic value: window maximize outline - - - - - Semantic value: window minimize - - - - - Semantic value: window minimize outline - - - - - Semantic value: window restore - - - - - Semantic value: window restore outline - - - - - Semantic value: at - - - - - Semantic value: bell - - - - - Semantic value: bell outline - - - - - Semantic value: bell slash - - - - - Semantic value: bell slash outline - - - - - Semantic value: comment - - - - - Semantic value: comment outline - - - - - Semantic value: comment alternate - - - - - Semantic value: comment alternate outline - - - - - Semantic value: comments - - - - - Semantic value: comments outline - - - - - Semantic value: inbox - - - - - Semantic value: language - - - - - Semantic value: mobile - - - - - Semantic value: mobile alternate - - - - - Semantic value: paper plane - - - - - Semantic value: paper plane outline - - - - - Semantic value: wifi - - - - - Semantic value: desktop - - - - - Semantic value: hdd - - - - - Semantic value: hdd outline - - - - - Semantic value: laptop - - - - - Semantic value: plug - - - - - Semantic value: power off - - - - - Semantic value: print - - - - - Semantic value: server - - - - - Semantic value: tablet - - - - - Semantic value: tablet alternate - - - - - Semantic value: tv - - - - - Semantic value: dollar sign - - - - - Semantic value: euro sign - - - - - Semantic value: lira sign - - - - - Semantic value: money bill alternate - - - - - Semantic value: money bill alternate outline - - - - - Semantic value: pound sign - - - - - Semantic value: ruble sign - - - - - Semantic value: rupee sign - - - - - Semantic value: shekel sign - - - - - Semantic value: won sign - - - - - Semantic value: yen sign - - - - - Semantic value: calendar check - - - - - Semantic value: calendar check outline - - - - - Semantic value: calendar minus - - - - - Semantic value: calendar minus outline - - - - - Semantic value: calendar plus - - - - - Semantic value: calendar plus outline - - - - - Semantic value: calendar times - - - - - Semantic value: calendar times outline - - - - - Semantic value: clock - - - - - Semantic value: clock outline - - - - - Semantic value: hourglass - - - - - Semantic value: hourglass outline - - - - - Semantic value: hourglass end - - - - - Semantic value: hourglass half - - - - - Semantic value: hourglass start - - - - - Semantic value: stopwatch - - - - - Semantic value: adjust - - - - - Semantic value: clone - - - - - Semantic value: clone outline - - - - - Semantic value: crop - - - - - Semantic value: crosshairs - - - - - Semantic value: eye - - - - - Semantic value: eye dropper - - - - - Semantic value: eye slash - - - - - Semantic value: eye slash outline - - - - - Semantic value: object group - - - - - Semantic value: object group outline - - - - - Semantic value: object ungroup - - - - - Semantic value: object ungroup outline - - - - - Semantic value: paint brush - - - - - Semantic value: tint - - - - - Semantic value: align center - - - - - Semantic value: align justify - - - - - Semantic value: align left - - - - - Semantic value: align right - - - - - Semantic value: bold - - - - - Semantic value: font - - - - - Semantic value: heading - - - - - Semantic value: i cursor - - - - - Semantic value: indent - - - - - Semantic value: italic - - - - - Semantic value: linkify - - - - - Semantic value: list - - - - - Semantic value: list alternate - - - - - Semantic value: list alternate outline - - - - - Semantic value: list ol - - - - - Semantic value: list ul - - - - - Semantic value: outdent - - - - - Semantic value: paragraph - - - - - Semantic value: quote left - - - - - Semantic value: quote right - - - - - Semantic value: strikethrough - - - - - Semantic value: subscript - - - - - Semantic value: superscript - - - - - Semantic value: th - - - - - Semantic value: th large - - - - - Semantic value: th list - - - - - Semantic value: trash - - - - - Semantic value: trash alternate - - - - - Semantic value: trash alternate outline - - - - - Semantic value: underline - - - - - Semantic value: unlink - - - - - Semantic value: file archive - - - - - Semantic value: file archive outline - - - - - Semantic value: file excel - - - - - Semantic value: file excel outline - - - - - Semantic value: file image - - - - - Semantic value: file image outline - - - - - Semantic value: file pdf - - - - - Semantic value: file pdf outline - - - - - Semantic value: file powerpoint - - - - - Semantic value: file powerpoint outline - - - - - Semantic value: file word - - - - - Semantic value: file word outline - - - - - Semantic value: genderless - - - - - Semantic value: mars - - - - - Semantic value: mars double - - - - - Semantic value: mars stroke - - - - - Semantic value: mars stroke horizontal - - - - - Semantic value: mars stroke vertical - - - - - Semantic value: mercury - - - - - Semantic value: neuter - - - - - Semantic value: transgender - - - - - Semantic value: transgender alternate - - - - - Semantic value: venus - - - - - Semantic value: venus double - - - - - Semantic value: venus mars - - - - - Semantic value: hand lizard - - - - - Semantic value: hand lizard outline - - - - - Semantic value: hand paper - - - - - Semantic value: hand paper outline - - - - - Semantic value: hand peace - - - - - Semantic value: hand peace outline - - - - - Semantic value: hand rock - - - - - Semantic value: hand rock outline - - - - - Semantic value: hand scissors - - - - - Semantic value: hand scissors outline - - - - - Semantic value: hand spock - - - - - Semantic value: hand spock outline - - - - - Semantic value: handshake - - - - - Semantic value: handshake outline - - - - - Semantic value: thumbs down - - - - - Semantic value: thumbs down outline - - - - - Semantic value: thumbs up - - - - - Semantic value: thumbs up outline - - - - - Semantic value: ambulance - - - - - Semantic value: h square - - - - - Semantic value: heart - - - - - Semantic value: heart outline - - - - - Semantic value: heartbeat - - - - - Semantic value: hospital - - - - - Semantic value: hospital outline - - - - - Semantic value: medkit - - - - - Semantic value: plus square - - - - - Semantic value: plus square outline - - - - - Semantic value: stethoscope - - - - - Semantic value: user md - - - - - Semantic value: bolt - - - - - Semantic value: camera - - - - - Semantic value: camera retro - - - - - Semantic value: id badge - - - - - Semantic value: id badge outline - - - - - Semantic value: id card - - - - - Semantic value: id card outline - - - - - Semantic value: image - - - - - Semantic value: image outline - - - - - Semantic value: images - - - - - Semantic value: images outline - - - - - Semantic value: sliders horizontal - - - - - Semantic value: ban - - - - - Semantic value: bars - - - - - Semantic value: beer - - - - - Semantic value: check - - - - - Semantic value: check circle - - - - - Semantic value: check circle outline - - - - - Semantic value: check square - - - - - Semantic value: check square outline - - - - - Semantic value: cloud - - - - - Semantic value: cog - - - - - Semantic value: cogs - - - - - Semantic value: database - - - - - Semantic value: dot circle - - - - - Semantic value: dot circle outline - - - - - Semantic value: ellipsis horizontal - - - - - Semantic value: ellipsis vertical - - - - - Semantic value: exclamation - - - - - Semantic value: exclamation circle - - - - - Semantic value: exclamation triangle - - - - - Semantic value: flag - - - - - Semantic value: flag outline - - - - - Semantic value: flag checkered - - - - - Semantic value: frown - - - - - Semantic value: frown outline - - - - - Semantic value: hashtag - - - - - Semantic value: home - - - - - Semantic value: info - - - - - Semantic value: info circle - - - - - Semantic value: magic - - - - - Semantic value: meh - - - - - Semantic value: meh outline - - - - - Semantic value: minus - - - - - Semantic value: minus circle - - - - - Semantic value: minus square - - - - - Semantic value: minus square outline - - - - - Semantic value: plus - - - - - Semantic value: plus circle - - - - - Semantic value: question - - - - - Semantic value: search - - - - - Semantic value: search minus - - - - - Semantic value: search plus - - - - - Semantic value: share alternate - - - - - Semantic value: share alternate square - - - - - Semantic value: signal - - - - - Semantic value: smile - - - - - Semantic value: smile outline - - - - - Semantic value: star - - - - - Semantic value: star outline - - - - - Semantic value: star half - - - - - Semantic value: star half outline - - - - - Semantic value: times - - - - - Semantic value: times circle - - - - - Semantic value: times circle outline - - - - - Semantic value: toggle off - - - - - Semantic value: toggle on - - - - - Semantic value: trophy - - - - - Semantic value: user - - - - - Semantic value: user outline - - - - - Semantic value: user circle - - - - - Semantic value: user circle outline - - - - - Semantic value: box - - - - - Semantic value: boxes - - - - - Semantic value: clipboard check - - - - - Semantic value: clipboard list - - - - - Semantic value: dolly - - - - - Semantic value: dolly flatbed - - - - - Semantic value: pallet - - - - - Semantic value: shipping fast - - - - - Semantic value: truck - - - - - Semantic value: warehouse - - - - - Semantic value: anchor - - - - - Semantic value: bed - - - - - Semantic value: bicycle - - - - - Semantic value: binoculars - - - - - Semantic value: bomb - - - - - Semantic value: bookmark - - - - - Semantic value: bookmark outline - - - - - Semantic value: car - - - - - Semantic value: fighter jet - - - - - Semantic value: fire - - - - - Semantic value: flask - - - - - Semantic value: gamepad - - - - - Semantic value: gavel - - - - - Semantic value: gift - - - - - Semantic value: glass martini - - - - - Semantic value: graduation cap - - - - - Semantic value: key - - - - - Semantic value: leaf - - - - - Semantic value: lemon - - - - - Semantic value: lemon outline - - - - - Semantic value: life ring - - - - - Semantic value: life ring outline - - - - - Semantic value: lightbulb - - - - - Semantic value: lightbulb outline - - - - - Semantic value: magnet - - - - - Semantic value: male - - - - - Semantic value: map - - - - - Semantic value: map outline - - - - - Semantic value: map marker - - - - - Semantic value: map marker alternate - - - - - Semantic value: map pin - - - - - Semantic value: map signs - - - - - Semantic value: motorcycle - - - - - Semantic value: newspaper - - - - - Semantic value: newspaper outline - - - - - Semantic value: paw - - - - - Semantic value: plane - - - - - Semantic value: road - - - - - Semantic value: rocket - - - - - Semantic value: ship - - - - - Semantic value: shopping bag - - - - - Semantic value: shopping basket - - - - - Semantic value: shopping cart - - - - - Semantic value: shower - - - - - Semantic value: street view - - - - - Semantic value: subway - - - - - Semantic value: taxi - - - - - Semantic value: ticket alternate - - - - - Semantic value: train - - - - - Semantic value: tree - - - - - Semantic value: umbrella - - - - - Semantic value: university - - - - - Semantic value: utensil spoon - - - - - Semantic value: utensils - - - - - Semantic value: wrench - - - - - Semantic value: band aid - - - - - Semantic value: dna - - - - - Semantic value: first aid - - - - - Semantic value: hospital symbol - - - - - Semantic value: pills - - - - - Semantic value: syringe - - - - - Semantic value: thermometer - - - - - Semantic value: weight - - - - - Semantic value: bus - - - - - Semantic value: cube - - - - - Semantic value: cubes - - - - - Semantic value: futbol - - - - - Semantic value: futbol outline - - - - - Semantic value: gem - - - - - Semantic value: gem outline - - - - - Semantic value: lock - - - - - Semantic value: lock open - - - - - Semantic value: moon - - - - - Semantic value: moon outline - - - - - Semantic value: puzzle piece - - - - - Semantic value: snowflake - - - - - Semantic value: snowflake outline - - - - - Semantic value: space shuttle - - - - - Semantic value: sun - - - - - Semantic value: sun outline - - - - - Semantic value: tachometer alternate - - - - - Semantic value: unlock - - - - - Semantic value: unlock alternate - - - - - Semantic value: cart plus - - - - - Semantic value: credit card - - - - - Semantic value: credit card outline - - - - - Semantic value: square - - - - - Semantic value: square outline - - - - - Semantic value: asterisk - - - - - Semantic value: circle notch - - - - - Semantic value: spinner - - - - - Semantic value: baseball ball - - - - - Semantic value: basketball ball - - - - - Semantic value: bowling ball - - - - - Semantic value: football ball - - - - - Semantic value: golf ball - - - - - Semantic value: hockey puck - - - - - Semantic value: quidditch - - - - - Semantic value: table tennis - - - - - Semantic value: volleyball ball - - - - - Semantic value: battery empty - - - - - Semantic value: battery full - - - - - Semantic value: battery half - - - - - Semantic value: battery quarter - - - - - Semantic value: battery three quarters - - - - - Semantic value: thermometer empty - - - - - Semantic value: thermometer full - - - - - Semantic value: thermometer half - - - - - Semantic value: thermometer quarter - - - - - Semantic value: thermometer three quarters - - - - - Semantic value: child - - - - - Semantic value: female - - - - - Semantic value: user plus - - - - - Semantic value: user times - - - - - Semantic value: users - - - - - Semantic value: 500px - - - - - Semantic value: accessible - - - - - Semantic value: accusoft - - - - - Semantic value: adn - - - - - Semantic value: adversal - - - - - Semantic value: affiliatetheme - - - - - Semantic value: algolia - - - - - Semantic value: amazon - - - - - Semantic value: amazon pay - - - - - Semantic value: amilia - - - - - Semantic value: android - - - - - Semantic value: angellist - - - - - Semantic value: angrycreative - - - - - Semantic value: angular - - - - - Semantic value: app store - - - - - Semantic value: app store ios - - - - - Semantic value: apper - - - - - Semantic value: apple - - - - - Semantic value: apple pay - - - - - Semantic value: asymmetrik - - - - - Semantic value: audible - - - - - Semantic value: autoprefixer - - - - - Semantic value: avianex - - - - - Semantic value: aviato - - - - - Semantic value: aws - - - - - Semantic value: bandcamp - - - - - Semantic value: behance - - - - - Semantic value: behance square - - - - - Semantic value: bimobject - - - - - Semantic value: bitbucket - - - - - Semantic value: bitcoin - - - - - Semantic value: bity - - - - - Semantic value: black tie - - - - - Semantic value: blackberry - - - - - Semantic value: blogger - - - - - Semantic value: blogger b - - - - - Semantic value: bluetooth - - - - - Semantic value: bluetooth b - - - - - Semantic value: btc - - - - - Semantic value: buromobelexperte - - - - - Semantic value: buysellads - - - - - Semantic value: cc amazon pay - - - - - Semantic value: cc amex - - - - - Semantic value: cc apple pay - - - - - Semantic value: cc diners club - - - - - Semantic value: cc discover - - - - - Semantic value: cc jcb - - - - - Semantic value: cc mastercard - - - - - Semantic value: cc paypal - - - - - Semantic value: cc stripe - - - - - Semantic value: cc visa - - - - - Semantic value: centercode - - - - - Semantic value: chrome - - - - - Semantic value: cloudscale - - - - - Semantic value: cloudsmith - - - - - Semantic value: cloudversify - - - - - Semantic value: codepen - - - - - Semantic value: codiepie - - - - - Semantic value: connectdevelop - - - - - Semantic value: contao - - - - - Semantic value: cpanel - - - - - Semantic value: creative commons - - - - - Semantic value: css3 - - - - - Semantic value: css3 alternate - - - - - Semantic value: cuttlefish - - - - - Semantic value: d and d - - - - - Semantic value: dashcube - - - - - Semantic value: delicious - - - - - Semantic value: deploydog - - - - - Semantic value: deskpro - - - - - Semantic value: deviantart - - - - - Semantic value: digg - - - - - Semantic value: digital ocean - - - - - Semantic value: discord - - - - - Semantic value: discourse - - - - - Semantic value: dochub - - - - - Semantic value: docker - - - - - Semantic value: draft2digital - - - - - Semantic value: dribbble - - - - - Semantic value: dribbble square - - - - - Semantic value: dropbox - - - - - Semantic value: drupal - - - - - Semantic value: dyalog - - - - - Semantic value: earlybirds - - - - - Semantic value: edge - - - - - Semantic value: elementor - - - - - Semantic value: ember - - - - - Semantic value: empire - - - - - Semantic value: envira - - - - - Semantic value: erlang - - - - - Semantic value: ethereum - - - - - Semantic value: etsy - - - - - Semantic value: expeditedssl - - - - - Semantic value: facebook - - - - - Semantic value: facebook f - - - - - Semantic value: facebook messenger - - - - - Semantic value: facebook square - - - - - Semantic value: firefox - - - - - Semantic value: first order - - - - - Semantic value: firstdraft - - - - - Semantic value: flickr - - - - - Semantic value: flipboard - - - - - Semantic value: fly - - - - - Semantic value: font awesome - - - - - Semantic value: font awesome alternate - - - - - Semantic value: font awesome flag - - - - - Semantic value: fonticons - - - - - Semantic value: fonticons fi - - - - - Semantic value: fort awesome - - - - - Semantic value: fort awesome alternate - - - - - Semantic value: forumbee - - - - - Semantic value: foursquare - - - - - Semantic value: free code camp - - - - - Semantic value: freebsd - - - - - Semantic value: get pocket - - - - - Semantic value: gg - - - - - Semantic value: gg circle - - - - - Semantic value: git - - - - - Semantic value: git square - - - - - Semantic value: github - - - - - Semantic value: github alternate - - - - - Semantic value: github square - - - - - Semantic value: gitkraken - - - - - Semantic value: gitlab - - - - - Semantic value: gitter - - - - - Semantic value: glide - - - - - Semantic value: glide g - - - - - Semantic value: gofore - - - - - Semantic value: goodreads - - - - - Semantic value: goodreads g - - - - - Semantic value: google - - - - - Semantic value: google drive - - - - - Semantic value: google play - - - - - Semantic value: google plus - - - - - Semantic value: google plus g - - - - - Semantic value: google plus square - - - - - Semantic value: google wallet - - - - - Semantic value: gratipay - - - - - Semantic value: grav - - - - - Semantic value: gripfire - - - - - Semantic value: grunt - - - - - Semantic value: gulp - - - - - Semantic value: hacker news - - - - - Semantic value: hacker news square - - - - - Semantic value: hips - - - - - Semantic value: hire a helper - - - - - Semantic value: hooli - - - - - Semantic value: hotjar - - - - - Semantic value: houzz - - - - - Semantic value: html5 - - - - - Semantic value: hubspot - - - - - Semantic value: imdb - - - - - Semantic value: instagram - - - - - Semantic value: internet explorer - - - - - Semantic value: ioxhost - - - - - Semantic value: itunes - - - - - Semantic value: itunes note - - - - - Semantic value: jenkins - - - - - Semantic value: joget - - - - - Semantic value: joomla - - - - - Semantic value: js - - - - - Semantic value: js square - - - - - Semantic value: jsfiddle - - - - - Semantic value: keycdn - - - - - Semantic value: kickstarter - - - - - Semantic value: kickstarter k - - - - - Semantic value: korvue - - - - - Semantic value: laravel - - - - - Semantic value: lastfm - - - - - Semantic value: lastfm square - - - - - Semantic value: leanpub - - - - - Semantic value: less - - - - - Semantic value: linechat - - - - - Semantic value: linkedin - - - - - Semantic value: linkedin alternate - - - - - Semantic value: linode - - - - - Semantic value: linux - - - - - Semantic value: lyft - - - - - Semantic value: magento - - - - - Semantic value: maxcdn - - - - - Semantic value: medapps - - - - - Semantic value: medium - - - - - Semantic value: medium m - - - - - Semantic value: medrt - - - - - Semantic value: meetup - - - - - Semantic value: microsoft - - - - - Semantic value: mix - - - - - Semantic value: mixcloud - - - - - Semantic value: mizuni - - - - - Semantic value: modx - - - - - Semantic value: monero - - - - - Semantic value: napster - - - - - Semantic value: nintendo switch - - - - - Semantic value: node - - - - - Semantic value: node js - - - - - Semantic value: npm - - - - - Semantic value: ns8 - - - - - Semantic value: nutritionix - - - - - Semantic value: odnoklassniki - - - - - Semantic value: odnoklassniki square - - - - - Semantic value: opencart - - - - - Semantic value: openid - - - - - Semantic value: opera - - - - - Semantic value: optin monster - - - - - Semantic value: osi - - - - - Semantic value: page4 - - - - - Semantic value: pagelines - - - - - Semantic value: palfed - - - - - Semantic value: patreon - - - - - Semantic value: paypal - - - - - Semantic value: periscope - - - - - Semantic value: phabricator - - - - - Semantic value: phoenix framework - - - - - Semantic value: php - - - - - Semantic value: pied piper - - - - - Semantic value: pied piper alternate - - - - - Semantic value: pied piper pp - - - - - Semantic value: pinterest - - - - - Semantic value: pinterest p - - - - - Semantic value: pinterest square - - - - - Semantic value: playstation - - - - - Semantic value: product hunt - - - - - Semantic value: pushed - - - - - Semantic value: python - - - - - Semantic value: qq - - - - - Semantic value: quinscape - - - - - Semantic value: quora - - - - - Semantic value: ravelry - - - - - Semantic value: react - - - - - Semantic value: rebel - - - - - Semantic value: redriver - - - - - Semantic value: reddit - - - - - Semantic value: reddit alien - - - - - Semantic value: reddit square - - - - - Semantic value: rendact - - - - - Semantic value: renren - - - - - Semantic value: replyd - - - - - Semantic value: resolving - - - - - Semantic value: rocketchat - - - - - Semantic value: rockrms - - - - - Semantic value: safari - - - - - Semantic value: sass - - - - - Semantic value: schlix - - - - - Semantic value: scribd - - - - - Semantic value: searchengin - - - - - Semantic value: sellcast - - - - - Semantic value: sellsy - - - - - Semantic value: servicestack - - - - - Semantic value: shirtsinbulk - - - - - Semantic value: simplybuilt - - - - - Semantic value: sistrix - - - - - Semantic value: skyatlas - - - - - Semantic value: skype - - - - - Semantic value: slack - - - - - Semantic value: slack hash - - - - - Semantic value: slideshare - - - - - Semantic value: snapchat - - - - - Semantic value: snapchat ghost - - - - - Semantic value: snapchat square - - - - - Semantic value: soundcloud - - - - - Semantic value: speakap - - - - - Semantic value: spotify - - - - - Semantic value: stack exchange - - - - - Semantic value: stack overflow - - - - - Semantic value: staylinked - - - - - Semantic value: steam - - - - - Semantic value: steam square - - - - - Semantic value: steam symbol - - - - - Semantic value: sticker mule - - - - - Semantic value: strava - - - - - Semantic value: stripe - - - - - Semantic value: stripe s - - - - - Semantic value: studiovinari - - - - - Semantic value: stumbleupon - - - - - Semantic value: stumbleupon circle - - - - - Semantic value: superpowers - - - - - Semantic value: supple - - - - - Semantic value: telegram - - - - - Semantic value: telegram plane - - - - - Semantic value: tencent weibo - - - - - Semantic value: themeisle - - - - - Semantic value: trello - - - - - Semantic value: tripadvisor - - - - - Semantic value: tumblr - - - - - Semantic value: tumblr square - - - - - Semantic value: twitch - - - - - Semantic value: twitter - - - - - Semantic value: twitter square - - - - - Semantic value: typo3 - - - - - Semantic value: uber - - - - - Semantic value: uikit - - - - - Semantic value: uniregistry - - - - - Semantic value: untappd - - - - - Semantic value: usb - - - - - Semantic value: ussunnah - - - - - Semantic value: vaadin - - - - - Semantic value: viacoin - - - - - Semantic value: viadeo - - - - - Semantic value: viadeo square - - - - - Semantic value: viber - - - - - Semantic value: vimeo - - - - - Semantic value: vimeo square - - - - - Semantic value: vimeo v - - - - - Semantic value: vine - - - - - Semantic value: vk - - - - - Semantic value: vnv - - - - - Semantic value: vuejs - - - - - Semantic value: wechat - - - - - Semantic value: weibo - - - - - Semantic value: weixin - - - - - Semantic value: whatsapp - - - - - Semantic value: whatsapp square - - - - - Semantic value: whmcs - - - - - Semantic value: wikipedia w - - - - - Semantic value: windows - - - - - Semantic value: wordpress - - - - - Semantic value: wordpress simple - - - - - Semantic value: wpbeginner - - - - - Semantic value: wpexplorer - - - - - Semantic value: wpforms - - - - - Semantic value: xbox - - - - - Semantic value: xing - - - - - Semantic value: xing square - - - - - Semantic value: y combinator - - - - - Semantic value: yahoo - - - - - Semantic value: yandex - - - - - Semantic value: yandex international - - - - - Semantic value: yelp - - - - - Semantic value: yoast - - - - - Semantic value: youtube - - - - - Semantic value: youtube square - - - - - Semantic value: chess rock - - - - - Semantic value: ordered list - - - - - Semantic value: unordered list - - - - - Semantic value: user doctor - - - - - Semantic value: shield - - - - - Semantic value: puzzle - - - - - Semantic value: add circle - - - - - Semantic value: add square - - - - - Semantic value: add to calendar - - - - - Semantic value: add to cart - - - - - Semantic value: add user - - - - - Semantic value: add - - - - - Semantic value: alarm mute - - - - - Semantic value: alarm - - - - - Semantic value: ald - - - - - Semantic value: als - - - - - Semantic value: announcement - - - - - Semantic value: area chart - - - - - Semantic value: area graph - - - - - Semantic value: arrow down cart - - - - - Semantic value: asexual - - - - - Semantic value: asl interpreting - - - - - Semantic value: asl - - - - - Semantic value: assistive listening devices - - - - - Semantic value: attach - - - - - Semantic value: attention - - - - - Semantic value: balance - - - - - Semantic value: bar - - - - - Semantic value: bathtub - - - - - Semantic value: battery four - - - - - Semantic value: battery high - - - - - Semantic value: battery low - - - - - Semantic value: battery one - - - - - Semantic value: battery three - - - - - Semantic value: battery two - - - - - Semantic value: battery zero - - - - - Semantic value: birthday - - - - - Semantic value: block layout - - - - - Semantic value: bluetooth alternative - - - - - Semantic value: broken chain - - - - - Semantic value: browser - - - - - Semantic value: call square - - - - - Semantic value: call - - - - - Semantic value: cancel - - - - - Semantic value: cart - - - - - Semantic value: cc - - - - - Semantic value: chain - - - - - Semantic value: chat - - - - - Semantic value: checked calendar - - - - - Semantic value: checkmark - - - - - Semantic value: circle notched - - - - - Semantic value: close - - - - - Semantic value: cny - - - - - Semantic value: cocktail - - - - - Semantic value: commenting - - - - - Semantic value: computer - - - - - Semantic value: configure - - - - - Semantic value: content - - - - - Semantic value: deafness - - - - - Semantic value: delete calendar - - - - - Semantic value: delete - - - - - Semantic value: detective - - - - - Semantic value: discussions - - - - - Semantic value: doctor - - - - - Semantic value: dollar - - - - - Semantic value: dont - - - - - Semantic value: drivers license - - - - - Semantic value: dropdown - - - - - Semantic value: emergency - - - - - Semantic value: envira gallery - - - - - Semantic value: erase - - - - - Semantic value: eur - - - - - Semantic value: euro - - - - - Semantic value: eyedropper - - - - - Semantic value: factory - - - - - Semantic value: favorite - - - - - Semantic value: feed - - - - - Semantic value: female homosexual - - - - - Semantic value: file text - - - - - Semantic value: file text outline - - - - - Semantic value: find - - - - - Semantic value: fork - - - - - Semantic value: game - - - - - Semantic value: gay - - - - - Semantic value: gbp - - - - - Semantic value: google plus circle - - - - - Semantic value: google plus official - - - - - Semantic value: grab - - - - - Semantic value: graduation - - - - - Semantic value: grid layout - - - - - Semantic value: group - - - - - Semantic value: h - - - - - Semantic value: hand victory - - - - - Semantic value: handicap - - - - - Semantic value: hard of hearing - - - - - Semantic value: header - - - - - Semantic value: help circle - - - - - Semantic value: help - - - - - Semantic value: heterosexual - - - - - Semantic value: hide - - - - - Semantic value: hotel - - - - - Semantic value: hourglass four - - - - - Semantic value: hourglass full - - - - - Semantic value: hourglass one - - - - - Semantic value: hourglass three - - - - - Semantic value: hourglass two - - - - - Semantic value: idea - - - - - Semantic value: ils - - - - - Semantic value: in cart - - - - - Semantic value: inr - - - - - Semantic value: intergender - - - - - Semantic value: intersex - - - - - Semantic value: jpy - - - - - Semantic value: krw - - - - - Semantic value: lab - - - - - Semantic value: law - - - - - Semantic value: legal - - - - - Semantic value: lesbian - - - - - Semantic value: lightning - - - - - Semantic value: like - - - - - Semantic value: line graph - - - - - Semantic value: linkedin square - - - - - Semantic value: lira - - - - - Semantic value: list layout - - - - - Semantic value: magnify - - - - - Semantic value: mail forward - - - - - Semantic value: mail outline - - - - - Semantic value: mail square - - - - - Semantic value: mail - - - - - Semantic value: male homosexual - - - - - Semantic value: man - - - - - Semantic value: marker - - - - - Semantic value: mars alternate - - - - - Semantic value: mars horizontal - - - - - Semantic value: mars vertical - - - - - Semantic value: microsoft edge - - - - - Semantic value: military - - - - - Semantic value: ms edge - - - - - Semantic value: mute - - - - - Semantic value: new pied piper - - - - - Semantic value: non binary transgender - - - - - Semantic value: numbered list - - - - - Semantic value: options - - - - - Semantic value: other gender horizontal - - - - - Semantic value: other gender vertical - - - - - Semantic value: other gender - - - - - Semantic value: payment - - - - - Semantic value: paypal card - - - - - Semantic value: pencil square - - - - - Semantic value: photo - - - - - Semantic value: picture - - - - - Semantic value: pie chart - - - - - Semantic value: pie graph - - - - - Semantic value: pied piper hat - - - - - Semantic value: pin - - - - - Semantic value: plus cart - - - - - Semantic value: point - - - - - Semantic value: pointing down - - - - - Semantic value: pointing left - - - - - Semantic value: pointing right - - - - - Semantic value: pointing up - - - - - Semantic value: pound - - - - - Semantic value: power cord - - - - - Semantic value: power - - - - - Semantic value: privacy - - - - - Semantic value: r circle - - - - - Semantic value: rain - - - - - Semantic value: record - - - - - Semantic value: refresh - - - - - Semantic value: remove circle - - - - - Semantic value: remove from calendar - - - - - Semantic value: remove user - - - - - Semantic value: remove - - - - - Semantic value: repeat - - - - - Semantic value: rmb - - - - - Semantic value: rouble - - - - - Semantic value: rub - - - - - Semantic value: ruble - - - - - Semantic value: rupee - - - - - Semantic value: s15 - - - - - Semantic value: selected radio - - - - - Semantic value: send - - - - - Semantic value: setting - - - - - Semantic value: settings - - - - - Semantic value: shekel - - - - - Semantic value: sheqel - - - - - Semantic value: shipping - - - - - Semantic value: shop - - - - - Semantic value: shuffle - - - - - Semantic value: shutdown - - - - - Semantic value: sidebar - - - - - Semantic value: signing - - - - - Semantic value: signup - - - - - Semantic value: sliders - - - - - Semantic value: soccer - - - - - Semantic value: sort alphabet ascending - - - - - Semantic value: sort alphabet descending - - - - - Semantic value: sort ascending - - - - - Semantic value: sort content ascending - - - - - Semantic value: sort content descending - - - - - Semantic value: sort descending - - - - - Semantic value: sort numeric ascending - - - - - Semantic value: sort numeric descending - - - - - Semantic value: sound - - - - - Semantic value: spy - - - - - Semantic value: stripe card - - - - - Semantic value: student - - - - - Semantic value: talk - - - - - Semantic value: target - - - - - Semantic value: teletype - - - - - Semantic value: television - - - - - Semantic value: text cursor - - - - - Semantic value: text telephone - - - - - Semantic value: theme - - - - - Semantic value: thumb tack - - - - - Semantic value: time - - - - - Semantic value: tm - - - - - Semantic value: toggle down - - - - - Semantic value: toggle left - - - - - Semantic value: toggle right - - - - - Semantic value: toggle up - - - - - Semantic value: translate - - - - - Semantic value: travel - - - - - Semantic value: treatment - - - - - Semantic value: triangle down - - - - - Semantic value: triangle left - - - - - Semantic value: triangle right - - - - - Semantic value: triangle up - - - - - Semantic value: try - - - - - Semantic value: unhide - - - - - Semantic value: unlinkify - - - - - Semantic value: unmute - - - - - Semantic value: usd - - - - - Semantic value: user cancel - - - - - Semantic value: user close - - - - - Semantic value: user delete - - - - - Semantic value: user x - - - - - Semantic value: vcard - - - - - Semantic value: video camera - - - - - Semantic value: video play - - - - - Semantic value: volume control phone - - - - - Semantic value: wait - - - - - Semantic value: warning circle - - - - - Semantic value: warning sign - - - - - Semantic value: warning - - - - - Semantic value: wi-fi - - - - - Semantic value: winner - - - - - Semantic value: wizard - - - - - Semantic value: woman - - - - - Semantic value: won - - - - - Semantic value: wordpress beginner - - - - - Semantic value: wordpress forms - - - - - Semantic value: world - - - - - Semantic value: write square - - - - - Semantic value: x - - - - - Semantic value: yen - - - - - Semantic value: zip - - - - - Semantic value: zoom - - - - - Semantic value: bitbucket square - - - - - Semantic value: checkmark box - - - - - Semantic value: circle thin - - - - - Semantic value: compose - - - - - Semantic value: conversation - - - - - Semantic value: credit card alternative - - - - - Semantic value: currency - - - - - Semantic value: dashboard - - - - - Semantic value: diamond - - - - - Semantic value: disk - - - - - Semantic value: external share - - - - - Semantic value: external square - - - - - Semantic value: external - - - - - Semantic value: facebook official - - - - - Semantic value: food - - - - - Semantic value: hourglass zero - - - - - Semantic value: level down - - - - - Semantic value: level up - - - - - Semantic value: log out - - - - - Semantic value: meanpath - - - - - Semantic value: money - - - - - Semantic value: move - - - - - Semantic value: pencil - - - - - Semantic value: protect - - - - - Semantic value: radio - - - - - Semantic value: remove bookmark - - - - - Semantic value: resize horizontal - - - - - Semantic value: resize vertical - - - - - Semantic value: spoon - - - - - Semantic value: star half empty - - - - - Semantic value: star half full - - - - - Semantic value: ticket - - - - - Semantic value: times rectangle - - - - - Semantic value: write - - - - - Semantic value: youtube play - - - - - Semantic value: left dropdown - - - - - Corner - - - - - Icon flip direction - - - - - Icon rotation - - - - - Size - - - - From 9582a70b6b5b150513268bbcc33ff80aef3feccc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Rodrigo=20Qui=C3=B1ones=20Pinilla?= Date: Sun, 22 Sep 2019 21:18:04 +0200 Subject: [PATCH 03/24] Stop pipeline with script error --- .azure/workflows/azure-ci-release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.azure/workflows/azure-ci-release.yml b/.azure/workflows/azure-ci-release.yml index f974050..ebfdaad 100644 --- a/.azure/workflows/azure-ci-release.yml +++ b/.azure/workflows/azure-ci-release.yml @@ -48,6 +48,7 @@ steps: - task: Bash@3 inputs: filePath: '.azure/workflows/configure-variables-release.sh' + failOnStderr: true - task: DotNetCoreCLI@2 inputs: From 8728099c1352418a7388efae84435be582ee4faa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Rodrigo=20Qui=C3=B1ones=20Pinilla?= Date: Sun, 22 Sep 2019 21:25:18 +0200 Subject: [PATCH 04/24] Changed tasks order --- .azure/workflows/azure-ci-release.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.azure/workflows/azure-ci-release.yml b/.azure/workflows/azure-ci-release.yml index ebfdaad..c903062 100644 --- a/.azure/workflows/azure-ci-release.yml +++ b/.azure/workflows/azure-ci-release.yml @@ -16,6 +16,11 @@ variables: steps: +- task: Bash@3 + inputs: + filePath: '.azure/workflows/configure-variables-release.sh' + failOnStderr: true + # Install .NET Core SDK - task: DotNetCoreInstaller@1 inputs: @@ -45,11 +50,6 @@ steps: inputs: pollingTimeoutSec: '300' -- task: Bash@3 - inputs: - filePath: '.azure/workflows/configure-variables-release.sh' - failOnStderr: true - - task: DotNetCoreCLI@2 inputs: command: 'pack' From 2f45a7c7aaa1d1bedba9b465ea154f9938a67654 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Rodrigo=20Qui=C3=B1ones=20Pinilla?= Date: Sun, 22 Sep 2019 21:42:11 +0200 Subject: [PATCH 05/24] Updated variable --- .azure/workflows/configure-variables-release.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.azure/workflows/configure-variables-release.sh b/.azure/workflows/configure-variables-release.sh index a54d06f..c967eac 100644 --- a/.azure/workflows/configure-variables-release.sh +++ b/.azure/workflows/configure-variables-release.sh @@ -9,7 +9,9 @@ function check_version() { echo "Configuring package version" -gitTagVersion="$(git describe --exact-match $(Build.SourceVersion) --abbrev=0 --tags --first-parent)" +commitId=$BUILD_SOURCEVERSION + +gitTagVersion="$(git describe --exact-match $($commitId) --abbrev=0 --tags --first-parent)" appVersion=${gitTagVersion:1} echo "Git version: $($gitTagVersion)" echo "App version: $($appVersion)" From 6b844ebc232db9970b780b36b2c9a914e7153a0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Rodrigo=20Qui=C3=B1ones=20Pinilla?= Date: Sun, 22 Sep 2019 21:45:00 +0200 Subject: [PATCH 06/24] Updated use of variables --- .azure/workflows/configure-variables-release.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.azure/workflows/configure-variables-release.sh b/.azure/workflows/configure-variables-release.sh index c967eac..d0a2bdc 100644 --- a/.azure/workflows/configure-variables-release.sh +++ b/.azure/workflows/configure-variables-release.sh @@ -11,10 +11,10 @@ echo "Configuring package version" commitId=$BUILD_SOURCEVERSION -gitTagVersion="$(git describe --exact-match $($commitId) --abbrev=0 --tags --first-parent)" +gitTagVersion="$(git describe --exact-match $commitId --abbrev=0 --tags --first-parent)" appVersion=${gitTagVersion:1} -echo "Git version: $($gitTagVersion)" -echo "App version: $($appVersion)" +echo "Git version: $gitTagVersion" +echo "App version: $appVersion" if [[ ! $(check_version ${appVersion}) ]]; then exit 1; From 75b8e9f5d5c3353f0a08536fb181b55f457f1c61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Qui=C3=B1ones?= Date: Sun, 22 Sep 2019 23:19:59 +0200 Subject: [PATCH 07/24] Update azure-ci-release.yml --- .azure/workflows/azure-ci-release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.azure/workflows/azure-ci-release.yml b/.azure/workflows/azure-ci-release.yml index c903062..952f3eb 100644 --- a/.azure/workflows/azure-ci-release.yml +++ b/.azure/workflows/azure-ci-release.yml @@ -54,9 +54,9 @@ steps: inputs: command: 'pack' packagesToPack: '**/*.csproj' - nobuild: true - versioningScheme: 'byEnvVar' - versionEnvVar: '$(packageVersion)' + configuration: '$(buildConfiguration)' + versioningScheme: 'off' + buildProperties: '/p:PackageVersion=$(packageVersion)' - task: PublishBuildArtifacts@1 inputs: From effa58897d4a7bf5e305d5e700d9c3816bf4f51a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Qui=C3=B1ones?= Date: Sun, 22 Sep 2019 23:28:14 +0200 Subject: [PATCH 08/24] Update azure-ci-release.yml for Azure Pipelines --- .azure/workflows/azure-ci-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.azure/workflows/azure-ci-release.yml b/.azure/workflows/azure-ci-release.yml index 952f3eb..8f730ac 100644 --- a/.azure/workflows/azure-ci-release.yml +++ b/.azure/workflows/azure-ci-release.yml @@ -53,7 +53,7 @@ steps: - task: DotNetCoreCLI@2 inputs: command: 'pack' - packagesToPack: '**/*.csproj' + packagesToPack: '**/QD.Components.Semantic.csproj' configuration: '$(buildConfiguration)' versioningScheme: 'off' buildProperties: '/p:PackageVersion=$(packageVersion)' From 14e91b5ca414c277d3dba6b099ce449485af7094 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Qui=C3=B1ones?= Date: Sun, 22 Sep 2019 23:36:23 +0200 Subject: [PATCH 09/24] Update azure-ci-release.yml for Azure Pipelines --- .azure/workflows/azure-ci-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.azure/workflows/azure-ci-release.yml b/.azure/workflows/azure-ci-release.yml index 8f730ac..b5701ed 100644 --- a/.azure/workflows/azure-ci-release.yml +++ b/.azure/workflows/azure-ci-release.yml @@ -55,8 +55,8 @@ steps: command: 'pack' packagesToPack: '**/QD.Components.Semantic.csproj' configuration: '$(buildConfiguration)' - versioningScheme: 'off' - buildProperties: '/p:PackageVersion=$(packageVersion)' + versioningScheme: 'byEnvVar' + versionEnvVar: '$(packageVersion)' - task: PublishBuildArtifacts@1 inputs: From ad3aef4694608d81766f4855a1127874eb871eb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Qui=C3=B1ones?= Date: Sun, 22 Sep 2019 23:51:07 +0200 Subject: [PATCH 10/24] Update azure-ci-release.yml for Azure Pipelines --- .azure/workflows/azure-ci-release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.azure/workflows/azure-ci-release.yml b/.azure/workflows/azure-ci-release.yml index b5701ed..1dc47bf 100644 --- a/.azure/workflows/azure-ci-release.yml +++ b/.azure/workflows/azure-ci-release.yml @@ -57,6 +57,7 @@ steps: configuration: '$(buildConfiguration)' versioningScheme: 'byEnvVar' versionEnvVar: '$(packageVersion)' + verbosityPack: 'Diagnostic' - task: PublishBuildArtifacts@1 inputs: From 00b709ad22bf528da0ea0fa7dc5d26ab0d0ec068 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Qui=C3=B1ones?= Date: Mon, 23 Sep 2019 00:31:54 +0200 Subject: [PATCH 11/24] Update azure-ci-release.yml for Azure Pipelines --- .azure/workflows/azure-ci-release.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.azure/workflows/azure-ci-release.yml b/.azure/workflows/azure-ci-release.yml index 1dc47bf..1478f73 100644 --- a/.azure/workflows/azure-ci-release.yml +++ b/.azure/workflows/azure-ci-release.yml @@ -50,14 +50,13 @@ steps: inputs: pollingTimeoutSec: '300' -- task: DotNetCoreCLI@2 +- task: NuGetCommand@2 inputs: command: 'pack' packagesToPack: '**/QD.Components.Semantic.csproj' configuration: '$(buildConfiguration)' versioningScheme: 'byEnvVar' versionEnvVar: '$(packageVersion)' - verbosityPack: 'Diagnostic' - task: PublishBuildArtifacts@1 inputs: From 262c16ce84211424a57549f6c6b8851be2e4280d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Qui=C3=B1ones?= Date: Mon, 23 Sep 2019 00:38:04 +0200 Subject: [PATCH 12/24] Update azure-ci-release.yml for Azure Pipelines --- .azure/workflows/azure-ci-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.azure/workflows/azure-ci-release.yml b/.azure/workflows/azure-ci-release.yml index 1478f73..39baa54 100644 --- a/.azure/workflows/azure-ci-release.yml +++ b/.azure/workflows/azure-ci-release.yml @@ -12,7 +12,7 @@ pool: variables: buildConfiguration: 'Release' - packageVersion: 'null' + packageVersion: 'v0.0.1-testpipeline' steps: @@ -50,7 +50,7 @@ steps: inputs: pollingTimeoutSec: '300' -- task: NuGetCommand@2 +- task: DotNetCoreCLI@2 inputs: command: 'pack' packagesToPack: '**/QD.Components.Semantic.csproj' From 68148029ab6451c0867455243f7d6335da479683 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Qui=C3=B1ones?= Date: Mon, 23 Sep 2019 00:43:29 +0200 Subject: [PATCH 13/24] Update azure-ci-release.yml for Azure Pipelines --- .azure/workflows/azure-ci-release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.azure/workflows/azure-ci-release.yml b/.azure/workflows/azure-ci-release.yml index 39baa54..cc39640 100644 --- a/.azure/workflows/azure-ci-release.yml +++ b/.azure/workflows/azure-ci-release.yml @@ -57,6 +57,7 @@ steps: configuration: '$(buildConfiguration)' versioningScheme: 'byEnvVar' versionEnvVar: '$(packageVersion)' + verbosityPack: 'Diagnostic' - task: PublishBuildArtifacts@1 inputs: From a620dc691d6dcbe3e42bc284545584a800f69129 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Qui=C3=B1ones?= Date: Mon, 23 Sep 2019 00:50:46 +0200 Subject: [PATCH 14/24] Update azure-ci-release.yml for Azure Pipelines --- .azure/workflows/azure-ci-release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.azure/workflows/azure-ci-release.yml b/.azure/workflows/azure-ci-release.yml index cc39640..30897bc 100644 --- a/.azure/workflows/azure-ci-release.yml +++ b/.azure/workflows/azure-ci-release.yml @@ -55,6 +55,7 @@ steps: command: 'pack' packagesToPack: '**/QD.Components.Semantic.csproj' configuration: '$(buildConfiguration)' + nobuild: true versioningScheme: 'byEnvVar' versionEnvVar: '$(packageVersion)' verbosityPack: 'Diagnostic' From a42298991aa52d8c3327c87ceecc4d3adbd9f50b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Qui=C3=B1ones?= Date: Mon, 23 Sep 2019 01:06:23 +0200 Subject: [PATCH 15/24] Update azure-ci-release.yml for Azure Pipelines --- .azure/workflows/azure-ci-release.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.azure/workflows/azure-ci-release.yml b/.azure/workflows/azure-ci-release.yml index 30897bc..64be157 100644 --- a/.azure/workflows/azure-ci-release.yml +++ b/.azure/workflows/azure-ci-release.yml @@ -12,7 +12,6 @@ pool: variables: buildConfiguration: 'Release' - packageVersion: 'v0.0.1-testpipeline' steps: From e5cf52d09cc94c04447bb348b85dda620fe1a3cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Rodrigo=20Qui=C3=B1ones=20Pinilla?= Date: Tue, 24 Sep 2019 00:10:47 +0200 Subject: [PATCH 16/24] Updated packages and SDK from pipelines --- .azure/workflows/azure-ci-development.yml | 4 +- .azure/workflows/azure-ci-release.yml | 4 +- .../QD.Components.Semantic.Demo.csproj | 8 +- .../QD.Components.Semantic.csproj | 4 +- .../QD.Components.Semantic.xml | 9190 +++++++++++++++++ 5 files changed, 9200 insertions(+), 10 deletions(-) create mode 100644 QD.Components.Semantic/QD.Components.Semantic.xml diff --git a/.azure/workflows/azure-ci-development.yml b/.azure/workflows/azure-ci-development.yml index 4809db9..cd9821c 100644 --- a/.azure/workflows/azure-ci-development.yml +++ b/.azure/workflows/azure-ci-development.yml @@ -23,10 +23,10 @@ steps: # Install .NET Core SDK - task: DotNetCoreInstaller@1 inputs: - version: '2.2.402' + version: '2.2.x' - task: DotNetCoreInstaller@1 inputs: - version: '3.0.100-rc1-014190' + version: '3.0.x' # SonarCloud Prepare Analysis - task: SonarCloudPrepare@1 diff --git a/.azure/workflows/azure-ci-release.yml b/.azure/workflows/azure-ci-release.yml index c903062..1709f79 100644 --- a/.azure/workflows/azure-ci-release.yml +++ b/.azure/workflows/azure-ci-release.yml @@ -24,10 +24,10 @@ steps: # Install .NET Core SDK - task: DotNetCoreInstaller@1 inputs: - version: '2.2.402' + version: '2.2.x' - task: DotNetCoreInstaller@1 inputs: - version: '3.0.100-rc1-014190' + version: '3.0.x' # SonarCloud Prepare Analysis - task: SonarCloudPrepare@1 diff --git a/QD.Components.Semantic.Demo/QD.Components.Semantic.Demo.csproj b/QD.Components.Semantic.Demo/QD.Components.Semantic.Demo.csproj index 890cde4..769949e 100644 --- a/QD.Components.Semantic.Demo/QD.Components.Semantic.Demo.csproj +++ b/QD.Components.Semantic.Demo/QD.Components.Semantic.Demo.csproj @@ -8,10 +8,10 @@ - - - - + + + + diff --git a/QD.Components.Semantic/QD.Components.Semantic.csproj b/QD.Components.Semantic/QD.Components.Semantic.csproj index c4aec43..ebb0151 100644 --- a/QD.Components.Semantic/QD.Components.Semantic.csproj +++ b/QD.Components.Semantic/QD.Components.Semantic.csproj @@ -17,8 +17,8 @@ - - + + diff --git a/QD.Components.Semantic/QD.Components.Semantic.xml b/QD.Components.Semantic/QD.Components.Semantic.xml new file mode 100644 index 0000000..7c2866b --- /dev/null +++ b/QD.Components.Semantic/QD.Components.Semantic.xml @@ -0,0 +1,9190 @@ + + + + QD.Components.Semantic + + + + + Component base for semantic components + + + + + An element type to render as. + + + + + An element component to render as. + + + + + Child content + + + + + Other input attributes + + + + + Html Tag + + + + + CSS classes + + + + + All component attributes + + + + + Constructor + + + + + + + + + + + + + + Configure the semantic component to be rendered + + + + + A Button indicates a possible user action. + + + + + A button can be formatted to show different levels of emphasis. + + + + + A button can be formatted to show different levels of emphasis. + + + + + A button can animate to show hidden content. + + + + + Called after user's click. + + + + + + + + Used in some Button types, such as `animated`. + + + + + Initially visible, hidden on hover. + + + + + Initially hidden, visible on hover. + + + + + + + + A container limits content to a maximum width. + + + + + Container has no maximum width. + + + + + Reduce maximum width to more naturally accommodate text. + + + + + Align container text. + + + + + + + + A flag is is used to represent a political state. + + + + + Flag name, can use the two digit country code, the full name, or a common alias. + + + + + + + + An icon is a glyph used to represent something else. + + + + + Icon can have an aria label. + + + + + Icon can have an aria label. + + + + + Formatted to appear bordered. + + + + + Icon can formatted to appear circular. + + + + + Color of the icon. + + + + + Icons can display a smaller corner icon. + + + + + Show that the icon is inactive. + + + + + Fitted, without space to left or right of Icon. + + + + + Icon can be flipped. + + + + + Formatted to have its colors inverted for contrast. + + + + + Icon can be formatted as a link. + + + + + Icon can be used as a simple loader. + + + + + Name of the icon. + + + + + Icon can rotated. + + + + + Size of the icon. + + + + + + + + Several icons can be used together as a group. + + + + + Size of the icon group. + + + + + + + + Button animation + + + + + None + + + + + Animation horizontal + + + + + Animation vertical + + + + + Animation fade + + + + + Semantic color + + + + + None + + + + + Red color + + + + + Orange color + + + + + Yellow color + + + + + Olive color + + + + + Green color + + + + + Teal color + + + + + Blue color + + + + + Violet color + + + + + Purple color + + + + + Pink color + + + + + Brown color + + + + + Grey color + + + + + Black color + + + + + Text align + + + + + None + + + + + Text align left + + + + + Text align right + + + + + Text align center + + + + + Text align justified + + + + + Semantic flag + + + + + Semantic value: ad + + + + + Semantic value: andorra + + + + + Semantic value: ae + + + + + Semantic value: united arab emirates + + + + + Semantic value: uae + + + + + Semantic value: af + + + + + Semantic value: afghanistan + + + + + Semantic value: ag + + + + + Semantic value: antigua + + + + + Semantic value: ai + + + + + Semantic value: anguilla + + + + + Semantic value: al + + + + + Semantic value: albania + + + + + Semantic value: am + + + + + Semantic value: armenia + + + + + Semantic value: an + + + + + Semantic value: netherlands antilles + + + + + Semantic value: ao + + + + + Semantic value: angola + + + + + Semantic value: ar + + + + + Semantic value: argentina + + + + + Semantic value: as + + + + + Semantic value: american samoa + + + + + Semantic value: at + + + + + Semantic value: austria + + + + + Semantic value: au + + + + + Semantic value: australia + + + + + Semantic value: aw + + + + + Semantic value: aruba + + + + + Semantic value: ax + + + + + Semantic value: aland islands + + + + + Semantic value: az + + + + + Semantic value: azerbaijan + + + + + Semantic value: ba + + + + + Semantic value: bosnia + + + + + Semantic value: bb + + + + + Semantic value: barbados + + + + + Semantic value: bd + + + + + Semantic value: bangladesh + + + + + Semantic value: be + + + + + Semantic value: belgium + + + + + Semantic value: bf + + + + + Semantic value: burkina faso + + + + + Semantic value: bg + + + + + Semantic value: bulgaria + + + + + Semantic value: bh + + + + + Semantic value: bahrain + + + + + Semantic value: bi + + + + + Semantic value: burundi + + + + + Semantic value: bj + + + + + Semantic value: benin + + + + + Semantic value: bm + + + + + Semantic value: bermuda + + + + + Semantic value: bn + + + + + Semantic value: brunei + + + + + Semantic value: bo + + + + + Semantic value: bolivia + + + + + Semantic value: br + + + + + Semantic value: brazil + + + + + Semantic value: bs + + + + + Semantic value: bahamas + + + + + Semantic value: bt + + + + + Semantic value: bhutan + + + + + Semantic value: bv + + + + + Semantic value: bouvet island + + + + + Semantic value: bw + + + + + Semantic value: botswana + + + + + Semantic value: by + + + + + Semantic value: belarus + + + + + Semantic value: bz + + + + + Semantic value: belize + + + + + Semantic value: ca + + + + + Semantic value: canada + + + + + Semantic value: cc + + + + + Semantic value: cocos islands + + + + + Semantic value: cd + + + + + Semantic value: congo + + + + + Semantic value: cf + + + + + Semantic value: central african republic + + + + + Semantic value: cg + + + + + Semantic value: congo brazzaville + + + + + Semantic value: ch + + + + + Semantic value: switzerland + + + + + Semantic value: ci + + + + + Semantic value: cote divoire + + + + + Semantic value: ck + + + + + Semantic value: cook islands + + + + + Semantic value: cl + + + + + Semantic value: chile + + + + + Semantic value: cm + + + + + Semantic value: cameroon + + + + + Semantic value: cn + + + + + Semantic value: china + + + + + Semantic value: co + + + + + Semantic value: colombia + + + + + Semantic value: cr + + + + + Semantic value: costa rica + + + + + Semantic value: cs + + + + + Semantic value: cu + + + + + Semantic value: cuba + + + + + Semantic value: cv + + + + + Semantic value: cape verde + + + + + Semantic value: cx + + + + + Semantic value: christmas island + + + + + Semantic value: cy + + + + + Semantic value: cyprus + + + + + Semantic value: cz + + + + + Semantic value: czech republic + + + + + Semantic value: de + + + + + Semantic value: germany + + + + + Semantic value: dj + + + + + Semantic value: djibouti + + + + + Semantic value: dk + + + + + Semantic value: denmark + + + + + Semantic value: dm + + + + + Semantic value: dominica + + + + + Semantic value: do + + + + + Semantic value: dominican republic + + + + + Semantic value: dz + + + + + Semantic value: algeria + + + + + Semantic value: ec + + + + + Semantic value: ecuador + + + + + Semantic value: ee + + + + + Semantic value: estonia + + + + + Semantic value: eg + + + + + Semantic value: egypt + + + + + Semantic value: eh + + + + + Semantic value: western sahara + + + + + Semantic value: er + + + + + Semantic value: eritrea + + + + + Semantic value: es + + + + + Semantic value: spain + + + + + Semantic value: et + + + + + Semantic value: ethiopia + + + + + Semantic value: eu + + + + + Semantic value: european union + + + + + Semantic value: fi + + + + + Semantic value: finland + + + + + Semantic value: fj + + + + + Semantic value: fiji + + + + + Semantic value: fk + + + + + Semantic value: falkland islands + + + + + Semantic value: fm + + + + + Semantic value: micronesia + + + + + Semantic value: fo + + + + + Semantic value: faroe islands + + + + + Semantic value: fr + + + + + Semantic value: france + + + + + Semantic value: ga + + + + + Semantic value: gabon + + + + + Semantic value: gb + + + + + Semantic value: uk + + + + + Semantic value: united kingdom + + + + + Semantic value: gd + + + + + Semantic value: grenada + + + + + Semantic value: ge + + + + + Semantic value: georgia + + + + + Semantic value: gf + + + + + Semantic value: french guiana + + + + + Semantic value: gh + + + + + Semantic value: ghana + + + + + Semantic value: gi + + + + + Semantic value: gibraltar + + + + + Semantic value: gl + + + + + Semantic value: greenland + + + + + Semantic value: gm + + + + + Semantic value: gambia + + + + + Semantic value: gn + + + + + Semantic value: guinea + + + + + Semantic value: gp + + + + + Semantic value: guadeloupe + + + + + Semantic value: gq + + + + + Semantic value: equatorial guinea + + + + + Semantic value: gr + + + + + Semantic value: greece + + + + + Semantic value: gs + + + + + Semantic value: sandwich islands + + + + + Semantic value: gt + + + + + Semantic value: guatemala + + + + + Semantic value: gu + + + + + Semantic value: guam + + + + + Semantic value: gw + + + + + Semantic value: guinea-bissau + + + + + Semantic value: gy + + + + + Semantic value: guyana + + + + + Semantic value: hk + + + + + Semantic value: hong kong + + + + + Semantic value: hm + + + + + Semantic value: heard island + + + + + Semantic value: hn + + + + + Semantic value: honduras + + + + + Semantic value: hr + + + + + Semantic value: croatia + + + + + Semantic value: ht + + + + + Semantic value: haiti + + + + + Semantic value: hu + + + + + Semantic value: hungary + + + + + Semantic value: id + + + + + Semantic value: indonesia + + + + + Semantic value: ie + + + + + Semantic value: ireland + + + + + Semantic value: il + + + + + Semantic value: israel + + + + + Semantic value: in + + + + + Semantic value: india + + + + + Semantic value: io + + + + + Semantic value: indian ocean territory + + + + + Semantic value: iq + + + + + Semantic value: iraq + + + + + Semantic value: ir + + + + + Semantic value: iran + + + + + Semantic value: is + + + + + Semantic value: iceland + + + + + Semantic value: it + + + + + Semantic value: italy + + + + + Semantic value: jm + + + + + Semantic value: jamaica + + + + + Semantic value: jo + + + + + Semantic value: jordan + + + + + Semantic value: jp + + + + + Semantic value: japan + + + + + Semantic value: ke + + + + + Semantic value: kenya + + + + + Semantic value: kg + + + + + Semantic value: kyrgyzstan + + + + + Semantic value: kh + + + + + Semantic value: cambodia + + + + + Semantic value: ki + + + + + Semantic value: kiribati + + + + + Semantic value: km + + + + + Semantic value: comoros + + + + + Semantic value: kn + + + + + Semantic value: saint kitts and nevis + + + + + Semantic value: kp + + + + + Semantic value: north korea + + + + + Semantic value: kr + + + + + Semantic value: south korea + + + + + Semantic value: kw + + + + + Semantic value: kuwait + + + + + Semantic value: ky + + + + + Semantic value: cayman islands + + + + + Semantic value: kz + + + + + Semantic value: kazakhstan + + + + + Semantic value: la + + + + + Semantic value: laos + + + + + Semantic value: lb + + + + + Semantic value: lebanon + + + + + Semantic value: lc + + + + + Semantic value: saint lucia + + + + + Semantic value: li + + + + + Semantic value: liechtenstein + + + + + Semantic value: lk + + + + + Semantic value: sri lanka + + + + + Semantic value: lr + + + + + Semantic value: liberia + + + + + Semantic value: ls + + + + + Semantic value: lesotho + + + + + Semantic value: lt + + + + + Semantic value: lithuania + + + + + Semantic value: lu + + + + + Semantic value: luxembourg + + + + + Semantic value: lv + + + + + Semantic value: latvia + + + + + Semantic value: ly + + + + + Semantic value: libya + + + + + Semantic value: ma + + + + + Semantic value: morocco + + + + + Semantic value: mc + + + + + Semantic value: monaco + + + + + Semantic value: md + + + + + Semantic value: moldova + + + + + Semantic value: me + + + + + Semantic value: montenegro + + + + + Semantic value: mg + + + + + Semantic value: madagascar + + + + + Semantic value: mh + + + + + Semantic value: marshall islands + + + + + Semantic value: mk + + + + + Semantic value: macedonia + + + + + Semantic value: ml + + + + + Semantic value: mali + + + + + Semantic value: mm + + + + + Semantic value: myanmar + + + + + Semantic value: burma + + + + + Semantic value: mn + + + + + Semantic value: mongolia + + + + + Semantic value: mo + + + + + Semantic value: macau + + + + + Semantic value: mp + + + + + Semantic value: northern mariana islands + + + + + Semantic value: mq + + + + + Semantic value: martinique + + + + + Semantic value: mr + + + + + Semantic value: mauritania + + + + + Semantic value: ms + + + + + Semantic value: montserrat + + + + + Semantic value: mt + + + + + Semantic value: malta + + + + + Semantic value: mu + + + + + Semantic value: mauritius + + + + + Semantic value: mv + + + + + Semantic value: maldives + + + + + Semantic value: mw + + + + + Semantic value: malawi + + + + + Semantic value: mx + + + + + Semantic value: mexico + + + + + Semantic value: my + + + + + Semantic value: malaysia + + + + + Semantic value: mz + + + + + Semantic value: mozambique + + + + + Semantic value: na + + + + + Semantic value: namibia + + + + + Semantic value: nc + + + + + Semantic value: new caledonia + + + + + Semantic value: ne + + + + + Semantic value: niger + + + + + Semantic value: nf + + + + + Semantic value: norfolk island + + + + + Semantic value: ng + + + + + Semantic value: nigeria + + + + + Semantic value: ni + + + + + Semantic value: nicaragua + + + + + Semantic value: nl + + + + + Semantic value: netherlands + + + + + Semantic value: no + + + + + Semantic value: norway + + + + + Semantic value: np + + + + + Semantic value: nepal + + + + + Semantic value: nr + + + + + Semantic value: nauru + + + + + Semantic value: nu + + + + + Semantic value: niue + + + + + Semantic value: nz + + + + + Semantic value: new zealand + + + + + Semantic value: om + + + + + Semantic value: oman + + + + + Semantic value: pa + + + + + Semantic value: panama + + + + + Semantic value: pe + + + + + Semantic value: peru + + + + + Semantic value: pf + + + + + Semantic value: french polynesia + + + + + Semantic value: pg + + + + + Semantic value: new guinea + + + + + Semantic value: ph + + + + + Semantic value: philippines + + + + + Semantic value: pk + + + + + Semantic value: pakistan + + + + + Semantic value: pl + + + + + Semantic value: poland + + + + + Semantic value: pm + + + + + Semantic value: saint pierre + + + + + Semantic value: pn + + + + + Semantic value: pitcairn islands + + + + + Semantic value: pr + + + + + Semantic value: puerto rico + + + + + Semantic value: ps + + + + + Semantic value: palestine + + + + + Semantic value: pt + + + + + Semantic value: portugal + + + + + Semantic value: pw + + + + + Semantic value: palau + + + + + Semantic value: py + + + + + Semantic value: paraguay + + + + + Semantic value: qa + + + + + Semantic value: qatar + + + + + Semantic value: re + + + + + Semantic value: reunion + + + + + Semantic value: ro + + + + + Semantic value: romania + + + + + Semantic value: rs + + + + + Semantic value: serbia + + + + + Semantic value: ru + + + + + Semantic value: russia + + + + + Semantic value: rw + + + + + Semantic value: rwanda + + + + + Semantic value: sa + + + + + Semantic value: saudi arabia + + + + + Semantic value: sb + + + + + Semantic value: solomon islands + + + + + Semantic value: sc + + + + + Semantic value: seychelles + + + + + Semantic value: gb sct + + + + + Semantic value: scotland + + + + + Semantic value: sd + + + + + Semantic value: sudan + + + + + Semantic value: se + + + + + Semantic value: sweden + + + + + Semantic value: sg + + + + + Semantic value: singapore + + + + + Semantic value: sh + + + + + Semantic value: saint helena + + + + + Semantic value: si + + + + + Semantic value: slovenia + + + + + Semantic value: sj + + + + + Semantic value: svalbard + + + + + Semantic value: jan mayen + + + + + Semantic value: sk + + + + + Semantic value: slovakia + + + + + Semantic value: sl + + + + + Semantic value: sierra leone + + + + + Semantic value: sm + + + + + Semantic value: san marino + + + + + Semantic value: sn + + + + + Semantic value: senegal + + + + + Semantic value: so + + + + + Semantic value: somalia + + + + + Semantic value: sr + + + + + Semantic value: suriname + + + + + Semantic value: st + + + + + Semantic value: sao tome + + + + + Semantic value: sv + + + + + Semantic value: el salvador + + + + + Semantic value: sy + + + + + Semantic value: syria + + + + + Semantic value: sz + + + + + Semantic value: swaziland + + + + + Semantic value: tc + + + + + Semantic value: caicos islands + + + + + Semantic value: td + + + + + Semantic value: chad + + + + + Semantic value: tf + + + + + Semantic value: french territories + + + + + Semantic value: tg + + + + + Semantic value: togo + + + + + Semantic value: th + + + + + Semantic value: thailand + + + + + Semantic value: tj + + + + + Semantic value: tajikistan + + + + + Semantic value: tk + + + + + Semantic value: tokelau + + + + + Semantic value: tl + + + + + Semantic value: timorleste + + + + + Semantic value: tm + + + + + Semantic value: turkmenistan + + + + + Semantic value: tn + + + + + Semantic value: tunisia + + + + + Semantic value: to + + + + + Semantic value: tonga + + + + + Semantic value: tr + + + + + Semantic value: turkey + + + + + Semantic value: tt + + + + + Semantic value: trinidad + + + + + Semantic value: tv + + + + + Semantic value: tuvalu + + + + + Semantic value: tw + + + + + Semantic value: taiwan + + + + + Semantic value: tz + + + + + Semantic value: tanzania + + + + + Semantic value: ua + + + + + Semantic value: ukraine + + + + + Semantic value: ug + + + + + Semantic value: uganda + + + + + Semantic value: um + + + + + Semantic value: us minor islands + + + + + Semantic value: us + + + + + Semantic value: america + + + + + Semantic value: united states + + + + + Semantic value: uy + + + + + Semantic value: uruguay + + + + + Semantic value: uz + + + + + Semantic value: uzbekistan + + + + + Semantic value: va + + + + + Semantic value: vatican city + + + + + Semantic value: vc + + + + + Semantic value: saint vincent + + + + + Semantic value: ve + + + + + Semantic value: venezuela + + + + + Semantic value: vg + + + + + Semantic value: british virgin islands + + + + + Semantic value: vi + + + + + Semantic value: us virgin islands + + + + + Semantic value: vn + + + + + Semantic value: vietnam + + + + + Semantic value: vu + + + + + Semantic value: vanuatu + + + + + Semantic value: gb wls + + + + + Semantic value: wales + + + + + Semantic value: wf + + + + + Semantic value: wallis and futuna + + + + + Semantic value: ws + + + + + Semantic value: samoa + + + + + Semantic value: ye + + + + + Semantic value: yemen + + + + + Semantic value: yt + + + + + Semantic value: mayotte + + + + + Semantic value: za + + + + + Semantic value: south africa + + + + + Semantic value: zm + + + + + Semantic value: zambia + + + + + Semantic value: zw + + + + + Semantic value: zimbabwe + + + + + Semantic icon + + + + + Semantic value: american sign language interpreting + + + + + Semantic value: assistive listening systems + + + + + Semantic value: audio description + + + + + Semantic value: blind + + + + + Semantic value: braille + + + + + Semantic value: closed captioning + + + + + Semantic value: closed captioning outline + + + + + Semantic value: deaf + + + + + Semantic value: low vision + + + + + Semantic value: phone volume + + + + + Semantic value: question circle + + + + + Semantic value: question circle outline + + + + + Semantic value: sign language + + + + + Semantic value: tty + + + + + Semantic value: universal access + + + + + Semantic value: wheelchair + + + + + Semantic value: angle double down + + + + + Semantic value: angle double left + + + + + Semantic value: angle double right + + + + + Semantic value: angle double up + + + + + Semantic value: angle down + + + + + Semantic value: angle left + + + + + Semantic value: angle right + + + + + Semantic value: angle up + + + + + Semantic value: arrow alternate circle down + + + + + Semantic value: arrow alternate circle down outline + + + + + Semantic value: arrow alternate circle left + + + + + Semantic value: arrow alternate circle left outline + + + + + Semantic value: arrow alternate circle right + + + + + Semantic value: arrow alternate circle right outline + + + + + Semantic value: arrow alternate circle up + + + + + Semantic value: arrow alternate circle up outline + + + + + Semantic value: arrow circle down + + + + + Semantic value: arrow circle left + + + + + Semantic value: arrow circle right + + + + + Semantic value: arrow circle up + + + + + Semantic value: arrow down + + + + + Semantic value: arrow left + + + + + Semantic value: arrow right + + + + + Semantic value: arrow up + + + + + Semantic value: arrows alternate + + + + + Semantic value: arrows alternate horizontal + + + + + Semantic value: arrows alternate vertical + + + + + Semantic value: caret down + + + + + Semantic value: caret left + + + + + Semantic value: caret right + + + + + Semantic value: caret square down + + + + + Semantic value: caret square down outline + + + + + Semantic value: caret square left + + + + + Semantic value: caret square left outline + + + + + Semantic value: caret square right + + + + + Semantic value: caret square right outline + + + + + Semantic value: caret square up + + + + + Semantic value: caret square up outline + + + + + Semantic value: caret up + + + + + Semantic value: cart arrow down + + + + + Semantic value: chart line + + + + + Semantic value: chevron circle down + + + + + Semantic value: chevron circle left + + + + + Semantic value: chevron circle right + + + + + Semantic value: chevron circle up + + + + + Semantic value: chevron down + + + + + Semantic value: chevron left + + + + + Semantic value: chevron right + + + + + Semantic value: chevron up + + + + + Semantic value: cloud download + + + + + Semantic value: cloud upload + + + + + Semantic value: download + + + + + Semantic value: exchange + + + + + Semantic value: expand arrows alternate + + + + + Semantic value: external alternate + + + + + Semantic value: external square alternate + + + + + Semantic value: hand point down + + + + + Semantic value: hand point down outline + + + + + Semantic value: hand point left + + + + + Semantic value: hand point left outline + + + + + Semantic value: hand point right + + + + + Semantic value: hand point right outline + + + + + Semantic value: hand point up + + + + + Semantic value: hand point up outline + + + + + Semantic value: hand pointer + + + + + Semantic value: hand pointer outline + + + + + Semantic value: history + + + + + Semantic value: level down alternate + + + + + Semantic value: level up alternate + + + + + Semantic value: location arrow + + + + + Semantic value: long arrow alternate down + + + + + Semantic value: long arrow alternate left + + + + + Semantic value: long arrow alternate right + + + + + Semantic value: long arrow alternate up + + + + + Semantic value: mouse pointer + + + + + Semantic value: play + + + + + Semantic value: random + + + + + Semantic value: recycle + + + + + Semantic value: redo + + + + + Semantic value: redo alternate + + + + + Semantic value: reply + + + + + Semantic value: reply all + + + + + Semantic value: retweet + + + + + Semantic value: share + + + + + Semantic value: share square + + + + + Semantic value: share square outline + + + + + Semantic value: sign-in + + + + + Semantic value: sign-out + + + + + Semantic value: sign-in alternate + + + + + Semantic value: sign-out alternate + + + + + Semantic value: sort + + + + + Semantic value: sort alphabet down + + + + + Semantic value: sort alphabet up + + + + + Semantic value: sort amount down + + + + + Semantic value: sort amount up + + + + + Semantic value: sort down + + + + + Semantic value: sort numeric down + + + + + Semantic value: sort numeric up + + + + + Semantic value: sort up + + + + + Semantic value: sync + + + + + Semantic value: sync alternate + + + + + Semantic value: text height + + + + + Semantic value: text width + + + + + Semantic value: undo + + + + + Semantic value: undo alternate + + + + + Semantic value: upload + + + + + Semantic value: zoom-in + + + + + Semantic value: zoom-out + + + + + Semantic value: backward + + + + + Semantic value: circle + + + + + Semantic value: circle outline + + + + + Semantic value: compress + + + + + Semantic value: eject + + + + + Semantic value: expand + + + + + Semantic value: fast backward + + + + + Semantic value: fast forward + + + + + Semantic value: file audio + + + + + Semantic value: file audio outline + + + + + Semantic value: file video + + + + + Semantic value: file video outline + + + + + Semantic value: film + + + + + Semantic value: forward + + + + + Semantic value: headphones + + + + + Semantic value: microphone + + + + + Semantic value: microphone slash + + + + + Semantic value: music + + + + + Semantic value: pause + + + + + Semantic value: pause circle + + + + + Semantic value: pause circle outline + + + + + Semantic value: play circle + + + + + Semantic value: play circle outline + + + + + Semantic value: podcast + + + + + Semantic value: rss + + + + + Semantic value: rss square + + + + + Semantic value: step backward + + + + + Semantic value: step forward + + + + + Semantic value: stop + + + + + Semantic value: stop circle + + + + + Semantic value: stop circle outline + + + + + Semantic value: video + + + + + Semantic value: volume down + + + + + Semantic value: volume off + + + + + Semantic value: volume up + + + + + Semantic value: address book + + + + + Semantic value: address book outline + + + + + Semantic value: address card + + + + + Semantic value: address card outline + + + + + Semantic value: archive + + + + + Semantic value: balance scale + + + + + Semantic value: birthday cake + + + + + Semantic value: book + + + + + Semantic value: briefcase + + + + + Semantic value: building + + + + + Semantic value: building outline + + + + + Semantic value: bullhorn + + + + + Semantic value: bullseye + + + + + Semantic value: calculator + + + + + Semantic value: calendar + + + + + Semantic value: calendar outline + + + + + Semantic value: calendar alternate + + + + + Semantic value: calendar alternate outline + + + + + Semantic value: certificate + + + + + Semantic value: chart area + + + + + Semantic value: chart bar + + + + + Semantic value: chart bar outline + + + + + Semantic value: chart pie + + + + + Semantic value: clipboard + + + + + Semantic value: clipboard outline + + + + + Semantic value: coffee + + + + + Semantic value: columns + + + + + Semantic value: compass + + + + + Semantic value: compass outline + + + + + Semantic value: copy + + + + + Semantic value: copy outline + + + + + Semantic value: copyright + + + + + Semantic value: copyright outline + + + + + Semantic value: cut + + + + + Semantic value: edit + + + + + Semantic value: edit outline + + + + + Semantic value: envelope + + + + + Semantic value: envelope outline + + + + + Semantic value: envelope open + + + + + Semantic value: envelope open outline + + + + + Semantic value: envelope square + + + + + Semantic value: eraser + + + + + Semantic value: fax + + + + + Semantic value: file + + + + + Semantic value: file outline + + + + + Semantic value: file alternate + + + + + Semantic value: file alternate outline + + + + + Semantic value: folder + + + + + Semantic value: folder outline + + + + + Semantic value: folder open + + + + + Semantic value: folder open outline + + + + + Semantic value: globe + + + + + Semantic value: industry + + + + + Semantic value: paperclip + + + + + Semantic value: paste + + + + + Semantic value: pen square + + + + + Semantic value: pencil alternate + + + + + Semantic value: percent + + + + + Semantic value: phone + + + + + Semantic value: phone square + + + + + Semantic value: registered + + + + + Semantic value: registered outline + + + + + Semantic value: save + + + + + Semantic value: save outline + + + + + Semantic value: sitemap + + + + + Semantic value: sticky note + + + + + Semantic value: sticky note outline + + + + + Semantic value: suitcase + + + + + Semantic value: table + + + + + Semantic value: tag + + + + + Semantic value: tags + + + + + Semantic value: tasks + + + + + Semantic value: thumbtack + + + + + Semantic value: trademark + + + + + Semantic value: chess + + + + + Semantic value: chess bishop + + + + + Semantic value: chess board + + + + + Semantic value: chess king + + + + + Semantic value: chess knight + + + + + Semantic value: chess pawn + + + + + Semantic value: chess queen + + + + + Semantic value: chess rook + + + + + Semantic value: square full + + + + + Semantic value: barcode + + + + + Semantic value: bath + + + + + Semantic value: bug + + + + + Semantic value: code + + + + + Semantic value: code branch + + + + + Semantic value: file code + + + + + Semantic value: file code outline + + + + + Semantic value: filter + + + + + Semantic value: fire extinguisher + + + + + Semantic value: keyboard + + + + + Semantic value: keyboard outline + + + + + Semantic value: microchip + + + + + Semantic value: qrcode + + + + + Semantic value: shield alternate + + + + + Semantic value: terminal + + + + + Semantic value: user secret + + + + + Semantic value: window close + + + + + Semantic value: window close outline + + + + + Semantic value: window maximize + + + + + Semantic value: window maximize outline + + + + + Semantic value: window minimize + + + + + Semantic value: window minimize outline + + + + + Semantic value: window restore + + + + + Semantic value: window restore outline + + + + + Semantic value: at + + + + + Semantic value: bell + + + + + Semantic value: bell outline + + + + + Semantic value: bell slash + + + + + Semantic value: bell slash outline + + + + + Semantic value: comment + + + + + Semantic value: comment outline + + + + + Semantic value: comment alternate + + + + + Semantic value: comment alternate outline + + + + + Semantic value: comments + + + + + Semantic value: comments outline + + + + + Semantic value: inbox + + + + + Semantic value: language + + + + + Semantic value: mobile + + + + + Semantic value: mobile alternate + + + + + Semantic value: paper plane + + + + + Semantic value: paper plane outline + + + + + Semantic value: wifi + + + + + Semantic value: desktop + + + + + Semantic value: hdd + + + + + Semantic value: hdd outline + + + + + Semantic value: laptop + + + + + Semantic value: plug + + + + + Semantic value: power off + + + + + Semantic value: print + + + + + Semantic value: server + + + + + Semantic value: tablet + + + + + Semantic value: tablet alternate + + + + + Semantic value: tv + + + + + Semantic value: dollar sign + + + + + Semantic value: euro sign + + + + + Semantic value: lira sign + + + + + Semantic value: money bill alternate + + + + + Semantic value: money bill alternate outline + + + + + Semantic value: pound sign + + + + + Semantic value: ruble sign + + + + + Semantic value: rupee sign + + + + + Semantic value: shekel sign + + + + + Semantic value: won sign + + + + + Semantic value: yen sign + + + + + Semantic value: calendar check + + + + + Semantic value: calendar check outline + + + + + Semantic value: calendar minus + + + + + Semantic value: calendar minus outline + + + + + Semantic value: calendar plus + + + + + Semantic value: calendar plus outline + + + + + Semantic value: calendar times + + + + + Semantic value: calendar times outline + + + + + Semantic value: clock + + + + + Semantic value: clock outline + + + + + Semantic value: hourglass + + + + + Semantic value: hourglass outline + + + + + Semantic value: hourglass end + + + + + Semantic value: hourglass half + + + + + Semantic value: hourglass start + + + + + Semantic value: stopwatch + + + + + Semantic value: adjust + + + + + Semantic value: clone + + + + + Semantic value: clone outline + + + + + Semantic value: crop + + + + + Semantic value: crosshairs + + + + + Semantic value: eye + + + + + Semantic value: eye dropper + + + + + Semantic value: eye slash + + + + + Semantic value: eye slash outline + + + + + Semantic value: object group + + + + + Semantic value: object group outline + + + + + Semantic value: object ungroup + + + + + Semantic value: object ungroup outline + + + + + Semantic value: paint brush + + + + + Semantic value: tint + + + + + Semantic value: align center + + + + + Semantic value: align justify + + + + + Semantic value: align left + + + + + Semantic value: align right + + + + + Semantic value: bold + + + + + Semantic value: font + + + + + Semantic value: heading + + + + + Semantic value: i cursor + + + + + Semantic value: indent + + + + + Semantic value: italic + + + + + Semantic value: linkify + + + + + Semantic value: list + + + + + Semantic value: list alternate + + + + + Semantic value: list alternate outline + + + + + Semantic value: list ol + + + + + Semantic value: list ul + + + + + Semantic value: outdent + + + + + Semantic value: paragraph + + + + + Semantic value: quote left + + + + + Semantic value: quote right + + + + + Semantic value: strikethrough + + + + + Semantic value: subscript + + + + + Semantic value: superscript + + + + + Semantic value: th + + + + + Semantic value: th large + + + + + Semantic value: th list + + + + + Semantic value: trash + + + + + Semantic value: trash alternate + + + + + Semantic value: trash alternate outline + + + + + Semantic value: underline + + + + + Semantic value: unlink + + + + + Semantic value: file archive + + + + + Semantic value: file archive outline + + + + + Semantic value: file excel + + + + + Semantic value: file excel outline + + + + + Semantic value: file image + + + + + Semantic value: file image outline + + + + + Semantic value: file pdf + + + + + Semantic value: file pdf outline + + + + + Semantic value: file powerpoint + + + + + Semantic value: file powerpoint outline + + + + + Semantic value: file word + + + + + Semantic value: file word outline + + + + + Semantic value: genderless + + + + + Semantic value: mars + + + + + Semantic value: mars double + + + + + Semantic value: mars stroke + + + + + Semantic value: mars stroke horizontal + + + + + Semantic value: mars stroke vertical + + + + + Semantic value: mercury + + + + + Semantic value: neuter + + + + + Semantic value: transgender + + + + + Semantic value: transgender alternate + + + + + Semantic value: venus + + + + + Semantic value: venus double + + + + + Semantic value: venus mars + + + + + Semantic value: hand lizard + + + + + Semantic value: hand lizard outline + + + + + Semantic value: hand paper + + + + + Semantic value: hand paper outline + + + + + Semantic value: hand peace + + + + + Semantic value: hand peace outline + + + + + Semantic value: hand rock + + + + + Semantic value: hand rock outline + + + + + Semantic value: hand scissors + + + + + Semantic value: hand scissors outline + + + + + Semantic value: hand spock + + + + + Semantic value: hand spock outline + + + + + Semantic value: handshake + + + + + Semantic value: handshake outline + + + + + Semantic value: thumbs down + + + + + Semantic value: thumbs down outline + + + + + Semantic value: thumbs up + + + + + Semantic value: thumbs up outline + + + + + Semantic value: ambulance + + + + + Semantic value: h square + + + + + Semantic value: heart + + + + + Semantic value: heart outline + + + + + Semantic value: heartbeat + + + + + Semantic value: hospital + + + + + Semantic value: hospital outline + + + + + Semantic value: medkit + + + + + Semantic value: plus square + + + + + Semantic value: plus square outline + + + + + Semantic value: stethoscope + + + + + Semantic value: user md + + + + + Semantic value: bolt + + + + + Semantic value: camera + + + + + Semantic value: camera retro + + + + + Semantic value: id badge + + + + + Semantic value: id badge outline + + + + + Semantic value: id card + + + + + Semantic value: id card outline + + + + + Semantic value: image + + + + + Semantic value: image outline + + + + + Semantic value: images + + + + + Semantic value: images outline + + + + + Semantic value: sliders horizontal + + + + + Semantic value: ban + + + + + Semantic value: bars + + + + + Semantic value: beer + + + + + Semantic value: check + + + + + Semantic value: check circle + + + + + Semantic value: check circle outline + + + + + Semantic value: check square + + + + + Semantic value: check square outline + + + + + Semantic value: cloud + + + + + Semantic value: cog + + + + + Semantic value: cogs + + + + + Semantic value: database + + + + + Semantic value: dot circle + + + + + Semantic value: dot circle outline + + + + + Semantic value: ellipsis horizontal + + + + + Semantic value: ellipsis vertical + + + + + Semantic value: exclamation + + + + + Semantic value: exclamation circle + + + + + Semantic value: exclamation triangle + + + + + Semantic value: flag + + + + + Semantic value: flag outline + + + + + Semantic value: flag checkered + + + + + Semantic value: frown + + + + + Semantic value: frown outline + + + + + Semantic value: hashtag + + + + + Semantic value: home + + + + + Semantic value: info + + + + + Semantic value: info circle + + + + + Semantic value: magic + + + + + Semantic value: meh + + + + + Semantic value: meh outline + + + + + Semantic value: minus + + + + + Semantic value: minus circle + + + + + Semantic value: minus square + + + + + Semantic value: minus square outline + + + + + Semantic value: plus + + + + + Semantic value: plus circle + + + + + Semantic value: question + + + + + Semantic value: search + + + + + Semantic value: search minus + + + + + Semantic value: search plus + + + + + Semantic value: share alternate + + + + + Semantic value: share alternate square + + + + + Semantic value: signal + + + + + Semantic value: smile + + + + + Semantic value: smile outline + + + + + Semantic value: star + + + + + Semantic value: star outline + + + + + Semantic value: star half + + + + + Semantic value: star half outline + + + + + Semantic value: times + + + + + Semantic value: times circle + + + + + Semantic value: times circle outline + + + + + Semantic value: toggle off + + + + + Semantic value: toggle on + + + + + Semantic value: trophy + + + + + Semantic value: user + + + + + Semantic value: user outline + + + + + Semantic value: user circle + + + + + Semantic value: user circle outline + + + + + Semantic value: box + + + + + Semantic value: boxes + + + + + Semantic value: clipboard check + + + + + Semantic value: clipboard list + + + + + Semantic value: dolly + + + + + Semantic value: dolly flatbed + + + + + Semantic value: pallet + + + + + Semantic value: shipping fast + + + + + Semantic value: truck + + + + + Semantic value: warehouse + + + + + Semantic value: anchor + + + + + Semantic value: bed + + + + + Semantic value: bicycle + + + + + Semantic value: binoculars + + + + + Semantic value: bomb + + + + + Semantic value: bookmark + + + + + Semantic value: bookmark outline + + + + + Semantic value: car + + + + + Semantic value: fighter jet + + + + + Semantic value: fire + + + + + Semantic value: flask + + + + + Semantic value: gamepad + + + + + Semantic value: gavel + + + + + Semantic value: gift + + + + + Semantic value: glass martini + + + + + Semantic value: graduation cap + + + + + Semantic value: key + + + + + Semantic value: leaf + + + + + Semantic value: lemon + + + + + Semantic value: lemon outline + + + + + Semantic value: life ring + + + + + Semantic value: life ring outline + + + + + Semantic value: lightbulb + + + + + Semantic value: lightbulb outline + + + + + Semantic value: magnet + + + + + Semantic value: male + + + + + Semantic value: map + + + + + Semantic value: map outline + + + + + Semantic value: map marker + + + + + Semantic value: map marker alternate + + + + + Semantic value: map pin + + + + + Semantic value: map signs + + + + + Semantic value: motorcycle + + + + + Semantic value: newspaper + + + + + Semantic value: newspaper outline + + + + + Semantic value: paw + + + + + Semantic value: plane + + + + + Semantic value: road + + + + + Semantic value: rocket + + + + + Semantic value: ship + + + + + Semantic value: shopping bag + + + + + Semantic value: shopping basket + + + + + Semantic value: shopping cart + + + + + Semantic value: shower + + + + + Semantic value: street view + + + + + Semantic value: subway + + + + + Semantic value: taxi + + + + + Semantic value: ticket alternate + + + + + Semantic value: train + + + + + Semantic value: tree + + + + + Semantic value: umbrella + + + + + Semantic value: university + + + + + Semantic value: utensil spoon + + + + + Semantic value: utensils + + + + + Semantic value: wrench + + + + + Semantic value: band aid + + + + + Semantic value: dna + + + + + Semantic value: first aid + + + + + Semantic value: hospital symbol + + + + + Semantic value: pills + + + + + Semantic value: syringe + + + + + Semantic value: thermometer + + + + + Semantic value: weight + + + + + Semantic value: bus + + + + + Semantic value: cube + + + + + Semantic value: cubes + + + + + Semantic value: futbol + + + + + Semantic value: futbol outline + + + + + Semantic value: gem + + + + + Semantic value: gem outline + + + + + Semantic value: lock + + + + + Semantic value: lock open + + + + + Semantic value: moon + + + + + Semantic value: moon outline + + + + + Semantic value: puzzle piece + + + + + Semantic value: snowflake + + + + + Semantic value: snowflake outline + + + + + Semantic value: space shuttle + + + + + Semantic value: sun + + + + + Semantic value: sun outline + + + + + Semantic value: tachometer alternate + + + + + Semantic value: unlock + + + + + Semantic value: unlock alternate + + + + + Semantic value: cart plus + + + + + Semantic value: credit card + + + + + Semantic value: credit card outline + + + + + Semantic value: square + + + + + Semantic value: square outline + + + + + Semantic value: asterisk + + + + + Semantic value: circle notch + + + + + Semantic value: spinner + + + + + Semantic value: baseball ball + + + + + Semantic value: basketball ball + + + + + Semantic value: bowling ball + + + + + Semantic value: football ball + + + + + Semantic value: golf ball + + + + + Semantic value: hockey puck + + + + + Semantic value: quidditch + + + + + Semantic value: table tennis + + + + + Semantic value: volleyball ball + + + + + Semantic value: battery empty + + + + + Semantic value: battery full + + + + + Semantic value: battery half + + + + + Semantic value: battery quarter + + + + + Semantic value: battery three quarters + + + + + Semantic value: thermometer empty + + + + + Semantic value: thermometer full + + + + + Semantic value: thermometer half + + + + + Semantic value: thermometer quarter + + + + + Semantic value: thermometer three quarters + + + + + Semantic value: child + + + + + Semantic value: female + + + + + Semantic value: user plus + + + + + Semantic value: user times + + + + + Semantic value: users + + + + + Semantic value: 500px + + + + + Semantic value: accessible + + + + + Semantic value: accusoft + + + + + Semantic value: adn + + + + + Semantic value: adversal + + + + + Semantic value: affiliatetheme + + + + + Semantic value: algolia + + + + + Semantic value: amazon + + + + + Semantic value: amazon pay + + + + + Semantic value: amilia + + + + + Semantic value: android + + + + + Semantic value: angellist + + + + + Semantic value: angrycreative + + + + + Semantic value: angular + + + + + Semantic value: app store + + + + + Semantic value: app store ios + + + + + Semantic value: apper + + + + + Semantic value: apple + + + + + Semantic value: apple pay + + + + + Semantic value: asymmetrik + + + + + Semantic value: audible + + + + + Semantic value: autoprefixer + + + + + Semantic value: avianex + + + + + Semantic value: aviato + + + + + Semantic value: aws + + + + + Semantic value: bandcamp + + + + + Semantic value: behance + + + + + Semantic value: behance square + + + + + Semantic value: bimobject + + + + + Semantic value: bitbucket + + + + + Semantic value: bitcoin + + + + + Semantic value: bity + + + + + Semantic value: black tie + + + + + Semantic value: blackberry + + + + + Semantic value: blogger + + + + + Semantic value: blogger b + + + + + Semantic value: bluetooth + + + + + Semantic value: bluetooth b + + + + + Semantic value: btc + + + + + Semantic value: buromobelexperte + + + + + Semantic value: buysellads + + + + + Semantic value: cc amazon pay + + + + + Semantic value: cc amex + + + + + Semantic value: cc apple pay + + + + + Semantic value: cc diners club + + + + + Semantic value: cc discover + + + + + Semantic value: cc jcb + + + + + Semantic value: cc mastercard + + + + + Semantic value: cc paypal + + + + + Semantic value: cc stripe + + + + + Semantic value: cc visa + + + + + Semantic value: centercode + + + + + Semantic value: chrome + + + + + Semantic value: cloudscale + + + + + Semantic value: cloudsmith + + + + + Semantic value: cloudversify + + + + + Semantic value: codepen + + + + + Semantic value: codiepie + + + + + Semantic value: connectdevelop + + + + + Semantic value: contao + + + + + Semantic value: cpanel + + + + + Semantic value: creative commons + + + + + Semantic value: css3 + + + + + Semantic value: css3 alternate + + + + + Semantic value: cuttlefish + + + + + Semantic value: d and d + + + + + Semantic value: dashcube + + + + + Semantic value: delicious + + + + + Semantic value: deploydog + + + + + Semantic value: deskpro + + + + + Semantic value: deviantart + + + + + Semantic value: digg + + + + + Semantic value: digital ocean + + + + + Semantic value: discord + + + + + Semantic value: discourse + + + + + Semantic value: dochub + + + + + Semantic value: docker + + + + + Semantic value: draft2digital + + + + + Semantic value: dribbble + + + + + Semantic value: dribbble square + + + + + Semantic value: dropbox + + + + + Semantic value: drupal + + + + + Semantic value: dyalog + + + + + Semantic value: earlybirds + + + + + Semantic value: edge + + + + + Semantic value: elementor + + + + + Semantic value: ember + + + + + Semantic value: empire + + + + + Semantic value: envira + + + + + Semantic value: erlang + + + + + Semantic value: ethereum + + + + + Semantic value: etsy + + + + + Semantic value: expeditedssl + + + + + Semantic value: facebook + + + + + Semantic value: facebook f + + + + + Semantic value: facebook messenger + + + + + Semantic value: facebook square + + + + + Semantic value: firefox + + + + + Semantic value: first order + + + + + Semantic value: firstdraft + + + + + Semantic value: flickr + + + + + Semantic value: flipboard + + + + + Semantic value: fly + + + + + Semantic value: font awesome + + + + + Semantic value: font awesome alternate + + + + + Semantic value: font awesome flag + + + + + Semantic value: fonticons + + + + + Semantic value: fonticons fi + + + + + Semantic value: fort awesome + + + + + Semantic value: fort awesome alternate + + + + + Semantic value: forumbee + + + + + Semantic value: foursquare + + + + + Semantic value: free code camp + + + + + Semantic value: freebsd + + + + + Semantic value: get pocket + + + + + Semantic value: gg + + + + + Semantic value: gg circle + + + + + Semantic value: git + + + + + Semantic value: git square + + + + + Semantic value: github + + + + + Semantic value: github alternate + + + + + Semantic value: github square + + + + + Semantic value: gitkraken + + + + + Semantic value: gitlab + + + + + Semantic value: gitter + + + + + Semantic value: glide + + + + + Semantic value: glide g + + + + + Semantic value: gofore + + + + + Semantic value: goodreads + + + + + Semantic value: goodreads g + + + + + Semantic value: google + + + + + Semantic value: google drive + + + + + Semantic value: google play + + + + + Semantic value: google plus + + + + + Semantic value: google plus g + + + + + Semantic value: google plus square + + + + + Semantic value: google wallet + + + + + Semantic value: gratipay + + + + + Semantic value: grav + + + + + Semantic value: gripfire + + + + + Semantic value: grunt + + + + + Semantic value: gulp + + + + + Semantic value: hacker news + + + + + Semantic value: hacker news square + + + + + Semantic value: hips + + + + + Semantic value: hire a helper + + + + + Semantic value: hooli + + + + + Semantic value: hotjar + + + + + Semantic value: houzz + + + + + Semantic value: html5 + + + + + Semantic value: hubspot + + + + + Semantic value: imdb + + + + + Semantic value: instagram + + + + + Semantic value: internet explorer + + + + + Semantic value: ioxhost + + + + + Semantic value: itunes + + + + + Semantic value: itunes note + + + + + Semantic value: jenkins + + + + + Semantic value: joget + + + + + Semantic value: joomla + + + + + Semantic value: js + + + + + Semantic value: js square + + + + + Semantic value: jsfiddle + + + + + Semantic value: keycdn + + + + + Semantic value: kickstarter + + + + + Semantic value: kickstarter k + + + + + Semantic value: korvue + + + + + Semantic value: laravel + + + + + Semantic value: lastfm + + + + + Semantic value: lastfm square + + + + + Semantic value: leanpub + + + + + Semantic value: less + + + + + Semantic value: linechat + + + + + Semantic value: linkedin + + + + + Semantic value: linkedin alternate + + + + + Semantic value: linode + + + + + Semantic value: linux + + + + + Semantic value: lyft + + + + + Semantic value: magento + + + + + Semantic value: maxcdn + + + + + Semantic value: medapps + + + + + Semantic value: medium + + + + + Semantic value: medium m + + + + + Semantic value: medrt + + + + + Semantic value: meetup + + + + + Semantic value: microsoft + + + + + Semantic value: mix + + + + + Semantic value: mixcloud + + + + + Semantic value: mizuni + + + + + Semantic value: modx + + + + + Semantic value: monero + + + + + Semantic value: napster + + + + + Semantic value: nintendo switch + + + + + Semantic value: node + + + + + Semantic value: node js + + + + + Semantic value: npm + + + + + Semantic value: ns8 + + + + + Semantic value: nutritionix + + + + + Semantic value: odnoklassniki + + + + + Semantic value: odnoklassniki square + + + + + Semantic value: opencart + + + + + Semantic value: openid + + + + + Semantic value: opera + + + + + Semantic value: optin monster + + + + + Semantic value: osi + + + + + Semantic value: page4 + + + + + Semantic value: pagelines + + + + + Semantic value: palfed + + + + + Semantic value: patreon + + + + + Semantic value: paypal + + + + + Semantic value: periscope + + + + + Semantic value: phabricator + + + + + Semantic value: phoenix framework + + + + + Semantic value: php + + + + + Semantic value: pied piper + + + + + Semantic value: pied piper alternate + + + + + Semantic value: pied piper pp + + + + + Semantic value: pinterest + + + + + Semantic value: pinterest p + + + + + Semantic value: pinterest square + + + + + Semantic value: playstation + + + + + Semantic value: product hunt + + + + + Semantic value: pushed + + + + + Semantic value: python + + + + + Semantic value: qq + + + + + Semantic value: quinscape + + + + + Semantic value: quora + + + + + Semantic value: ravelry + + + + + Semantic value: react + + + + + Semantic value: rebel + + + + + Semantic value: redriver + + + + + Semantic value: reddit + + + + + Semantic value: reddit alien + + + + + Semantic value: reddit square + + + + + Semantic value: rendact + + + + + Semantic value: renren + + + + + Semantic value: replyd + + + + + Semantic value: resolving + + + + + Semantic value: rocketchat + + + + + Semantic value: rockrms + + + + + Semantic value: safari + + + + + Semantic value: sass + + + + + Semantic value: schlix + + + + + Semantic value: scribd + + + + + Semantic value: searchengin + + + + + Semantic value: sellcast + + + + + Semantic value: sellsy + + + + + Semantic value: servicestack + + + + + Semantic value: shirtsinbulk + + + + + Semantic value: simplybuilt + + + + + Semantic value: sistrix + + + + + Semantic value: skyatlas + + + + + Semantic value: skype + + + + + Semantic value: slack + + + + + Semantic value: slack hash + + + + + Semantic value: slideshare + + + + + Semantic value: snapchat + + + + + Semantic value: snapchat ghost + + + + + Semantic value: snapchat square + + + + + Semantic value: soundcloud + + + + + Semantic value: speakap + + + + + Semantic value: spotify + + + + + Semantic value: stack exchange + + + + + Semantic value: stack overflow + + + + + Semantic value: staylinked + + + + + Semantic value: steam + + + + + Semantic value: steam square + + + + + Semantic value: steam symbol + + + + + Semantic value: sticker mule + + + + + Semantic value: strava + + + + + Semantic value: stripe + + + + + Semantic value: stripe s + + + + + Semantic value: studiovinari + + + + + Semantic value: stumbleupon + + + + + Semantic value: stumbleupon circle + + + + + Semantic value: superpowers + + + + + Semantic value: supple + + + + + Semantic value: telegram + + + + + Semantic value: telegram plane + + + + + Semantic value: tencent weibo + + + + + Semantic value: themeisle + + + + + Semantic value: trello + + + + + Semantic value: tripadvisor + + + + + Semantic value: tumblr + + + + + Semantic value: tumblr square + + + + + Semantic value: twitch + + + + + Semantic value: twitter + + + + + Semantic value: twitter square + + + + + Semantic value: typo3 + + + + + Semantic value: uber + + + + + Semantic value: uikit + + + + + Semantic value: uniregistry + + + + + Semantic value: untappd + + + + + Semantic value: usb + + + + + Semantic value: ussunnah + + + + + Semantic value: vaadin + + + + + Semantic value: viacoin + + + + + Semantic value: viadeo + + + + + Semantic value: viadeo square + + + + + Semantic value: viber + + + + + Semantic value: vimeo + + + + + Semantic value: vimeo square + + + + + Semantic value: vimeo v + + + + + Semantic value: vine + + + + + Semantic value: vk + + + + + Semantic value: vnv + + + + + Semantic value: vuejs + + + + + Semantic value: wechat + + + + + Semantic value: weibo + + + + + Semantic value: weixin + + + + + Semantic value: whatsapp + + + + + Semantic value: whatsapp square + + + + + Semantic value: whmcs + + + + + Semantic value: wikipedia w + + + + + Semantic value: windows + + + + + Semantic value: wordpress + + + + + Semantic value: wordpress simple + + + + + Semantic value: wpbeginner + + + + + Semantic value: wpexplorer + + + + + Semantic value: wpforms + + + + + Semantic value: xbox + + + + + Semantic value: xing + + + + + Semantic value: xing square + + + + + Semantic value: y combinator + + + + + Semantic value: yahoo + + + + + Semantic value: yandex + + + + + Semantic value: yandex international + + + + + Semantic value: yelp + + + + + Semantic value: yoast + + + + + Semantic value: youtube + + + + + Semantic value: youtube square + + + + + Semantic value: chess rock + + + + + Semantic value: ordered list + + + + + Semantic value: unordered list + + + + + Semantic value: user doctor + + + + + Semantic value: shield + + + + + Semantic value: puzzle + + + + + Semantic value: add circle + + + + + Semantic value: add square + + + + + Semantic value: add to calendar + + + + + Semantic value: add to cart + + + + + Semantic value: add user + + + + + Semantic value: add + + + + + Semantic value: alarm mute + + + + + Semantic value: alarm + + + + + Semantic value: ald + + + + + Semantic value: als + + + + + Semantic value: announcement + + + + + Semantic value: area chart + + + + + Semantic value: area graph + + + + + Semantic value: arrow down cart + + + + + Semantic value: asexual + + + + + Semantic value: asl interpreting + + + + + Semantic value: asl + + + + + Semantic value: assistive listening devices + + + + + Semantic value: attach + + + + + Semantic value: attention + + + + + Semantic value: balance + + + + + Semantic value: bar + + + + + Semantic value: bathtub + + + + + Semantic value: battery four + + + + + Semantic value: battery high + + + + + Semantic value: battery low + + + + + Semantic value: battery one + + + + + Semantic value: battery three + + + + + Semantic value: battery two + + + + + Semantic value: battery zero + + + + + Semantic value: birthday + + + + + Semantic value: block layout + + + + + Semantic value: bluetooth alternative + + + + + Semantic value: broken chain + + + + + Semantic value: browser + + + + + Semantic value: call square + + + + + Semantic value: call + + + + + Semantic value: cancel + + + + + Semantic value: cart + + + + + Semantic value: cc + + + + + Semantic value: chain + + + + + Semantic value: chat + + + + + Semantic value: checked calendar + + + + + Semantic value: checkmark + + + + + Semantic value: circle notched + + + + + Semantic value: close + + + + + Semantic value: cny + + + + + Semantic value: cocktail + + + + + Semantic value: commenting + + + + + Semantic value: computer + + + + + Semantic value: configure + + + + + Semantic value: content + + + + + Semantic value: deafness + + + + + Semantic value: delete calendar + + + + + Semantic value: delete + + + + + Semantic value: detective + + + + + Semantic value: discussions + + + + + Semantic value: doctor + + + + + Semantic value: dollar + + + + + Semantic value: dont + + + + + Semantic value: drivers license + + + + + Semantic value: dropdown + + + + + Semantic value: emergency + + + + + Semantic value: envira gallery + + + + + Semantic value: erase + + + + + Semantic value: eur + + + + + Semantic value: euro + + + + + Semantic value: eyedropper + + + + + Semantic value: factory + + + + + Semantic value: favorite + + + + + Semantic value: feed + + + + + Semantic value: female homosexual + + + + + Semantic value: file text + + + + + Semantic value: file text outline + + + + + Semantic value: find + + + + + Semantic value: fork + + + + + Semantic value: game + + + + + Semantic value: gay + + + + + Semantic value: gbp + + + + + Semantic value: google plus circle + + + + + Semantic value: google plus official + + + + + Semantic value: grab + + + + + Semantic value: graduation + + + + + Semantic value: grid layout + + + + + Semantic value: group + + + + + Semantic value: h + + + + + Semantic value: hand victory + + + + + Semantic value: handicap + + + + + Semantic value: hard of hearing + + + + + Semantic value: header + + + + + Semantic value: help circle + + + + + Semantic value: help + + + + + Semantic value: heterosexual + + + + + Semantic value: hide + + + + + Semantic value: hotel + + + + + Semantic value: hourglass four + + + + + Semantic value: hourglass full + + + + + Semantic value: hourglass one + + + + + Semantic value: hourglass three + + + + + Semantic value: hourglass two + + + + + Semantic value: idea + + + + + Semantic value: ils + + + + + Semantic value: in cart + + + + + Semantic value: inr + + + + + Semantic value: intergender + + + + + Semantic value: intersex + + + + + Semantic value: jpy + + + + + Semantic value: krw + + + + + Semantic value: lab + + + + + Semantic value: law + + + + + Semantic value: legal + + + + + Semantic value: lesbian + + + + + Semantic value: lightning + + + + + Semantic value: like + + + + + Semantic value: line graph + + + + + Semantic value: linkedin square + + + + + Semantic value: lira + + + + + Semantic value: list layout + + + + + Semantic value: magnify + + + + + Semantic value: mail forward + + + + + Semantic value: mail outline + + + + + Semantic value: mail square + + + + + Semantic value: mail + + + + + Semantic value: male homosexual + + + + + Semantic value: man + + + + + Semantic value: marker + + + + + Semantic value: mars alternate + + + + + Semantic value: mars horizontal + + + + + Semantic value: mars vertical + + + + + Semantic value: microsoft edge + + + + + Semantic value: military + + + + + Semantic value: ms edge + + + + + Semantic value: mute + + + + + Semantic value: new pied piper + + + + + Semantic value: non binary transgender + + + + + Semantic value: numbered list + + + + + Semantic value: options + + + + + Semantic value: other gender horizontal + + + + + Semantic value: other gender vertical + + + + + Semantic value: other gender + + + + + Semantic value: payment + + + + + Semantic value: paypal card + + + + + Semantic value: pencil square + + + + + Semantic value: photo + + + + + Semantic value: picture + + + + + Semantic value: pie chart + + + + + Semantic value: pie graph + + + + + Semantic value: pied piper hat + + + + + Semantic value: pin + + + + + Semantic value: plus cart + + + + + Semantic value: point + + + + + Semantic value: pointing down + + + + + Semantic value: pointing left + + + + + Semantic value: pointing right + + + + + Semantic value: pointing up + + + + + Semantic value: pound + + + + + Semantic value: power cord + + + + + Semantic value: power + + + + + Semantic value: privacy + + + + + Semantic value: r circle + + + + + Semantic value: rain + + + + + Semantic value: record + + + + + Semantic value: refresh + + + + + Semantic value: remove circle + + + + + Semantic value: remove from calendar + + + + + Semantic value: remove user + + + + + Semantic value: remove + + + + + Semantic value: repeat + + + + + Semantic value: rmb + + + + + Semantic value: rouble + + + + + Semantic value: rub + + + + + Semantic value: ruble + + + + + Semantic value: rupee + + + + + Semantic value: s15 + + + + + Semantic value: selected radio + + + + + Semantic value: send + + + + + Semantic value: setting + + + + + Semantic value: settings + + + + + Semantic value: shekel + + + + + Semantic value: sheqel + + + + + Semantic value: shipping + + + + + Semantic value: shop + + + + + Semantic value: shuffle + + + + + Semantic value: shutdown + + + + + Semantic value: sidebar + + + + + Semantic value: signing + + + + + Semantic value: signup + + + + + Semantic value: sliders + + + + + Semantic value: soccer + + + + + Semantic value: sort alphabet ascending + + + + + Semantic value: sort alphabet descending + + + + + Semantic value: sort ascending + + + + + Semantic value: sort content ascending + + + + + Semantic value: sort content descending + + + + + Semantic value: sort descending + + + + + Semantic value: sort numeric ascending + + + + + Semantic value: sort numeric descending + + + + + Semantic value: sound + + + + + Semantic value: spy + + + + + Semantic value: stripe card + + + + + Semantic value: student + + + + + Semantic value: talk + + + + + Semantic value: target + + + + + Semantic value: teletype + + + + + Semantic value: television + + + + + Semantic value: text cursor + + + + + Semantic value: text telephone + + + + + Semantic value: theme + + + + + Semantic value: thumb tack + + + + + Semantic value: time + + + + + Semantic value: tm + + + + + Semantic value: toggle down + + + + + Semantic value: toggle left + + + + + Semantic value: toggle right + + + + + Semantic value: toggle up + + + + + Semantic value: translate + + + + + Semantic value: travel + + + + + Semantic value: treatment + + + + + Semantic value: triangle down + + + + + Semantic value: triangle left + + + + + Semantic value: triangle right + + + + + Semantic value: triangle up + + + + + Semantic value: try + + + + + Semantic value: unhide + + + + + Semantic value: unlinkify + + + + + Semantic value: unmute + + + + + Semantic value: usd + + + + + Semantic value: user cancel + + + + + Semantic value: user close + + + + + Semantic value: user delete + + + + + Semantic value: user x + + + + + Semantic value: vcard + + + + + Semantic value: video camera + + + + + Semantic value: video play + + + + + Semantic value: volume control phone + + + + + Semantic value: wait + + + + + Semantic value: warning circle + + + + + Semantic value: warning sign + + + + + Semantic value: warning + + + + + Semantic value: wi-fi + + + + + Semantic value: winner + + + + + Semantic value: wizard + + + + + Semantic value: woman + + + + + Semantic value: won + + + + + Semantic value: wordpress beginner + + + + + Semantic value: wordpress forms + + + + + Semantic value: world + + + + + Semantic value: write square + + + + + Semantic value: x + + + + + Semantic value: yen + + + + + Semantic value: zip + + + + + Semantic value: zoom + + + + + Semantic value: bitbucket square + + + + + Semantic value: checkmark box + + + + + Semantic value: circle thin + + + + + Semantic value: compose + + + + + Semantic value: conversation + + + + + Semantic value: credit card alternative + + + + + Semantic value: currency + + + + + Semantic value: dashboard + + + + + Semantic value: diamond + + + + + Semantic value: disk + + + + + Semantic value: external share + + + + + Semantic value: external square + + + + + Semantic value: external + + + + + Semantic value: facebook official + + + + + Semantic value: food + + + + + Semantic value: hourglass zero + + + + + Semantic value: level down + + + + + Semantic value: level up + + + + + Semantic value: log out + + + + + Semantic value: meanpath + + + + + Semantic value: money + + + + + Semantic value: move + + + + + Semantic value: pencil + + + + + Semantic value: protect + + + + + Semantic value: radio + + + + + Semantic value: remove bookmark + + + + + Semantic value: resize horizontal + + + + + Semantic value: resize vertical + + + + + Semantic value: spoon + + + + + Semantic value: star half empty + + + + + Semantic value: star half full + + + + + Semantic value: ticket + + + + + Semantic value: times rectangle + + + + + Semantic value: write + + + + + Semantic value: youtube play + + + + + Semantic value: left dropdown + + + + + Corner + + + + + None + + + + + Default corner + + + + + Top left corner + + + + + Top right corner + + + + + Bottom left corner + + + + + Bottom right corner + + + + + Icon flip direction + + + + + None + + + + + Flip horizontally + + + + + Flip vertically + + + + + Icon rotation + + + + + None + + + + + Clockwise rotation + + + + + Counterclockwise rotation + + + + + Size + + + + + None + + + + + Mini size + + + + + Tiny size + + + + + Small size + + + + + Large size + + + + + Big size + + + + + Huge size + + + + + Massive size + + + + From 6d8a29e4ff37f4fede8392c95aac0f0d1db98eeb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Rodrigo=20Qui=C3=B1ones=20Pinilla?= Date: Tue, 24 Sep 2019 00:13:24 +0200 Subject: [PATCH 17/24] Updated git pipeline --- .github/workflows/ci-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-release.yml b/.github/workflows/ci-release.yml index 6d86061..16e6e56 100644 --- a/.github/workflows/ci-release.yml +++ b/.github/workflows/ci-release.yml @@ -12,6 +12,6 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: - dotnet-version: 3.0.100-rc1-014190 + dotnet-version: 3.0.x - name: Build with dotnet run: dotnet build --configuration Debug From 59f9e7b8bc620db39d886d7710b2a56b6072b87b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Rodrigo=20Qui=C3=B1ones=20Pinilla?= Date: Tue, 24 Sep 2019 00:16:49 +0200 Subject: [PATCH 18/24] Updated git pipeline --- .github/workflows/ci-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-release.yml b/.github/workflows/ci-release.yml index 16e6e56..f51bac4 100644 --- a/.github/workflows/ci-release.yml +++ b/.github/workflows/ci-release.yml @@ -12,6 +12,6 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: - dotnet-version: 3.0.x + dotnet-version: 3.0.100 - name: Build with dotnet run: dotnet build --configuration Debug From 863b51a890089d1738e36c134df26c3bfc6f5b0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Qui=C3=B1ones?= Date: Wed, 25 Sep 2019 22:32:50 +0200 Subject: [PATCH 19/24] Update azure-ci-release.yml for Azure Pipelines --- .azure/workflows/azure-ci-release.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.azure/workflows/azure-ci-release.yml b/.azure/workflows/azure-ci-release.yml index 12ba8fd..723213a 100644 --- a/.azure/workflows/azure-ci-release.yml +++ b/.azure/workflows/azure-ci-release.yml @@ -12,13 +12,14 @@ pool: variables: buildConfiguration: 'Release' + packageVersion: '0.0.1-test.0' steps: -- task: Bash@3 - inputs: - filePath: '.azure/workflows/configure-variables-release.sh' - failOnStderr: true +# - task: Bash@3 +# inputs: +# filePath: '.azure/workflows/configure-variables-release.sh' +# failOnStderr: true # Install .NET Core SDK - task: DotNetCoreInstaller@1 From 891e6c9eb7d26566407f66d6316a2caaa8359c7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Qui=C3=B1ones?= Date: Wed, 25 Sep 2019 22:37:49 +0200 Subject: [PATCH 20/24] Update azure-ci-release.yml for Azure Pipelines --- .azure/workflows/azure-ci-release.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.azure/workflows/azure-ci-release.yml b/.azure/workflows/azure-ci-release.yml index 723213a..9dd37df 100644 --- a/.azure/workflows/azure-ci-release.yml +++ b/.azure/workflows/azure-ci-release.yml @@ -60,8 +60,13 @@ steps: versionEnvVar: '$(packageVersion)' verbosityPack: 'Diagnostic' -- task: PublishBuildArtifacts@1 +# - task: PublishBuildArtifacts@1 +# inputs: +# PathtoPublish: '$(Build.ArtifactStagingDirectory)' +# ArtifactName: 'drop' +# publishLocation: 'Container' + +- task: PublishPipelineArtifact@1 inputs: - PathtoPublish: '$(Build.ArtifactStagingDirectory)' - ArtifactName: 'drop' - publishLocation: 'Container' \ No newline at end of file + targetPath: '$(Pipeline.Workspace)' + artifact: 'Package' \ No newline at end of file From 917098551771cfb699f28d970d5f6add042eb4b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Qui=C3=B1ones?= Date: Wed, 25 Sep 2019 22:42:52 +0200 Subject: [PATCH 21/24] Update azure-ci-release.yml for Azure Pipelines --- .azure/workflows/azure-ci-release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.azure/workflows/azure-ci-release.yml b/.azure/workflows/azure-ci-release.yml index 9dd37df..d5301c1 100644 --- a/.azure/workflows/azure-ci-release.yml +++ b/.azure/workflows/azure-ci-release.yml @@ -55,6 +55,7 @@ steps: command: 'pack' packagesToPack: '**/QD.Components.Semantic.csproj' configuration: '$(buildConfiguration)' + packDirectory: '$(Pipeline.Workspace)' nobuild: true versioningScheme: 'byEnvVar' versionEnvVar: '$(packageVersion)' From 6036ef52bf5915edc14317f9cfe5e9f7daa8c11f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Qui=C3=B1ones?= Date: Wed, 25 Sep 2019 22:46:55 +0200 Subject: [PATCH 22/24] Update azure-ci-release.yml for Azure Pipelines --- .azure/workflows/azure-ci-release.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.azure/workflows/azure-ci-release.yml b/.azure/workflows/azure-ci-release.yml index d5301c1..67ef67e 100644 --- a/.azure/workflows/azure-ci-release.yml +++ b/.azure/workflows/azure-ci-release.yml @@ -57,8 +57,7 @@ steps: configuration: '$(buildConfiguration)' packDirectory: '$(Pipeline.Workspace)' nobuild: true - versioningScheme: 'byEnvVar' - versionEnvVar: '$(packageVersion)' + versioningScheme: 'off' verbosityPack: 'Diagnostic' # - task: PublishBuildArtifacts@1 From 5061601fe324833fd4be138b7bb4f1a2b6a40f39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Qui=C3=B1ones?= Date: Wed, 25 Sep 2019 22:53:29 +0200 Subject: [PATCH 23/24] Update azure-ci-release.yml for Azure Pipelines --- .azure/workflows/azure-ci-release.yml | 35 +++++++++++++-------------- 1 file changed, 17 insertions(+), 18 deletions(-) diff --git a/.azure/workflows/azure-ci-release.yml b/.azure/workflows/azure-ci-release.yml index 67ef67e..e4e2b23 100644 --- a/.azure/workflows/azure-ci-release.yml +++ b/.azure/workflows/azure-ci-release.yml @@ -12,14 +12,13 @@ pool: variables: buildConfiguration: 'Release' - packageVersion: '0.0.1-test.0' steps: -# - task: Bash@3 -# inputs: -# filePath: '.azure/workflows/configure-variables-release.sh' -# failOnStderr: true +- task: Bash@3 + inputs: + filePath: '.azure/workflows/configure-variables-release.sh' + failOnStderr: true # Install .NET Core SDK - task: DotNetCoreInstaller@1 @@ -30,13 +29,13 @@ steps: version: '3.0.x' # SonarCloud Prepare Analysis -- task: SonarCloudPrepare@1 - inputs: - SonarCloud: 'SonarCloud Daniel127' - organization: 'daniel127' - scannerMode: 'MSBuild' - projectKey: 'semanticui-razor-components' - projectName: 'Semantic UI Razor Components' +# - task: SonarCloudPrepare@1 +# inputs: +# SonarCloud: 'SonarCloud Daniel127' +# organization: 'daniel127' +# scannerMode: 'MSBuild' +# projectKey: 'semanticui-razor-components' +# projectName: 'Semantic UI Razor Components' # Build solution - task: DotNetCoreCLI@2 @@ -45,17 +44,17 @@ steps: arguments: '--configuration $(buildConfiguration)' # SonarCloud analyze and publish results -- task: SonarCloudAnalyze@1 -- task: SonarCloudPublish@1 - inputs: - pollingTimeoutSec: '300' +# - task: SonarCloudAnalyze@1 +# - task: SonarCloudPublish@1 +# inputs: +# pollingTimeoutSec: '300' - task: DotNetCoreCLI@2 inputs: command: 'pack' packagesToPack: '**/QD.Components.Semantic.csproj' configuration: '$(buildConfiguration)' - packDirectory: '$(Pipeline.Workspace)' + packDirectory: '$(Pipeline.Workspace)/nuget' nobuild: true versioningScheme: 'off' verbosityPack: 'Diagnostic' @@ -68,5 +67,5 @@ steps: - task: PublishPipelineArtifact@1 inputs: - targetPath: '$(Pipeline.Workspace)' + targetPath: '$(Pipeline.Workspace)/nuget' artifact: 'Package' \ No newline at end of file From 742d537455c8401ec295d466c0045b8d7784a4e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Qui=C3=B1ones?= Date: Wed, 25 Sep 2019 23:07:02 +0200 Subject: [PATCH 24/24] Update azure-ci-release.yml for Azure Pipelines --- .azure/workflows/azure-ci-release.yml | 29 ++++++++++----------------- 1 file changed, 11 insertions(+), 18 deletions(-) diff --git a/.azure/workflows/azure-ci-release.yml b/.azure/workflows/azure-ci-release.yml index e4e2b23..5d93338 100644 --- a/.azure/workflows/azure-ci-release.yml +++ b/.azure/workflows/azure-ci-release.yml @@ -29,13 +29,13 @@ steps: version: '3.0.x' # SonarCloud Prepare Analysis -# - task: SonarCloudPrepare@1 -# inputs: -# SonarCloud: 'SonarCloud Daniel127' -# organization: 'daniel127' -# scannerMode: 'MSBuild' -# projectKey: 'semanticui-razor-components' -# projectName: 'Semantic UI Razor Components' +- task: SonarCloudPrepare@1 + inputs: + SonarCloud: 'SonarCloud Daniel127' + organization: 'daniel127' + scannerMode: 'MSBuild' + projectKey: 'semanticui-razor-components' + projectName: 'Semantic UI Razor Components' # Build solution - task: DotNetCoreCLI@2 @@ -44,10 +44,10 @@ steps: arguments: '--configuration $(buildConfiguration)' # SonarCloud analyze and publish results -# - task: SonarCloudAnalyze@1 -# - task: SonarCloudPublish@1 -# inputs: -# pollingTimeoutSec: '300' +- task: SonarCloudAnalyze@1 +- task: SonarCloudPublish@1 + inputs: + pollingTimeoutSec: '300' - task: DotNetCoreCLI@2 inputs: @@ -57,13 +57,6 @@ steps: packDirectory: '$(Pipeline.Workspace)/nuget' nobuild: true versioningScheme: 'off' - verbosityPack: 'Diagnostic' - -# - task: PublishBuildArtifacts@1 -# inputs: -# PathtoPublish: '$(Build.ArtifactStagingDirectory)' -# ArtifactName: 'drop' -# publishLocation: 'Container' - task: PublishPipelineArtifact@1 inputs: