-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClaudeCodeProxy.csproj
More file actions
48 lines (48 loc) · 2.11 KB
/
Copy pathClaudeCodeProxy.csproj
File metadata and controls
48 lines (48 loc) · 2.11 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<PublishAot>true</PublishAot>
<InvariantGlobalization>true</InvariantGlobalization>
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
<IsTrimmable>true</IsTrimmable>
<TrimMode>full</TrimMode>
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
<EnableConfigurationBindingGenerator>true</EnableConfigurationBindingGenerator>
</PropertyGroup>
<ItemGroup>
<!-- LlmTornado for multiplexing LLM providers -->
<PackageReference Include="LlmTornado" Version="3.5.4" />
<!-- For enhanced OpenAPI support with AOT -->
<PackageReference
Include="Microsoft.AspNetCore.OpenApi"
Version="10.0.0-preview.4.25258.110 "
/>
<PackageReference
Include="Microsoft.Extensions.DependencyModel"
Version="10.0.0-preview.4.25258.110"
/>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Microsoft.OpenApi" Version="2.0.0-preview9" />
<PackageReference Include="Serilog" Version="4.3.1-dev-02373" />
<PackageReference Include="Serilog.AspNetCore" Version="9.0.0" />
<PackageReference Include="Serilog.Extensions.Hosting" Version="9.0.1-dev-02307" />
<PackageReference Include="Serilog.Settings.Configuration" Version="9.0.1-dev-02317" />
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.1-dev-00953" />
<PackageReference Include="Serilog.Sinks.File" Version="7.0.0" />
</ItemGroup>
<!-- AOT-specific configuration -->
<ItemGroup>
<TrimmerRootAssembly Include="LlmTornado" />
<TrimmerRootAssembly Include="System.Text.Json" />
<TrimmerRootAssembly Include="Newtonsoft.Json" />
<LinkerDescriptor Include="LinkerConfig.xml" />
</ItemGroup>
<!-- Suppress specific trim warnings if needed -->
<PropertyGroup>
<SuppressTrimAnalysisWarnings>false</SuppressTrimAnalysisWarnings>
<WarningsAsErrors />
<WarningsNotAsErrors>IL2026;IL2062;IL2072</WarningsNotAsErrors>
</PropertyGroup>
</Project>