forked from ShadowNineX/ce-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCeMCP.csproj
More file actions
54 lines (47 loc) · 2.03 KB
/
Copy pathCeMCP.csproj
File metadata and controls
54 lines (47 loc) · 2.03 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0-windows</TargetFramework>
<OutputType>Library</OutputType>
<AssemblyName>ce-mcp</AssemblyName>
<RootNamespace>CEMCP</RootNamespace>
<LangVersion>latest</LangVersion>
<Version>1.0.4</Version>
<AssemblyVersion>$(Version)</AssemblyVersion>
<FileVersion>$(Version)</FileVersion>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
<DebugType>embedded</DebugType>
<!-- Feed NuGet dependencies to Costura so they are embedded into ce-mcp.dll. -->
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<GenerateRuntimeConfigurationFiles>false</GenerateRuntimeConfigurationFiles>
<GenerateDependencyFile>false</GenerateDependencyFile>
<!-- WPF -->
<UseWPF>true</UseWPF>
<PlatformTarget>x64</PlatformTarget>
<Platforms>x64</Platforms>
<SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>
<!-- Allow roll-forward to find available ASP.NET Core runtime -->
<RollForward>Major</RollForward>
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup>
<Compile Remove="tests\**\*.cs" />
<Compile Remove="CESDK\tests\**\*.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="skills\ce-mcp\**\*.*"
Exclude="skills\ce-mcp\references\local-cheat-engine.md;skills\ce-mcp\references\.gitignore">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<TargetPath>skills\ce-mcp\%(RecursiveDir)%(Filename)%(Extension)</TargetPath>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Costura.Fody" Version="6.2.0" PrivateAssets="all" />
<PackageReference Include="Fody" Version="6.9.3" PrivateAssets="all" />
<PackageReference Include="ModelContextProtocol.AspNetCore" Version="1.4.0" />
</ItemGroup>
</Project>