-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathManagedCode.Agents.csproj
More file actions
69 lines (62 loc) · 2.99 KB
/
ManagedCode.Agents.csproj
File metadata and controls
69 lines (62 loc) · 2.99 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>ManagedCode.Agents</AssemblyName>
<RootNamespace>ManagedCode.DotnetSkills</RootNamespace>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>preview</LangVersion>
<PackAsTool>true</PackAsTool>
<PackageId>agents</PackageId>
<ToolCommandName>agents</ToolCommandName>
<VersionPrefix>0.0</VersionPrefix>
<Version>$(VersionPrefix).0</Version>
<Title>ManagedCode Agents</Title>
<Authors>ManagedCode</Authors>
<Company>ManagedCode</Company>
<Description>Install and manage the dotnet-skills orchestration agents as a standalone CLI tool.</Description>
<PackageTags>dotnet;agents;codex;ai;mcaf</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/managedcode/dotnet-skills</PackageProjectUrl>
<RepositoryUrl>https://github.com/managedcode/dotnet-skills.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageReleaseNotes>https://github.com/managedcode/dotnet-skills/releases</PackageReleaseNotes>
<PackageOutputPath>../../artifacts/nuget</PackageOutputPath>
<IncludeContentInPack>true</IncludeContentInPack>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<Compile Include="../ManagedCode.DotnetSkills/**/*.cs" Exclude="../ManagedCode.DotnetSkills/bin/**;../ManagedCode.DotnetSkills/obj/**" />
</ItemGroup>
<ItemGroup>
<Content Include="../../catalog/**/*" Exclude="../../catalog/**/.DS_Store">
<Link>catalog/%(RecursiveDir)%(Filename)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Pack>false</Pack>
</Content>
<None Include="../../README.md">
<Link>README.md</Link>
<Pack>true</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="NuGet.Versioning" Version="7.3.0" />
<PackageReference Include="Spectre.Console" Version="0.54.0" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="ManagedCode.DotnetSkills.Tests" />
</ItemGroup>
<ItemGroup>
<AssemblyMetadata Include="ManagedCode.DotnetSkills.Surface" Value="agents" />
<AssemblyMetadata Include="ManagedCode.DotnetSkills.PackageId" Value="$(PackageId)" />
<AssemblyMetadata Include="ManagedCode.DotnetSkills.ToolCommandName" Value="$(ToolCommandName)" />
<AssemblyMetadata Include="ManagedCode.DotnetSkills.DisplayCommand" Value="agents" />
<AssemblyMetadata Include="ManagedCode.DotnetSkills.SkipUpdateEnvironmentVariable" Value="AGENTS_SKIP_UPDATE_CHECK" />
<AssemblyMetadata Include="ManagedCode.DotnetSkills.CacheDirectoryName" Value="agents" />
</ItemGroup>
<Import Project="../Catalog.Generated.targets" />
</Project>