-
Notifications
You must be signed in to change notification settings - Fork 7
/
Firely.Fhir.ValidationDemo.csproj
49 lines (44 loc) · 1.68 KB
/
Firely.Fhir.ValidationDemo.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<Version>2.0.0</Version>
</PropertyGroup>
<PropertyGroup>
<Authors>Firely</Authors>
<Company>Firely (https://fire.ly)</Company>
<Copyright>Copyright 2015-2023 Firely</Copyright>
<RepositoryUrl>https://github.com/FirelyTeam/Furore.Fhir.ValidationDemo</RepositoryUrl>
<Title>Firely Profile Validator Demo</Title>
<Description>Demo application showcasing the profile validation capabilities of the SDK.</Description>
<PackageTags>HL7;FHIR;Validation;Demo</PackageTags>
</PropertyGroup>
<ItemGroup>
<Compile Remove="old version\**" />
<EmbeddedResource Remove="old version\**" />
<None Remove="old version\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Firely.Fhir.Packages" Version="4.8.0" />
<PackageReference Include="Firely.Fhir.Validation" Version="2.5.0" />
<PackageReference Include="Firely.Fhir.Validation.R4" Version="2.5.0" />
<PackageReference Include="Hl7.Fhir.R4" Version="5.10.3" />
<PackageReference Include="Hl7.Fhir.Conformance" Version="5.10.3" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Settings.Designer.cs">
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<None Update="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
</Project>