-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
32 lines (28 loc) · 1.28 KB
/
Directory.Build.props
File metadata and controls
32 lines (28 loc) · 1.28 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>
<!-- Build settings -->
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<!-- Package version (shared across all packable projects) -->
<Version>0.3.0-preview.4</Version>
<!-- NuGet shared metadata -->
<Authors>Tianqi Zhang</Authors>
<Copyright>Copyright (c) Tianqi Zhang</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/TianqiZhang/Retrievo</PackageProjectUrl>
<RepositoryUrl>https://github.com/TianqiZhang/Retrievo</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<!-- SourceLink (built-in for .NET 8 SDK + GitHub) -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
<!-- Default: projects don't produce NuGet packages unless explicitly set -->
<IsPackable>false</IsPackable>
</PropertyGroup>
</Project>