-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathcql-sdk.props
51 lines (44 loc) · 2.01 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
48
49
50
51
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="cql-base.props" />
<PropertyGroup>
<!-- ## Compiler settings -->
<LangVersion>12</LangVersion>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<AnalysisLevelGlobalization>latest-recommended</AnalysisLevelGlobalization>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NoWarn>$(NoWarn);RS0026</NoWarn>
<!-- Too many bogus warnings, see https://github.com/dotnet/roslyn-analyzers/issues/6757 -->
</PropertyGroup>
<PropertyGroup>
<!-- ## Solution-wide properties for NuGet packaging -->
<!--
## Instructions when updating VersionPrefix/VersionSuffix : https://github.com/FirelyTeam/firely-cql-sdk/wiki/Creating-Tags-and-Releases
Keep this in sync between cql-sdk.props and cql-demo.props
-->
<VersionPrefix>2.0.14</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>
<ItemGroup>
<PackageReference
Condition="'$(Configuration)' == 'Release'"
Include="Microsoft.CodeAnalysis.PublicApiAnalyzers"
Version="3.12.0-beta1.25081.1"
PrivateAssets="All" />
</ItemGroup>
</Project>