-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
35 lines (29 loc) · 1.14 KB
/
Directory.Build.props
File metadata and controls
35 lines (29 loc) · 1.14 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>
<TargetFrameworks>net8.0;net10.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<Version>0.13.0</Version>
</PropertyGroup>
<!-- Shared metadata for the NuGet package (only applies when IsPackable=true) -->
<PropertyGroup>
<Authors>KernSmith contributors</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/kaltinril/KernSmith</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Copyright>Copyright (c) 2026 KernSmith contributors</Copyright>
</PropertyGroup>
<!-- SourceLink: deterministic builds and embedded sources for debugger support -->
<PropertyGroup>
<Deterministic>true</Deterministic>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
</ItemGroup>
<!-- Library projects opt in via <IsPackable>true</IsPackable> in their .csproj -->
<PropertyGroup>
<IsPackable>false</IsPackable>
</PropertyGroup>
</Project>