-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
35 lines (30 loc) · 1.2 KB
/
Directory.Build.props
File metadata and controls
35 lines (30 loc) · 1.2 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
29
30
31
32
33
34
35
<Project>
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<UseArtifactsOutput>true</UseArtifactsOutput>
</PropertyGroup>
<PropertyGroup Condition="'$(MSBuildProjectExtension)' == '.csproj'">
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>default</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(MSBuildProjectExtension)' == '.fsproj'">
<Tailcalls>false</Tailcalls>
<OtherFlags>$(OtherFlags) --test:GraphBasedChecking --test:ParallelOptimization --test:ParallelIlxGen</OtherFlags>
<NoWarn>
<!--Unverifiable IL--> 9,
<!--explicit new IDisposable--> 0760,
<!--unsafe--> 96,
<!--static abstract--> 3535,
<!--inline il--> 42,
<!--op_Explicit--> 77,
<!--op_Implicit--> 3391,
<!--Resumable code invocation--> 3513,
<!--Compiler only construct--> 1204
</NoWarn>
<LangVersion>preview</LangVersion>
</PropertyGroup>
<ItemGroup Condition="'$(MSBuildProjectExtension)' == '.fsproj'">
<PackageReference Include="FSharp.Core"/>
</ItemGroup>
</Project>