-
Notifications
You must be signed in to change notification settings - Fork 17
/
cql-sdk.props
47 lines (40 loc) · 1.99 KB
/
cql-sdk.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
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="cql-base.props" />
<!-- Solution-wide properties for NuGet packaging -->
<PropertyGroup>
<!--
Instructions when updating VersionPrefix/VersionSuffix : https://github.com/FirelyTeam/firely-cql-sdk/wiki/Creating-Tags-and-Releases
Keep this in sync between cql-sdl.props and cql-demo.props
-->
<VersionPrefix>2.0.6</VersionPrefix>
<VersionSuffix>alpha</VersionSuffix>
<Authors>NCQA, Firely ([email protected]) and contributors</Authors>
<Copyright>Copyright 2013-2024 NCQA, Firely. Contains materials (C) HL7 International</Copyright>
<PackageProjectUrl>https://github.com/FirelyTeam/firely-cql-sdk</PackageProjectUrl>
<RepositoryUrl>https://github.com/FirelyTeam/firely-cql-sdk</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>See https://github.com/FirelyTeam/firely-cql-sdk/releases</PackageReleaseNotes>
<PackageLicenseExpression>BSD-3-Clause</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath=""/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
</ItemGroup>
<!-- Compiler settings -->
<PropertyGroup>
<LangVersion>12</LangVersion>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<Configurations>Debug;Release;FullDebug</Configurations>
<AnalysisLevelGlobalization>latest-recommended</AnalysisLevelGlobalization>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NoWarn>RS0026</NoWarn> <!-- Too many bogus warnings, see https://github.com/dotnet/roslyn-analyzers/issues/6757 -->
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.PublicApiAnalyzers" Version="3.11.0-beta1.24318.1" PrivateAssets="All" />
</ItemGroup>
</Project>