kino.UiPath.Utils.Activities 0.1.86

dotnet add package kino.UiPath.Utils.Activities --version 0.1.86
NuGet\Install-Package kino.UiPath.Utils.Activities -Version 0.1.86
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="kino.UiPath.Utils.Activities" Version="0.1.86" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add kino.UiPath.Utils.Activities --version 0.1.86
#r "nuget: kino.UiPath.Utils.Activities, 0.1.86"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install kino.UiPath.Utils.Activities as a Cake Addin
#addin nuget:?package=kino.UiPath.Utils.Activities&version=0.1.86

// Install kino.UiPath.Utils.Activities as a Cake Tool
#tool nuget:?package=kino.UiPath.Utils.Activities&version=0.1.86

When using UiPath, I often want to call methods of .NET, such as getting the name of the current directory, base64 encode the file,These activities are the activities that call those methods.

See also: https://github.com/masatomix/UiPath_Path/blob/master/README.md

UiPathをやっていると、今いるディレクトリ名を取得したり、ファイルをBase64 Encodeしたりなど、.NETのメソッドを呼びたいことがちょくちょくあるのですが、それらを呼び出すアクティビティになっています。

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on kino.UiPath.Utils.Activities:

Package Downloads
kino.UiPath.OrchestratorAPI

Orchestrator API Wrapper

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.1.86 3,484 11/15/2018
0.1.77 1,200 11/3/2018
0.1.62 1,473 10/31/2018
0.1.40 1,477 10/27/2018

Localization using Language of UiPath.
Combine activity - When the path array is a relative path,I added the current directory, but I changed it so that I do not add it.
Path Utils activity - Property name "DirectoryName" changed to "DirectoryPath".

UiPathの言語設定によって、日本語表記・英語表記になるように対応
というかデフォルトを英語とし、日本語ロケールで日本語表記になるように対応。Studio 2018.2までは日本語ロケールで起動しないので、英語表記となります。単純だから問題ないと思いますが。。

Combine activity - パス配列に相対パスを指定したとき、カレントディレクトリを付与していたのですが、付与しないように変更しました。
Path Utils activity - プロパティ名が"DirectoryName"だったのを、実際はパスを返しているため"DirectoryPath"に変更しました。