Skip to content

Commit 6c641d5

Browse files
authored
Merge pull request #15 from hl7au/10-target-framework-net70-is-unsupported-upgrade
10 target framework net70 is unsupported upgrade
2 parents f16e698 + 31ef5d9 commit 6c641d5

File tree

12 files changed

+33
-83
lines changed

12 files changed

+33
-83
lines changed

.github/workflows/dotnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
--os ${{ matrix.os }} \
4444
--configuration Release \
4545
-p:PublishSingleFile=True \
46-
--framework net70 \
46+
--framework net80 \
4747
--self-contained true \
4848
--output "Sparked.${{ matrix.program }}-${{ matrix.os }}-${{ matrix.arch }}Output"
4949
- name: Archive production artifacts

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@
99
/*.log
1010
*/dist/*
1111
/xls-converter/xls_converter/__pycache__/
12+
/out/
1213
Sparked.Csv2FhirMapping/test/Csv2FhirMapping-linux-arm64-binaries/*
1314
Sparked.Csv2FhirMapping/test/Csv2FhirMapping-linux-arm64.zip

.gitmodules

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +0,0 @@
1-
[submodule "fhir-net-mappinglanguage"]
2-
path = fhir-net-mappinglanguage
3-
url = https://github.com/brianpos/fhir-net-mappinglanguage.git
4-
branch = develop-r4b

.project

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>au-fhir-test-data-utils</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
</buildSpec>
9+
<natures>
10+
</natures>
11+
</projectDescription>

BuildCsvFhirMapping.bat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
dotnet publish Sparked.Csv2FhirMapping\Sparked.Csv2FhirMapping.csproj -r win-x64 -c Release -p:PublishSingleFile=True --self-contained false --output "out/Sparked.Csv2FhirMapping"

BuildTestDataClient.bat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
dotnet publish Sparked.TestDataClient\Sparked.TestDataClient.csproj -r win-x64 -c Release -p:PublishSingleFile=True --self-contained false --output "out/Sparked.TestDataClient"

Sparked.Csv2FhirMapping/Properties/launchSettings.json

Lines changed: 0 additions & 8 deletions
This file was deleted.

Sparked.Csv2FhirMapping/Sparked.Csv2FhirMapping.csproj

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net70</TargetFramework>
4+
<TargetFramework>net80</TargetFramework>
55

66
<IsPackable>false</IsPackable>
77
<OutputType>Exe</OutputType>
@@ -10,20 +10,16 @@
1010
</PropertyGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="Hl7.Fhir.R4B" Version="5.3.0" />
14-
<PackageReference Include="Hl7.Fhir.Specification.R4B" Version="5.3.0" />
15-
<PackageReference Include="Hl7.Fhir.Validation.Legacy.R4B" Version="5.3.0" />
16-
<PackageReference Include="Hl7.Fhir.Specification.Data.R4B" Version="5.3.0" />
17-
<PackageReference Include="Firely.Fhir.Packages" Version="4.2.0" />
13+
<PackageReference Include="Hl7.Fhir.R4B" Version="5.11.1" />
14+
<PackageReference Include="Hl7.Fhir.Specification.R4B" Version="5.11.0" />
15+
<PackageReference Include="Hl7.Fhir.Validation.Legacy.R4B" Version="5.11.0" />
16+
<PackageReference Include="Hl7.Fhir.Specification.Data.R4B" Version="5.11.0" />
17+
<PackageReference Include="Firely.Fhir.Packages" Version="4.9.0" />
18+
<PackageReference Include="brianpos.Fhir.R4B.MappingLanguage" Version="5.10.2-beta3" />
1819
</ItemGroup>
1920

2021
<ItemGroup>
21-
<ProjectReference Include="..\fhir-net-mappinglanguage\Hl7.Fhir.MappingLanguage\Hl7.Fhir.MappingLanguage.csproj" />
22-
</ItemGroup>
23-
24-
25-
<ItemGroup>
26-
<Content Update="C:\Users\heath\.nuget\packages\hl7.fhir.specification.data.r4b\5.3.0\contentFiles\any\any\specification.zip">
22+
<Content Update="specification.zip">
2723
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
2824
</Content>
2925
</ItemGroup>

Sparked.Csv2FhirMapping/Sparked.Csv2FhirMapping.sln

Lines changed: 0 additions & 39 deletions
This file was deleted.

Sparked.TestDataClient/Properties/launchSettings.json

Lines changed: 0 additions & 8 deletions
This file was deleted.
Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<OutputType>Exe</OutputType>
5-
<TargetFramework>net70</TargetFramework>
6-
<ImplicitUsings>enable</ImplicitUsings>
7-
<Nullable>enable</Nullable>
8-
<AssemblyName>TestDataClient</AssemblyName>
9-
</PropertyGroup>
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>net80</TargetFramework>
6+
<ImplicitUsings>enable</ImplicitUsings>
7+
<Nullable>enable</Nullable>
8+
<AssemblyName>TestDataClient</AssemblyName>
9+
</PropertyGroup>
1010

11-
<ItemGroup>
12-
<PackageReference Include="Hl7.Fhir.R4" Version="5.6.1" />
13-
</ItemGroup>
11+
<ItemGroup>
12+
<PackageReference Include="Hl7.Fhir.R4B" Version="5.11.1" />
13+
</ItemGroup>
1414

1515
</Project>

fhir-net-mappinglanguage

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)