-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
54 lines (46 loc) · 1.92 KB
/
Directory.Build.props
File metadata and controls
54 lines (46 loc) · 1.92 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<Project>
<!-- Compiler Settings -->
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<!-- Package Identity & Metadata -->
<PropertyGroup>
<Authors>Isaiah Clifford Opoku</Authors>
<Company>CliffTechSolutions</Company>
<Product>EfCoreKit</Product>
<Copyright>Copyright © Isaiah Clifford Opoku 2026</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageTags>efcore;entity-framework-core;soft-delete;audit-trail;pagination;repository-pattern;specification-pattern;unit-of-work;dynamic-filters;orm-extensions;dotnet;csharp</PackageTags>
<PackageProjectUrl>https://github.com/Clifftech123/EfCoreKit</PackageProjectUrl>
<RepositoryUrl>https://github.com/Clifftech123/EfCoreKit</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<!-- Symbols, Source Link & Debugging -->
<PropertyGroup>
<DebugType>embedded</DebugType>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
</PropertyGroup>
<!-- Build Quality -->
<PropertyGroup>
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
</PropertyGroup>
<!-- MinVer — drives versioning from git tags (prefix: v) -->
<PropertyGroup>
<MinVerTagPrefix>v</MinVerTagPrefix>
</PropertyGroup>
<!-- Release optimizations -->
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<Optimize>true</Optimize>
</PropertyGroup>
<!-- MinVer tool reference (applies to all projects) -->
<ItemGroup>
<PackageReference Include="MinVer" PrivateAssets="All" />
</ItemGroup>
</Project>