-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
34 lines (33 loc) · 1.8 KB
/
Directory.Build.props
File metadata and controls
34 lines (33 loc) · 1.8 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
<Project>
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>true</IsPackable>
<Version>2.3.34</Version>
<Authors>Andrey Serdyuk</Authors>
<Company>TaskHub</Company>
<Title>TaskHub.Shared - Reusable Primitives for .NET Microservices</Title>
<Description>TaskHub.Shared is a lightweight, modular shared kernel for .NET microservices. Built on DDD and Clean Architecture principles, it provides reusable primitives, CQRS pipelines, observability integrations (OpenTelemetry), and infrastructure adapters (EF Core, Redis, GeoCoding). Perfect for scalable task management systems. Explore modules for consistent cross-service patterns.</Description>
<PackageTags>dotnet;microservices;ddd;clean-architecture;cqrs;observability;opentelemetry;otel;redis;efcoretracing;prometheus;grafana;</PackageTags>
<Copyright>Copyright © 2025 TaskHub</Copyright>
<ProjectUrl>https://github.com/TaskHub-Server/TaskHub.Shared</ProjectUrl>
<PackageProjectUrl>https://taskhub-server.github.io/TaskHub.Shared/</PackageProjectUrl>
<RepositoryUrl>https://github.com/TaskHub-Server/TaskHub.Shared</RepositoryUrl>
<RepositoryType>github</RepositoryType>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<IncludeProjectReferences>true</IncludeProjectReferences>
<IncludeSymbols>true</IncludeSymbols>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<PackageOutputPath>..\..\.nuget</PackageOutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Update="*" />
<None Include="$(MSBuildThisFileDirectory)README.md"
Pack="true"
PackagePath="/"
Visible="false"
Condition="Exists('$(MSBuildThisFileDirectory)README.md')" />
</ItemGroup>
</Project>