Skip to content

Commit

Permalink
First release of Quantities.Serialization.Text.Json (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
atmoos committed Nov 26, 2023
2 parents 8bd57a4 + 6ce2d2c commit 7a0233d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
dotnet-version: ${{ env.DotNetVersion }}
- uses: tedd/publish-nuget-neo@v1
with:
NUGET_KEY: ${{secrets.CREATENEWNUGETPACKAGE}}
NUGET_KEY: ${{secrets.PUSH_NEW_QUANTITY_VERSION}}
PROJECT_FILE_PATH: ${{env.Project}}
TAG_COMMIT: true
TAG_FORMAT: ${{env.Prefix}}/v*
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\..\Quantities\Quantities.csproj" />
<ProjectReference Include="..\..\Quantities.Units\Quantities.Units.csproj" />
<ProjectReference Include="..\Text.Json\Quantities.Serialization.Text.Json.csproj" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Atmoos.Quantities.Units" Version="1.0.0" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
<Import Project="../Serialization.Pack.targets"/>

<PropertyGroup>
<Version>0.1.0-alpha</Version>
<Version>1.0.0</Version>
<RootNamespace>Quantities.Serialization.Text.Json</RootNamespace>
<PackageTags>$(PackageTags), json, text.json, system.text.json, system-text-json</PackageTags>
<Description>Serialization of Atmoos.Quantities types with System.Text.Json.</Description>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\..\Quantities\Quantities.csproj" />
<PackageReference Include="Atmoos.Quantities" Version="1.0.0" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion source/Quantities.Serialization/Text.Json/readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Serialization of Quantities using System.Text.Json

Enables serialisation of `Atmoos.Quantities` using `System.Text.Json`.
Enables serialisation of [Atmoos.Quantities](https://www.nuget.org/packages/Atmoos.Quantities/) using `System.Text.Json`.

## Usage

Expand Down

0 comments on commit 7a0233d

Please sign in to comment.