Skip to content

Commit

Permalink
Pull request #4: Fix version number
Browse files Browse the repository at this point in the history
Merge in SDK/csharp_telesign from hotfix/fixversionnumber to developer

* commit '42ed1ffe20dfadbcdecdbdf3597bb5d11749a991':
  Fix version number
  • Loading branch information
Victor Leonardo Aponte committed Feb 20, 2025
2 parents 7a4d649 + 42ed1ff commit 998e335
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
2.4.0
- Added supported version of .NET Core 6, 7, 8, and 9
- Added supported versions of .NET Core 6, 7, 8, and 9
- Updated syntax code to support .NET framework and .Net core

2.3.0
Expand Down
6 changes: 3 additions & 3 deletions Telesign.Example/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
while(!validOption);


string customerId = Environment.GetEnvironmentVariable("CUSTOMER_ID")?? "FFFFFFFF-EEEE-DDDD-1234-AB1234567890";
string apiKey = Environment.GetEnvironmentVariable("API_KEY") ?? "Example/idksdjKJD+==";
string phoneNumber = Environment.GetEnvironmentVariable("PHONE_NUMBER") ?? "123456789";
string customerId = Environment.GetEnvironmentVariable("CUSTOMER_ID")?? "ABC1DE23-A12B-1234-56AB-AB1234567890";
string apiKey = Environment.GetEnvironmentVariable("API_KEY") ?? "ABC12345yusumoN6BYsBVkh+yRJ5czgsnCehZaOYldPJdmFh6NeX8kunZ2zU1YWaUw/0wV6xfw==";
string phoneNumber = Environment.GetEnvironmentVariable("PHONE_NUMBER") ?? "11234567890";

switch (options)
{
Expand Down
2 changes: 1 addition & 1 deletion Telesign/Telesign.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<Nullable>disable</Nullable>
<PackageIcon>nuget_icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Version>3.0.0</Version>
<Version>2.4.0</Version>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
</PropertyGroup>

Expand Down

0 comments on commit 998e335

Please sign in to comment.