-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGithubMCPSharp.csproj
More file actions
44 lines (38 loc) · 1.51 KB
/
GithubMCPSharp.csproj
File metadata and controls
44 lines (38 loc) · 1.51 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>GithubMCPSharp</RootNamespace>
<AssemblyName>GithubMCPSharp</AssemblyName>
<ApplicationIcon>wmcp.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" />
<PackageReference Include="ModelContextProtocol.AspNetCore" />
<PackageReference Include="Octokit" />
<PackageReference Include="Serilog.AspNetCore" />
<PackageReference Include="Serilog.Settings.Configuration" />
<PackageReference Include="Serilog.Sinks.Console" />
<PackageReference Include="Serilog.Sinks.File" />
<PackageReference Include="Serilog.Enrichers.Environment" />
<PackageReference Include="Serilog.Enrichers.Process" />
<PackageReference Include="Serilog.Enrichers.Thread" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="wmcp.ico" LogicalName="MCPSharp.wmcp.ico" />
</ItemGroup>
<ItemGroup>
<None Update="GithubMCPSharp.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="GithubMCPSharp.*.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<DependentUpon>GithubMCPSharp.json</DependentUpon>
</None>
</ItemGroup>
</Project>