-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathAotConsole.csproj
More file actions
24 lines (20 loc) · 948 Bytes
/
AotConsole.csproj
File metadata and controls
24 lines (20 loc) · 948 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PublishAot>true</PublishAot>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\libs\CSharpToJsonSchema.Generators\CSharpToJsonSchema.Generators.csproj" OutputItemType="analyzer" />
<ProjectReference Include="..\..\libs\CSharpToJsonSchema\CSharpToJsonSchema.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.DotNet.ILCompiler" Version="10.0.7" />
<PackageReference Include="Microsoft.Extensions.AI" Version="10.5.2" />
<PackageReference Include="Microsoft.Extensions.AI.OpenAI" Version="10.5.2" />
<PackageReference Include="OpenAI" Version="2.10.0" />
</ItemGroup>
</Project>