-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
32 lines (25 loc) · 985 Bytes
/
Directory.Build.props
File metadata and controls
32 lines (25 loc) · 985 Bytes
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>net9.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
<Authors>FizzCode Ltd.</Authors>
<Company>FizzCode Ltd.</Company>
<Copyright>Copyright © 2019-2025 FizzCode Ltd.</Copyright>
<Product>LightWeight libraries for .NET</Product>
<RepositoryUrl>https://github.com/FizzcodeSoftware/LightWeight</RepositoryUrl>
<UseArtifactsOutput>true</UseArtifactsOutput>
<NuGetAuditMode>direct</NuGetAuditMode>
</PropertyGroup>
<ItemGroup>
<Using Include="System" />
<Using Include="System.Collections.Generic" />
<Using Include="System.Globalization" />
<Using Include="System.IO" />
<Using Include="System.Linq" />
<Using Include="System.Text" />
<Using Include="System.Text.Json.Serialization" />
<Using Include="System.Threading" />
</ItemGroup>
</Project>