forked from microsoft/dicom-server
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDirectory.Build.props
64 lines (58 loc) · 2.5 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<Project>
<PropertyGroup>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<ApplicationInsightsPackageVersion>2.21.0</ApplicationInsightsPackageVersion>
<Authors>Microsoft Health Team</Authors>
<Company>Microsoft Corporation</Company>
<Copyright>Copyright © Microsoft Corporation. All rights reserved.</Copyright>
<Deterministic>true</Deterministic>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<FhirServerPackageVersion>2.0.55</FhirServerPackageVersion>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<HealthcareSharedPackageVersion>6.1.141</HealthcareSharedPackageVersion>
<HighEntropyVA>true</HighEntropyVA>
<Hl7FhirPackageVersion>4.3.0</Hl7FhirPackageVersion>
<IdentityModelTokenPackageVersion>6.24.0</IdentityModelTokenPackageVersion>
<LangVersion>Latest</LangVersion>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Product>Microsoft Health</Product>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<SdkPackageVersion>6.0.0</SdkPackageVersion>
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
</PropertyGroup>
<!--
The fo-dicom.Codecs package relies on native assemblies for
Linux x64, OSX, and Windows x64. Given that the core dicom
project takes a dependency on these codecs, every project
should also be compiled for x64, as other platforms like x86
would not be able to load these native assemblies.
-->
<PropertyGroup>
<Platforms>x64</Platforms>
</PropertyGroup>
<!-- Include the following source files for .NET Standard 2.0 projects -->
<ItemGroup>
<Compile Include="$(MSBuildThisFileDirectory)\lang\*" Visible="false" />
</ItemGroup>
<Choose>
<When Condition="$(MSBuildProjectName.Contains('Test'))">
<PropertyGroup>
<IsPackable>false</IsPackable>
<NoWarn>$(NoWarn);CS1591</NoWarn>
</PropertyGroup>
</When>
<Otherwise>
<PropertyGroup>
<AnalysisLevel>latest-All</AnalysisLevel>
<IsPackable>true</IsPackable>
</PropertyGroup>
</Otherwise>
</Choose>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
</ItemGroup>
</Project>