UMT360.Client
5.20.2021.803
See the version list below for details.
dotnet add package UMT360.Client --version 5.20.2021.803
NuGet\Install-Package UMT360.Client -Version 5.20.2021.803
<PackageReference Include="UMT360.Client" Version="5.20.2021.803" />
paket add UMT360.Client --version 5.20.2021.803
#r "nuget: UMT360.Client, 5.20.2021.803"
// Install UMT360.Client as a Cake Addin #addin nuget:?package=UMT360.Client&version=5.20.2021.803 // Install UMT360.Client as a Cake Tool #tool nuget:?package=UMT360.Client&version=5.20.2021.803
UMT360.Client
UMT360 offers this CSOM (client side object model) library for clients using UMT360.
This is a very short tutorial to let you get started fast. We will create a simple console application with .Net Framework and connect to the product to list project entities available in product.
Release notes
Programmability (CSOM interfaces)
New features
- Added CRUD operations for strategic objectives, metrics and time-phased metric values
- Added CRUD operations for resource fields
Bug Fixes
o The Display in Roadmaps milestone field can now be updated programmatically
Prerequisites
UMT360 Product v6.4
deployed and configured- Credentials and permissions to access application
- Visual Studio and .Net Framework v4.5
CSOM Client Test application
Create a new console app.
Opent Tools > NuGet Package Manager > Manage NuGet Packages for Solution…
Select Browse tab and insert
UMT360.Client
in search box.Click on our package then look in the right side panel and select the project where you want to install the library.
Click install button and review packages that will be installed, then accept the license.
In a few seconds we are ready to go.
using System;
using UMT360.Client;
using UMT360.Client.Application;
namespace CSOMSAMPLE
{
class Program
{
static void Main(string[] args)
{
TokenHelper.InitializeAppConfiguration(
"<client_id>", //clientid
"", //clientSecret
"<realm>", //realm
"<issuer_id>", //issuerId
@"C:\<path>\certificate.pfx", //get it from: http://<server>:<port>/ Central Admin
"<certificate_password>", //certificate password
"AAD for UMT360Online" //trusted provider name
);
using (UMT360Context context = new UMT360Context("enter site url"))
{
context.AuthenticateWithClaims();
FinancialEntity financialEntity = context.FinancialEntities.GetByGuid(new Guid("enter entity id"));
context.Load(financialEntity);
context.ExecuteQuery();
}
}
}
}
Product | Versions 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. |
-
- Microsoft.SharePointOnline.CSOM (>= 16.1.20518.12000)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
5.27.2024.1105 | 79 | 11/6/2024 | |
5.27.2024.1024 | 78 | 10/25/2024 | |
5.27.2024.926 | 96 | 9/27/2024 | |
5.27.2024.830 | 116 | 8/30/2024 | |
5.27.2024.725 | 94 | 7/26/2024 | |
5.27.2024.627 | 113 | 6/28/2024 | |
5.27.2024.524 | 129 | 5/24/2024 | |
5.27.2024.223 | 151 | 2/23/2024 | |
5.26.2023.1025 | 166 | 10/27/2023 | |
5.26.2023.728 | 228 | 7/28/2023 | |
5.26.2023.622 | 188 | 6/23/2023 | |
5.26.2023.526 | 166 | 5/29/2023 | |
5.25.2023.427 | 190 | 4/28/2023 | |
5.25.2023.324 | 260 | 3/24/2023 | |
5.25.2023.223 | 289 | 2/24/2023 | |
5.24.2023.106 | 347 | 1/10/2023 | |
5.24.2022.1213 | 320 | 12/16/2022 | |
5.23.2022.909 | 436 | 9/9/2022 | |
5.23.2022.728 | 455 | 7/29/2022 | |
5.22.2022.329 | 492 | 3/31/2022 | |
5.21.2021.1203 | 760 | 12/3/2021 | |
5.21.2021.1108 | 1,043 | 11/18/2021 | |
5.20.2021.803 | 347 | 8/6/2021 | |
5.19.2021.402 | 622 | 4/8/2021 | |
5.18.2020.1007 | 474 | 10/7/2020 |
Bug fixes and new features.