-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
49 lines (42 loc) · 2.26 KB
/
Directory.Build.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>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<LangVersion>11</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<AnalysisLevel>latest</AnalysisLevel>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
<!-- https://github.com/dotnet/msbuild/blob/main/documentation/ProjectReference-Protocol.md#setplatform-negotiation -->
<EnableDynamicPlatformResolution>true</EnableDynamicPlatformResolution>
<DisableTransitiveProjectReferences>true</DisableTransitiveProjectReferences>
<!-- Local builds should embed PDBs so we never lose them when a subsequent build occurs. -->
<DebugType Condition=" '$(CI)' != 'true' and '$(TF_BUILD)' != 'true' ">embedded</DebugType>
<Version>0.6.0</Version>
<Company>github.com/chgl</Company>
<Description>A .NET source generator for mapping model classes to HL7 FHIR® Parameters resources.</Description>
<Copyright>© chgl. All rights reserved.</Copyright>
<NeutralLanguage>en-US</NeutralLanguage>
<Authors>chgl</Authors>
<PackageTags>FHIR;source-generator</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>https://github.com/chgl/FhirParametersGenerator/releases</PackageReleaseNotes>
<PackageIcon>icon.png</PackageIcon>
<PackageProjectUrl>https://github.com/chgl/FhirParametersGenerator</PackageProjectUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols Condition=" '$(DebugType)' != 'embedded' ">true</IncludeSymbols>
<!-- <SymbolPackageFormat>snupkg</SymbolPackageFormat> -->
</PropertyGroup>
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="all" />
</ItemGroup>
<ItemDefinitionGroup>
<PackageReference GeneratePathProperty="true" />
</ItemDefinitionGroup>
</Project>