Skip to content

Commit

Permalink
Fix nuget packages
Browse files Browse the repository at this point in the history
  • Loading branch information
artemlos committed Mar 26, 2021
1 parent c988e87 commit d8c4d34
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Cryptolens.Licensing/Core/HelperMethods.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public static T SendRequestToWebAPI3<T>(RequestModel inputParameters,
// converting the input
Dictionary<string, object> inputParams = (from x in inputParameters.GetType().GetProperties() select x)
.ToDictionary(x => x.Name, x => (x.GetGetMethod()
.Invoke(inputParameters, null) == null ? null : x.GetGetMethod()
.Invoke(inputParameters, null) == null ? "" : x.GetGetMethod()
.Invoke(inputParameters, null)));
string server = SERVER;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Company>Cryptolens AB</Company>
<Authors>Cryptolens AB</Authors>
<Version>4.0.33</Version>
<AssemblyVersion>4.0.32.2</AssemblyVersion>
<FileVersion>4.0.32.2</FileVersion>
<Version>4.0.34</Version>
<AssemblyVersion>4.0.34.1</AssemblyVersion>
<FileVersion>4.0.34.1</FileVersion>
<Description>An API documentation can be found at https://help.cryptolens.io/api/dotnet/.

This is a client API that serves as an interface to Cryptolens Web API (app.cryptolens.io/docs/api/).
Expand All @@ -23,7 +23,7 @@ This library is aimed at users who plan to target environments other than Window
<DelaySign>false</DelaySign>
<AssemblyOriginatorKeyFile>certifikat.pfx</AssemblyOriginatorKeyFile>
<PackageTags>licensing system, SKGL, serial key management, http://app.cryptolens.io/ , skgl extension, SKM Client API, cryptolens</PackageTags>
<PackageReleaseNotes>Release notes available at https://help.cryptolens.io/api/dotnet/articles/v4033.html</PackageReleaseNotes>
<PackageReleaseNotes>Release notes available at https://help.cryptolens.io/api/dotnet/articles/v4034.html</PackageReleaseNotes>


<PackageLicenseFile>LICENSE</PackageLicenseFile>
Expand Down
8 changes: 4 additions & 4 deletions Cryptolens.Licensing/Cryptolens.Licensing.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Company>Cryptolens AB</Company>
<Authors>Cryptolens AB</Authors>
<Version>4.0.33</Version>
<AssemblyVersion>4.0.33.2</AssemblyVersion>
<FileVersion>4.0.33.2</FileVersion>
<Version>4.0.34</Version>
<AssemblyVersion>4.0.34.1</AssemblyVersion>
<FileVersion>4.0.34.1</FileVersion>
<Description>An API documentation can be found at https://help.cryptolens.io/api/dotnet/.

This is a client API that serves as an interface to Cryptolens Web API (app.cryptolens.io/docs/api/).
Expand All @@ -23,7 +23,7 @@ NB: There is also one for C++ (https://github.com/Cryptolens/cryptolens-cpp)</De
<DelaySign>false</DelaySign>
<AssemblyOriginatorKeyFile>certifikat.pfx</AssemblyOriginatorKeyFile>
<PackageTags>licensing system, SKGL, serial key management, http://app.cryptolens.io/ , skgl extension, SKM Client API, cryptolens</PackageTags>
<PackageReleaseNotes>Release notes available at https://help.cryptolens.io/api/dotnet/articles/v4033.html</PackageReleaseNotes>
<PackageReleaseNotes>Release notes available at https://help.cryptolens.io/api/dotnet/articles/v4034.html</PackageReleaseNotes>

<DefineConstants>SYSTEM_MANAGEMENT</DefineConstants>

Expand Down
2 changes: 1 addition & 1 deletion SKM Test/V3/TestCustomer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public void GetCustomersTest()
[TestMethod]
public void EditCustomerTest()
{
var res = CustomerMethods.EditCustomer(AccessToken.AccessToken.EditCustomer, new EditCustomerModel { CustomerId = 13910, Name="Artem" });
var res = CustomerMethods.EditCustomer(AccessToken.AccessToken.EditCustomer, new EditCustomerModel { CustomerId = 13910, Email="[email protected]", EnableCustomerAssociation=null });

Assert.IsTrue(res.Result == ResultType.Success);
}
Expand Down

0 comments on commit d8c4d34

Please sign in to comment.