Skip to content

Commit

Permalink
fix: added missing package reference to System.Text.Json
Browse files Browse the repository at this point in the history
  • Loading branch information
dtanglr committed Apr 10, 2024
1 parent c857817 commit 6084e69
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Primitively" Version="1.4.15-rc.3" PrivateAssets="All" />
<PackageReference Include="Primitively" Version="1.4.20" PrivateAssets="All" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Primitively" Version="1.4.15-rc.3" PrivateAssets="All" />
<PackageReference Include="Primitively" Version="1.4.20" PrivateAssets="All" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Primitively" Version="1.4.15-rc.3" PrivateAssets="All" />
<PackageReference Include="Primitively" Version="1.4.20" PrivateAssets="All" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">

<!--
To target netstandard2.0, the below props are required to support some features introduced after netstandard2.0 and
the c# 7.3 lang version release dates, such as 'record structs' which came with c# 10.
To target netstandard2.0, the c# 10 lang version (available in net6.0) must be used to support 'record structs'.
This is not recommended for production use, but is used here to demonstrate the use of Primitively on older versions of .NET.
-->

<PropertyGroup>
Expand All @@ -13,13 +13,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Primitively" Version="1.4.15-rc.3" PrivateAssets="All" />
<PackageReference Include="IsExternalInit" Version="1.0.3"><!--Adds support for 'record'-->
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="System.Text.Json" Version="8.0.1" />
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
<PackageReference Include="Primitively" Version="1.4.20" PrivateAssets="All" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Primitively" Version="1.4.15-rc.3" PrivateAssets="all" />
<PackageReference Include="Primitively" Version="1.4.20" PrivateAssets="all" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.19.6" />
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.20.1" />
<PackageReference Include="MongoDB.Driver" Version="2.24.0" />
<PackageReference Include="Primitively.AspNetCore.Mvc" Version="1.4.15-rc.3" />
<PackageReference Include="Primitively.AspNetCore.SwaggerGen" Version="1.4.15-rc.3" />
<PackageReference Include="Primitively.MongoDB.Bson" Version="1.4.15-rc.3" />
<PackageReference Include="Primitively.AspNetCore.Mvc" Version="1.4.20" />
<PackageReference Include="Primitively.AspNetCore.SwaggerGen" Version="1.4.20" />
<PackageReference Include="Primitively.MongoDB.Bson" Version="1.4.20" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<PackageOutputPath>$(MSBuildThisFileDirectory)..\artifacts</PackageOutputPath>
<version>1.4.19</version>
<version>1.4.20</version>
</PropertyGroup>

<ItemGroup>
Expand Down
6 changes: 2 additions & 4 deletions src/Primitively.Abstractions/Primitively.Abstractions.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,10 @@
<Import Project="..\Publish.props" />

<ItemGroup>
<PackageReference Include="IsExternalInit" Version="1.0.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="IsExternalInit" Version="1.0.3" PrivateAssets="all" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.1" />
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
<PackageReference Include="System.Text.Json" Version="8.0.3" />
</ItemGroup>

</Project>

0 comments on commit 6084e69

Please sign in to comment.