Skip to content
This repository has been archived by the owner on May 24, 2024. It is now read-only.

Commit

Permalink
Merge pull request #140 from elucidsoft/release-beta3
Browse files Browse the repository at this point in the history
File changes and new nuget package for beta 3 release
  • Loading branch information
elucidsoft authored Dec 30, 2018
2 parents 29ddf59 + 068b737 commit bbb7ddb
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 15 deletions.
4 changes: 4 additions & 0 deletions dotnetstandard/stellar-dotnetstandard-sdk.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,8 @@
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
</ItemGroup>

<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="powershell.exe $(SolutionDir)\package\build_package.ps1" />
</Target>

</Project>
7 changes: 6 additions & 1 deletion package/build_package.ps1
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
.\nuget pack .\dotnet-stellar-sdk.nuspec
$scriptpath = $MyInvocation.MyCommand.Path
$dir = Split-Path $scriptpath

Push-Location $dir

./nuget pack ./dotnet-stellar-sdk.nuspec
26 changes: 18 additions & 8 deletions package/dotnet-stellar-sdk.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
<id>stellar-dotnet-sdk</id>

<!-- The package version number that is used when resolving dependencies -->
<version>2.1.0-beta2</version>
<version>2.1.0-beta3</version>

<!-- Authors contain text that appears directly on the gallery -->
<authors>Eric Malamisura, Michael Monte, Kirbyrawr</authors>
<authors>Eric Malamisura, Michael Monte, Kirbyrawr, Francesco Ceccon</authors>

<!--
Owners are typically nuget.org identities that allow gallery
Expand All @@ -17,7 +17,7 @@
<owners>elucidsoft, michaeljmonte, kirbyrawr</owners>

<!-- License and project URLs provide links for the gallery -->
<licenseUrl>https://github.com/elucidsoft/dotnet-stellar-sdk/blob/master/LICENSE.txt</licenseUrl>
<license type="file">LICENSE.txt</license>
<projectUrl>https://github.com/elucidsoft/dotnet-stellar-sdk</projectUrl>

<!-- The icon is used in Visual Studio's package manager UI -->
Expand All @@ -31,14 +31,22 @@

<!-- Any details about this particular release -->
<releaseNotes>
- Can now use a Bip39 Seed to generate a KeyPair (SEP-0005)
- Stream Fixes
- .NET Core 2.1
- Horizon Release 12.3 Compatability
- Nett version 0.10.0 upgrade
- Newtonsoft.Json 12.0.1 upgrade
- Fixed: AccountResponse missing ITransactionBuilderAccount interface.
- Fixed: Server.SubmitTransaction for an unfunded account fails.
- Feature: Support Non-ED25519 Keys in Response
- Feature: Added support for Visual Studio SourceLink (https://docs.microsoft.com/en-us/dotnet/standard/library-guidance/sourcelink)
- Fix for AccountResponse missing ITransactionBuilderAccount interface.
- Fix for Server.SubmitTransaction for an unfunded account fails.
- Support Non-ED25519 Keys in Response
- Added support for Visual Studio SourceLink (https://docs.microsoft.com/en-us/dotnet/standard/library-guidance/sourcelink)
- Timebounds Fixes and Improvements
- Serialization of Responses
- Follow Linked Resources (HAL and Link Following)
- Horizon 0.15.0 Support
- Documentation Improvements
- Removed .NET Core independent build from NuGet package. The .NET Standard 2.0 will work with core, was not needed and causing issues.
</releaseNotes>

<!--
Expand All @@ -61,5 +69,7 @@


</metadata>

<files>
<file src="..\LICENSE.txt" target="" />
</files>
</package>
Binary file modified package/nuget.exe
Binary file not shown.
Binary file removed package/stellar-dotnet-sdk.2.1.0-beta2.nupkg
Binary file not shown.
Binary file added package/stellar-dotnet-sdk.2.1.0-beta3.nupkg
Binary file not shown.
6 changes: 0 additions & 6 deletions stellar-dotnet-sdk_nuget.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27703.2018
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "stellar-dotnetcore-sdk", "dotnetcore\stellar-dotnetcore-sdk.csproj", "{E666E329-3013-424D-8E82-C76FAD2445CC}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "stellar-dotnetstandard-sdk", "dotnetstandard\stellar-dotnetstandard-sdk.csproj", "{DB1AD616-8D13-49E0-956B-12F4A3E93CE2}"
EndProject
Global
Expand All @@ -13,10 +11,6 @@ Global
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{E666E329-3013-424D-8E82-C76FAD2445CC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E666E329-3013-424D-8E82-C76FAD2445CC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E666E329-3013-424D-8E82-C76FAD2445CC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E666E329-3013-424D-8E82-C76FAD2445CC}.Release|Any CPU.Build.0 = Release|Any CPU
{DB1AD616-8D13-49E0-956B-12F4A3E93CE2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DB1AD616-8D13-49E0-956B-12F4A3E93CE2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DB1AD616-8D13-49E0-956B-12F4A3E93CE2}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand Down

0 comments on commit bbb7ddb

Please sign in to comment.