-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
32 lines (32 loc) · 1.54 KB
/
Directory.Build.props
File metadata and controls
32 lines (32 loc) · 1.54 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
<Project>
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>disable</ImplicitUsings>
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute>
<NoWarn>$(NoWarn);NETSDK1138;SYSLIB0003;SYSLIB0004;SYSLIB0011;IL2026;IL2050;IL2075;IL2067;IL2070;IL2072;IL2077;IL2080;IL2087;IL2090;IL2104;CS0169;CS0414;CS0618;CS0649;CS8981;CS9113;CA1041;CA1069;CA1401;CA1510;CA2101;SYSLIB1054;SYSLIB1096;</NoWarn>
</PropertyGroup>
<ItemGroup>
<SupportedPlatform Include="windows" />
</ItemGroup>
<ItemGroup Condition=" !$(TargetFramework.StartsWith('net4')) ">
<Using Include="System"/>
<Using Include="System.Collections.Generic"/>
<Using Include="System.Linq"/>
<Using Include="System.Runtime.InteropServices"/>
<Using Include="System.Text"/>
<Using Include="System.Threading"/>
<Using Include="System.Runtime.InteropServices.ComTypes.FILETIME" Alias="FILETIME"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Vanara.CodeGen">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>