-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSkillValidator.csproj
More file actions
47 lines (40 loc) · 2.03 KB
/
SkillValidator.csproj
File metadata and controls
47 lines (40 loc) · 2.03 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<AssemblyName>skill-validator</AssemblyName>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<!-- Packaging -->
<PackageId>Microsoft.DotNet.SkillValidator</PackageId>
<PackAsTool>true</PackAsTool>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<ToolCommandName>skill-validator</ToolCommandName>
<Version>1.0.0</Version>
<Description>Validate that agent skills meaningfully improve agent performance</Description>
<PackageReadmeFile>README.md</PackageReadmeFile>
<!-- Publishing -->
<RuntimeIdentifiers>win-x64;win-arm64;linux-x64;linux-arm64;osx-arm64</RuntimeIdentifiers>
<PublishAot>true</PublishAot>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="/" CopyToPublishDirectory="PreserveNewest" />
<None Include="docs\*.md" Pack="true" PackagePath="/docs" CopyToPublishDirectory="PreserveNewest" />
<None Include="..\..\..\LICENSE" Pack="false" CopyToPublishDirectory="PreserveNewest" Link="LICENSE" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="SkillValidator.Tests" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Bcl.Memory" Version="10.0.6" />
<PackageReference Include="Microsoft.Data.Sqlite" Version="10.0.6" />
<PackageReference Include="Microsoft.Extensions.FileSystemGlobbing" Version="10.0.6" />
<PackageReference Include="Microsoft.ML.Tokenizers" Version="2.0.0" />
<PackageReference Include="Microsoft.ML.Tokenizers.Data.Cl100kBase" Version="2.0.0" />
<PackageReference Include="System.CommandLine" Version="2.0.6" />
<!-- external -->
<PackageReference Include="GitHub.Copilot.SDK" Version="0.2.2" />
<PackageReference Include="YamlDotNet" Version="17.0.1" />
<PackageReference Include="Vecc.YamlDotNet.Analyzers.StaticGenerator" Version="17.0.0" />
</ItemGroup>
</Project>