Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Benchmarks/Benchmarks.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.14.0" />
<PackageReference Include="BenchmarkDotNet" Version="0.15.2" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Hl7.Fhir.Base/ElementModel/Types/Ucum.cs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ internal static bool TryDivide(this Quantity quantity, Quantity divisor, [NotNul
return true;
}

private static Quantity quantityFromTuple((string value, string unit, string codesystem) quantity)
private static Quantity quantityFromTuple((string value, string unit, string? codesystem) quantity)
{
return new Quantity(
decimal.Parse(quantity.value, NumberStyles.Any, CultureInfo.InvariantCulture),
Expand Down
2 changes: 1 addition & 1 deletion src/Hl7.Fhir.Base/Hl7.Fhir.Base.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Fhir.Metrics" Version="1.3.0" />
<PackageReference Include="Fhir.Metrics" Version="1.3.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.Reflection.Emit.Lightweight" Version="4.7.0" />
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
Expand Down
6 changes: 3 additions & 3 deletions src/firely-net-sdk.props
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@
</PropertyGroup>

<ItemGroup>
<None Include="..\..\icon-firely-sdk-128.png" Pack="true" PackagePath=""/>
<None Include="..\..\README.md" Pack="true" PackagePath=""/>
<None Include="..\..\icon-firely-sdk-128.png" Pack="true" PackagePath="" />
<None Include="..\..\README.md" Pack="true" PackagePath="" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
</ItemGroup>

<!-- Compiler settings -->
Expand Down