-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
28 lines (28 loc) · 1.12 KB
/
Directory.Build.props
File metadata and controls
28 lines (28 loc) · 1.12 KB
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
<Project>
<PropertyGroup>
<Nullable>enable</Nullable>
<!-- Disable pocof.xml generation. -->
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<!-- Disable deps.json generation -->
<GenerateDependencyFile>false</GenerateDependencyFile>
<!-- Disable satellite assemblies generation -->
<SatelliteResourceLanguages>en-US</SatelliteResourceLanguages>
<!-- Set warning level to 4 and treat warnings as errors -->
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<!-- NOTE: F# dependencies. -->
<PackageReference Include="FSharp.Core" />
<!-- NOTE: PowerShell dependencies. -->
<PackageReference Include="Microsoft.PowerShell.SDK">
<ExcludeAssets>contentFiles</ExcludeAssets>
<PrivateAssets>All</PrivateAssets>
</PackageReference>
<!-- NOTE: Analyzer configurations. -->
<PackageReference Include="Ionide.Analyzers">
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
</Project>