Forge
3407750f
1<Project Sdk="Microsoft.NET.Sdk">
2
3 <PropertyGroup>
4 <TargetFramework>net10.0</TargetFramework>
5 <Nullable>enable</Nullable>
6 <ImplicitUsings>enable</ImplicitUsings>
7 <LangVersion>14</LangVersion>
8 <IsPackable>false</IsPackable>
9 </PropertyGroup>
10
11 <ItemGroup>
12 <PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="10.0.9" />
13 <PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.6.0" />
14 <PackageReference Include="System.Security.Cryptography.Pkcs" Version="10.0.6" />
15 <PackageReference Include="System.Security.Cryptography.Xml" Version="10.0.6" />
16 <PackageReference Include="xunit" Version="2.9.3" />
17 <PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
18 <PrivateAssets>all</PrivateAssets>
19 <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
20 </PackageReference>
21 </ItemGroup>
22
23 <ItemGroup>
24 <ProjectReference Include="..\..\src\AgentForge\AgentForge.csproj" />
25 <ProjectReference Include="..\..\src\AgentForge.Credentials\AgentForge.Credentials.csproj" />
26 <ProjectReference Include="..\..\src\AgentForge.Plugin.Sdk\AgentForge.Plugin.Sdk.csproj">
27 <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
28 </ProjectReference>
29 <ProjectReference Include="..\..\src\AgentForge.Plugin.View\AgentForge.Plugin.View.csproj">
30 <ReferenceOutputAssembly>true</ReferenceOutputAssembly>
31 </ProjectReference>
32 <ProjectReference Include="..\..\src\AgentForge.Plugin.Issue\AgentForge.Plugin.Issue.csproj">
33 <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
34 </ProjectReference>
35 <ProjectReference Include="..\..\src\AgentForge.Plugin.MergeRequest\AgentForge.Plugin.MergeRequest.csproj">
36 <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
37 </ProjectReference>
38 <ProjectReference Include="..\..\src\AgentForge.Plugin.Ci\AgentForge.Plugin.Ci.csproj">
39 <ReferenceOutputAssembly>true</ReferenceOutputAssembly>
40 </ProjectReference>
41 <ProjectReference Include="..\..\src\AgentForge.Plugin.RepositoryImport.GitHub.Core\AgentForge.Plugin.RepositoryImport.GitHub.Core.csproj">
42 <ReferenceOutputAssembly>true</ReferenceOutputAssembly>
43 </ProjectReference>
44 <ProjectReference Include="..\..\src\AgentForge.Plugin.RepositoryImport.GitHub\AgentForge.Plugin.RepositoryImport.GitHub.csproj">
45 <ReferenceOutputAssembly>true</ReferenceOutputAssembly>
46 </ProjectReference>
47 <ProjectReference Include="..\..\src\AgentForge.Plugin.RepositoryImport.GitHub.User\AgentForge.Plugin.RepositoryImport.GitHub.User.csproj">
48 <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
49 </ProjectReference>
50 <ProjectReference Include="..\..\src\AgentForge.Plugin.Org.Import.GitHub\AgentForge.Plugin.Org.Import.GitHub.csproj">
51 <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
52 </ProjectReference>
53 <ProjectReference Include="..\..\src\AgentForge.Plugin.Grouping.Core\AgentForge.Plugin.Grouping.Core.csproj">
54 <ReferenceOutputAssembly>true</ReferenceOutputAssembly>
55 </ProjectReference>
56 <ProjectReference Include="..\..\src\AgentForge.Plugin.Grouping.Repositories\AgentForge.Plugin.Grouping.Repositories.csproj">
57 <ReferenceOutputAssembly>true</ReferenceOutputAssembly>
58 </ProjectReference>
59 <ProjectReference Include="..\..\src\AgentForge.Plugin.Grouping.Releases\AgentForge.Plugin.Grouping.Releases.csproj">
60 <ReferenceOutputAssembly>true</ReferenceOutputAssembly>
61 </ProjectReference>
62 <ProjectReference Include="..\..\src\AgentForge.Plugin.Releases\AgentForge.Plugin.Releases.csproj">
63 <ReferenceOutputAssembly>true</ReferenceOutputAssembly>
64 </ProjectReference>
65 </ItemGroup>
66
67</Project>
68
View only · write via MCP/CIDE