-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
39 lines (36 loc) · 1.93 KB
/
Directory.Build.props
File metadata and controls
39 lines (36 loc) · 1.93 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
<Project>
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>13</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<!-- Enable dotnet test to use MTP natively instead of VSTest compat mode. -->
<PropertyGroup>
<TestingPlatformDotnetTestSupport>true</TestingPlatformDotnetTestSupport>
</PropertyGroup>
<!-- xUnit v3 analyzer suppression.
xUnit1051: use TestContext.Current.CancellationToken — style rule, not correctness.
Suppressed globally during Milestone 11 migration; address incrementally in M12+.
Applied unconditionally because IsTestProject is not available during .props evaluation. -->
<PropertyGroup>
<NoWarn>$(NoWarn);xUnit1051;MTP0001</NoWarn>
</PropertyGroup>
<PropertyGroup>
<Authors>Branimir Bajt</Authors>
<Product>CodeMap</Product>
<Description>Roslyn-powered semantic code index for AI agents. 28 MCP tools that let AI agents navigate C# codebases by symbol, call graph, and architectural fact instead of brute-reading source files. Average 90%+ token savings.</Description>
<Copyright>Copyright © 2026 CodeMap Branimir Bajt</Copyright>
<RepositoryType>git</RepositoryType>
<!-- GitHub repository -->
<RepositoryUrl>https://github.com/bbajt/csharp-code-map</RepositoryUrl>
<PackageProjectUrl>https://github.com/bbajt/csharp-code-map</PackageProjectUrl>
<PackageLicenseFile>LICENSE.MD</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>mcp;roslyn;ai-agent;csharp;semantic-search;code-navigation;code-analysis;llm;claude;dotnet</PackageTags>
<!-- PackageIcon: add icon.png (128x128 PNG) to the repo root and uncomment this line -->
<!-- <PackageIcon>icon.png</PackageIcon> -->
</PropertyGroup>
</Project>