-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
36 lines (31 loc) · 1.38 KB
/
Copy pathDirectory.Build.props
File metadata and controls
36 lines (31 loc) · 1.38 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
<Project>
<PropertyGroup>
<!-- Common package metadata -->
<Authors>Jerrett Davis</Authors>
<Company>JD Software</Company>
<Copyright>Copyright (c) Jerrett Davis 2025</Copyright>
<PackageProjectUrl>https://github.com/JerrettDavis/JD.Domain</PackageProjectUrl>
<RepositoryUrl>https://github.com/JerrettDavis/JD.Domain</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageTags>domain;ddd;domain-driven-design;efcore;entity-framework;validation;rules;modeling</PackageTags>
<!-- Build settings -->
<Deterministic>true</Deterministic>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<DebugType>portable</DebugType>
<!-- Enable nullable and latest language features -->
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<!-- Documentation -->
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- Source Link for debugging -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
<PackageReference Include="Nerdbank.GitVersioning" PrivateAssets="all" />
</ItemGroup>
</Project>