-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
30 lines (26 loc) · 1.13 KB
/
Directory.Build.props
File metadata and controls
30 lines (26 loc) · 1.13 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
<Project>
<PropertyGroup>
<!-- Shared compiler settings -->
<LangVersion>preview</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<!-- Generate documentation for all projects -->
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<!-- Common package metadata -->
<Authors>Jose Luis Latorre</Authors>
<Company>AgentEval</Company>
<RepositoryUrl>https://github.com/joslat/AgentEval</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/joslat/AgentEval</PackageProjectUrl>
<Copyright>Copyright © 2026 Jose Luis Latorre</Copyright>
<!-- Package icon for NuGet -->
<PackageIcon>AgentEvalNugetLogoAE.png</PackageIcon>
</PropertyGroup>
<!-- Include logo for NuGet packages -->
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)assets\AgentEvalNugetLogoAE.png" Pack="true" PackagePath="\" Visible="false" />
</ItemGroup>
</Project>