-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTxTextControl.McpServer.csproj
More file actions
42 lines (39 loc) · 1.71 KB
/
Copy pathTxTextControl.McpServer.csproj
File metadata and controls
42 lines (39 loc) · 1.71 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<AssemblyName>TxTextControl.McpServer</AssemblyName>
<RootNamespace>TxTextControl.McpServer</RootNamespace>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<IsPackable>false</IsPackable>
<PackageId>TXTextControl.McpServer.Host</PackageId>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<UserSecretsId>69b88ad5-c2d3-454c-b42d-449fea30afa4</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="src/TXTextControl.McpServer/TXTextControl.McpServer.csproj" />
</ItemGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>TxTextControl.McpServer.Tests</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
<ItemGroup>
<Compile Remove="Models\**;Options\**;Services\**;Tools\**;src\**;build\**;samples\**" />
<Content Remove="src\**;build\**;artifacts\**;samples\**" />
<None Remove="src\**;build\**;artifacts\**;samples\**" />
<EmbeddedResource Remove="src\**;build\**;artifacts\**;samples\**" />
<Compile Remove="Tests\**\*.cs" />
<Compile Remove="Benchmarks\**\*.cs" />
<Content Remove="Models\Requests\Converters\**" />
<Content Remove="Tests\**\*" />
<Content Remove="Benchmarks\**\*" />
<None Remove="Models\Requests\Converters\**" />
<None Remove="Tests\**\*" />
<None Remove="Benchmarks\**\*" />
<Compile Remove="**\bin\**\*;**\obj\**\*" />
<Content Remove="**\bin\**\*;**\obj\**\*" />
<EmbeddedResource Remove="Models\Requests\Converters\**" />
<None Remove="**\bin\**\*;**\obj\**\*" />
</ItemGroup>
</Project>