Skip to content

Commit 4ac5d7a

Browse files
committed
Bump version to 2.5.0
1 parent 6aafcd1 commit 4ac5d7a

File tree

3 files changed

+7
-10
lines changed

3 files changed

+7
-10
lines changed

Camunda.Api.Client/Camunda.Api.Client.csproj

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,27 +4,20 @@
44
<TargetFrameworks>netstandard2.0;net461</TargetFrameworks>
55
<GenerateDocumentationFile Condition=" '$(Configuration)' == 'Release' ">true</GenerateDocumentationFile>
66
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
7-
<Version>2.5.0-prerelease01</Version>
7+
<Version>2.5.0</Version>
88
<Product>Camunda REST API Client</Product>
99
<Title>Camunda REST API Client</Title>
1010
<Authors>Jan Lucansky</Authors>
1111
<PackageProjectUrl>https://github.com/jlucansky/Camunda.Api.Client</PackageProjectUrl>
12-
<PackageIconUrl>https://avatars3.githubusercontent.com/u/2443838?s=230</PackageIconUrl>
12+
<PackageIcon>icon.png</PackageIcon>
1313
<Description>Camunda REST API Client for .NET platform</Description>
1414
<PackageTags>camunda rest refit bpmn bpm</PackageTags>
1515
<PackageReleaseNotes></PackageReleaseNotes>
1616
<AssemblyVersion>2.0.0.0</AssemblyVersion>
1717
<FileVersion>2.0.0.0</FileVersion>
1818
<RepositoryType></RepositoryType>
1919
<PackageLicenseFile>LICENSE</PackageLicenseFile>
20-
</PropertyGroup>
21-
22-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
23-
<DocumentationFile>bin\Release\netstandard2.0\Camunda.Api.Client.xml</DocumentationFile>
24-
</PropertyGroup>
25-
26-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
27-
<NoWarn>1701;1702;1705</NoWarn>
20+
<NoWarn>1701;1702;1705;1591</NoWarn>
2821
</PropertyGroup>
2922

3023
<ItemGroup>
@@ -34,6 +27,7 @@
3427

3528
<ItemGroup>
3629
<None Include="..\LICENSE" Pack="true" PackagePath="" />
30+
<None Include="icon.png" Pack="true" PackagePath=""/>
3731
</ItemGroup>
3832

3933
<ItemGroup Condition="'$(TargetFramework)' == 'net452'">

Camunda.Api.Client/ProcessDefinition/ProcessDefinitionResource.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,9 @@ public abstract class ProcessDefinitionResource
7979
/// Retrieves the start form variables for a process definition. The start form variables take form data specified on the start event into account.
8080
/// If form fields are defined, the variable types and default values of the form fields are taken into account.
8181
/// </summary>
82+
/// <param name="variableNames">Allows restricting the list of requested variables to the variable names in the list.
83+
/// It is best practice to restrict the list of variables to the variables actually required by the form in order to minimize fetching of data.
84+
/// If the query parameter is ommitted all variables are fetched. If the query parameter contains non-existent variable names, the variable names are ignored.</param>
8285
/// <param name="deserializeValues">Determines whether serializable variable values (typically variables that store custom Java objects) should be deserialized on server side.</param>
8386
public abstract Task<Dictionary<string, VariableValue>> GetFormVariables(string[] variableNames, bool deserializeValues = true);
8487
}

Camunda.Api.Client/icon.png

27.7 KB
Loading

0 commit comments

Comments
 (0)