-
Notifications
You must be signed in to change notification settings - Fork 1
/
Firely.Fhir.Packages.props
49 lines (43 loc) · 1.96 KB
/
Firely.Fhir.Packages.props
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 xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- Build properties -->
<PropertyGroup>
<TargetFrameworks>net8.0;netstandard2.0;</TargetFrameworks>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<FhirNetSdkVersion>5.11.0</FhirNetSdkVersion>
</PropertyGroup>
<!-- Solution-wide properties for NuGet packaging -->
<PropertyGroup>
<LangVersion>9.0</LangVersion>
<VersionPrefix>4.8.1</VersionPrefix>
<VersionSuffix>alpha</VersionSuffix>
<Authors>Firely</Authors>
<Company>Firely (https://fire.ly)</Company>
<Copyright>Copyright 2013-2024 Firely</Copyright>
<Title>Firely's HL7 FHIR Package Library</Title>
<Description>This is Firely's support library for anyone who wants to work with HL7 FHIR packages.</Description>
<PackageTags>HL7;FHIR;Firely;Package;SDK;</PackageTags>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/FirelyTeam/Firely.Fhir.Packages</RepositoryUrl>
<PackageProjectUrl>https://github.com/FirelyTeam/Firely.Fhir.Packages</PackageProjectUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<!-- Strong name signing -->
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<SignAssembly>True</SignAssembly>
<DelaySign>true</DelaySign>
<AssemblyOriginatorKeyFile>..\FirelyPackages-publickey.snk</AssemblyOriginatorKeyFile>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<None Include="..\LICENSE" Pack="true" PackagePath=""/>
<None Include="..\README.md" Pack="true" PackagePath=""/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
</ItemGroup>
</Project>