forked from microsoft/agent-lightning
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
26 lines (26 loc) · 1.15 KB
/
Directory.Build.props
File metadata and controls
26 lines (26 loc) · 1.15 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
<Project>
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<LangVersion>preview</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<EnablePreviewFeatures>true</EnablePreviewFeatures>
<Deterministic>true</Deterministic>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<Version>0.0.1</Version>
<Authors>ManagedCode</Authors>
<Company>ManagedCode</Company>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/managedcode/agent-lightning</RepositoryUrl>
<PackageProjectUrl>https://github.com/managedcode/agent-lightning</PackageProjectUrl>
<Description>.NET port of Microsoft Agent Lightning built on Microsoft.Extensions.AI.</Description>
<PackageTags>agents;ai;reinforcement-learning</PackageTags>
</PropertyGroup>
<ItemGroup>
<Using Include="System.Collections.Generic" />
<Using Include="System.Diagnostics.CodeAnalysis" />
<Using Include="System.Text.Json" />
<Using Include="System.Text.Json.Serialization" />
</ItemGroup>
</Project>