Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to latest version of the SDK #88

Merged
merged 3 commits into from
Jan 16, 2024
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
4 changes: 2 additions & 2 deletions Firely.Fhir.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<TargetFrameworks>net6.0;netstandard2.0;</TargetFrameworks>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<FhirNetSdkVersion>5.4.0</FhirNetSdkVersion>
<FhirNetSdkVersion>5.5.1</FhirNetSdkVersion>
</PropertyGroup>

<!-- Solution-wide properties for NuGet packaging -->
Expand All @@ -15,7 +15,7 @@
<VersionSuffix>alpha</VersionSuffix>
<Authors>Firely</Authors>
<Company>Firely (https://fire.ly)</Company>
<Copyright>Copyright 2013-2022 Firely</Copyright>
<Copyright>Copyright 2013-2024 Firely</Copyright>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/FirelyTeam/Firely.Fhir.Packages</RepositoryUrl>
<PackageProjectUrl>https://github.com/FirelyTeam/Firely.Fhir.Packages</PackageProjectUrl>
Expand Down
2 changes: 1 addition & 1 deletion Firely.Fhir.Packages/Tar/Packaging.cs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ await Task.Run(() =>
/// </summary>
/// <param name="entries">package files</param>
/// <returns>a package manifest, and a list of file names</returns>
public static (PackageManifest manifest, IEnumerable<string> files) GetPackageSummary(this IEnumerable<FileEntry> entries)
public static (PackageManifest? manifest, IEnumerable<string> files) GetPackageSummary(this IEnumerable<FileEntry> entries)
{
var files = new List<string>();
var manifest = new PackageManifest("", ""); //TODO: discuss what to do here
Expand Down
Loading