-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMemoryKit.API.csproj
More file actions
56 lines (46 loc) · 2.52 KB
/
MemoryKit.API.csproj
File metadata and controls
56 lines (46 loc) · 2.52 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
55
56
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<AssemblyName>MemoryKit.API</AssemblyName>
<RootNamespace>MemoryKit.API</RootNamespace>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1591</NoWarn>
<!-- Self-contained publishing configuration -->
<RuntimeIdentifiers>linux-x64;osx-x64;osx-arm64;win-x64</RuntimeIdentifiers>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<PublishTrimmed>false</PublishTrimmed>
<PublishReadyToRun>false</PublishReadyToRun>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
<!-- Reduce executable size -->
<!--<TrimMode>partial</TrimMode>-->
<InvariantGlobalization>false</InvariantGlobalization>
</PropertyGroup>
<ItemGroup>
<!-- ASP.NET Core & Web API -->
<!--<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.11" />-->
<!--<PackageReference Include="Swashbuckle.AspNetCore" Version="6.10.2" />-->
<!-- CQRS & Validation -->
<PackageReference Include="MediatR" Version="14.1.0" />
<PackageReference Include="FluentValidation.AspNetCore" Version="11.3.1" />
<!-- Application Insights & Monitoring -->
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.23.0" />
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks" Version="9.0.14" />
<!-- Rate Limiting (built into .NET 9) -->
<PackageReference Include="System.Threading.RateLimiting" Version="10.0.5" />
<!-- Configuration & DI -->
<PackageReference Include="Microsoft.Extensions.Configuration" Version="9.0.14" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.14" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.14" />
<PackageReference Include="Microsoft.Extensions.Logging.ApplicationInsights" Version="2.23.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MemoryKit.Domain\MemoryKit.Domain.csproj" />
<ProjectReference Include="..\MemoryKit.Application\MemoryKit.Application.csproj" />
<ProjectReference Include="..\MemoryKit.Infrastructure\MemoryKit.Infrastructure.csproj" />
</ItemGroup>
</Project>