-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
33 lines (28 loc) · 982 Bytes
/
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
<Project>
<PropertyGroup>
<Company>BEN ABT</Company>
<Authors>BEN ABT</Authors>
<Product>Entity Framework Demo - by BEN ABT</Product>
<!-- dont touch this vars
all projects are not packable by default
if you want a package to be available as package, activate in the specific project please -->
<IsPackable>false</IsPackable>
</PropertyGroup>
<!-- Project Env -->
<PropertyGroup>
<Tfm>net8.0</Tfm>
<PlatformAssemblyPrefix>BenjaminAbt</PlatformAssemblyPrefix>
</PropertyGroup>
<!-- .NET SDK Settings -->
<PropertyGroup>
<LangVersion>preview</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<!-- NuGet -->
<PropertyGroup>
<NuGetAudit>true</NuGetAudit>
<NuGetAuditLevel>low</NuGetAuditLevel>
<NuGetAuditMode>all</NuGetAuditMode>
</PropertyGroup>
</Project>