-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathCobolToQuarkusMigration.csproj
More file actions
49 lines (44 loc) · 1.91 KB
/
CobolToQuarkusMigration.csproj
File metadata and controls
49 lines (44 loc) · 1.91 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.AI.OpenAI" Version="2.1.0" />
<PackageReference Include="Azure.Identity" Version="1.17.1" />
<PackageReference Include="Microsoft.Agents.AI.AzureAI" Version="1.0.0-preview.251204.1" />
<PackageReference Include="Microsoft.Agents.AI.OpenAI" Version="1.0.0-preview.251204.1" />
<PackageReference Include="Microsoft.Extensions.AI" Version="10.0.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="10.0.0" />
<PackageReference Include="Microsoft.Data.Sqlite" Version="10.0.0" />
<PackageReference Include="Neo4j.Driver" Version="5.15.0" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
</ItemGroup>
<ItemGroup>
<Compile Remove="McpChatWeb\**\*.cs" />
<Compile Remove="McpChatWeb.Tests\**\*.cs" />
<Compile Remove="CobolToQuarkusMigration.Tests\**\*.cs" />
<EmbeddedResource Remove="McpChatWeb\**\*" />
<EmbeddedResource Remove="McpChatWeb.Tests\**\*" />
<EmbeddedResource Remove="CobolToQuarkusMigration.Tests\**\*" />
<None Remove="McpChatWeb\**\*" />
<None Remove="McpChatWeb.Tests\**\*" />
<None Remove="CobolToQuarkusMigration.Tests\**\*" />
<Content Remove="McpChatWeb\**\*" />
<Content Remove="McpChatWeb.Tests\**\*" />
<Content Remove="CobolToQuarkusMigration.Tests\**\*" />
</ItemGroup>
<ItemGroup>
<None Update="Config\**\*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Agents\Prompts\**\*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Compile Remove="output\**" />
</ItemGroup>
</Project>