Skip to content

Commit

Permalink
chore: update readme, csproj files, versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
lewinskimaciej committed May 31, 2024
1 parent 18c0b8e commit cf12ee7
Show file tree
Hide file tree
Showing 5 changed files with 713 additions and 21 deletions.
2 changes: 1 addition & 1 deletion sdks-custodial/csharp/src/Beam/Beam.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<Authors>Beam Developers</Authors>
<Company>Merit Circle</Company>
<AssemblyTitle>Beam SDK</AssemblyTitle>
<Description>Official C# Beam SDK</Description>
<Description>Official C# Beam SDK for Custodial accounts</Description>

<PackageTags>beam, sdk, library, client</PackageTags>
<PackageIcon>icon.jpg</PackageIcon>
Expand Down
10 changes: 5 additions & 5 deletions sdks-self-custody/csharp/.openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,19 @@ src/BeamSelfCustody/Model/CancelAssetOfferRequestInput.cs
src/BeamSelfCustody/Model/Check200Response.cs
src/BeamSelfCustody/Model/Check200ResponseInfoValue.cs
src/BeamSelfCustody/Model/Check503Response.cs
src/BeamSelfCustody/Model/CommonOperationResponse.cs
src/BeamSelfCustody/Model/CommonOperationResponseTransactionsInner.cs
src/BeamSelfCustody/Model/CommonOperationResponseTransactionsInnerData.cs
src/BeamSelfCustody/Model/ConfirmOperationRequest.cs
src/BeamSelfCustody/Model/ConfirmOperationRequestTransactionsInner.cs
src/BeamSelfCustody/Model/ConvertTokenRequestInput.cs
src/BeamSelfCustody/Model/CreateAssetOfferRequestInput.cs
src/BeamSelfCustody/Model/CreateOperationRequestInput.cs
src/BeamSelfCustody/Model/CreateTransactionRequestInput.cs
src/BeamSelfCustody/Model/CreateTransactionRequestInputInteractionsInner.cs
src/BeamSelfCustody/Model/GenerateSessionRequestResponse.cs
src/BeamSelfCustody/Model/GenerateSessionUrlRequestInput.cs
src/BeamSelfCustody/Model/GenerateSessionUrlResponse.cs
src/BeamSelfCustody/Model/GetActiveSessionResponse.cs
src/BeamSelfCustody/Model/GetAllUsersResponse.cs
src/BeamSelfCustody/Model/GetAllUsersResponseDataInner.cs
src/BeamSelfCustody/Model/GetAllUsersResponseDataInnerWalletsInner.cs
Expand Down Expand Up @@ -89,10 +93,6 @@ src/BeamSelfCustody/Model/GetTransactionsResponseDataInnerTransaction.cs
src/BeamSelfCustody/Model/GetTransactionsResponseDataInnerTransactionLogsInner.cs
src/BeamSelfCustody/Model/GetTransactionsResponsePagination.cs
src/BeamSelfCustody/Model/GetUserResponse.cs
src/BeamSelfCustody/Model/OperationResponse.cs
src/BeamSelfCustody/Model/OperationResponseGame.cs
src/BeamSelfCustody/Model/OperationResponseTransactionsInner.cs
src/BeamSelfCustody/Model/OperationResponseTransactionsInnerData.cs
src/BeamSelfCustody/Model/SellAssetRequestInput.cs
src/BeamSelfCustody/Model/TransferAssetRequestInputV3.cs
src/BeamSelfCustody/Model/TransferAssetRequestInputV3AssetsInner.cs
Expand Down
48 changes: 33 additions & 15 deletions sdks-self-custody/csharp/src/BeamSelfCustody/BeamSelfCustody.csproj
Original file line number Diff line number Diff line change
@@ -1,23 +1,41 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<PropertyGroup>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo> <!-- setting GenerateAssemblyInfo to false causes this bug https://github.com/dotnet/project-system/issues/3934 -->
<TargetFramework>net8.0</TargetFramework>
<AssemblyName>BeamSelfCustody</AssemblyName>
<PackageId>BeamSelfCustody</PackageId>
<TargetFramework>net6.0</TargetFramework>

<OutputType>Library</OutputType>
<Authors>OpenAPI</Authors>
<Company>OpenAPI</Company>
<AssemblyTitle>OpenAPI Library</AssemblyTitle>
<Description>A library generated from a OpenAPI doc</Description>
<Copyright>No Copyright</Copyright>
<RootNamespace>BeamSelfCustody</RootNamespace>
<Version>1.0.0</Version>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\BeamSelfCustody.xml</DocumentationFile>
<RepositoryUrl>https://github.com/GIT_USER_ID/GIT_REPO_ID.git</RepositoryUrl>
<Version>$(VERSION)</Version>

<Nullable>annotations</Nullable>
<LangVersion>latest</LangVersion>

<AssemblyName>Beam</AssemblyName>
<RootNamespace>Beam</RootNamespace>
<PackageId>Beam</PackageId>
<Authors>Beam Developers</Authors>
<Company>Merit Circle</Company>
<AssemblyTitle>Beam SelfCustody SDK</AssemblyTitle>
<Description>Official C# Beam SDK for Self-Custodial accounts</Description>

<PackageTags>beam, sdk, library, client</PackageTags>
<PackageIcon>icon.jpg</PackageIcon>
<PackageLicenseFile>LICENSE</PackageLicenseFile>

<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\Beam.xml</DocumentationFile>

<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>Minor update</PackageReleaseNotes>
<Nullable>enable</Nullable>
<RepositoryUrl>https://github.com/Merit-Circle/beam-sdk.git</RepositoryUrl>

<PackageProjectUrl>https://github.com/Merit-Circle/beam-sdk.git</PackageProjectUrl>

<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<DebugType>embedded</DebugType>
</PropertyGroup>

<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>

<ItemGroup>
Expand Down
Loading

0 comments on commit cf12ee7

Please sign in to comment.