-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSharpy.Compiler.csproj
More file actions
39 lines (33 loc) · 1.64 KB
/
Sharpy.Compiler.csproj
File metadata and controls
39 lines (33 loc) · 1.64 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 Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<!-- Allow test assembly to access internal members -->
<InternalsVisibleTo Include="Sharpy.Compiler.Tests" />
<!-- Allow CLI to access internal types (e.g., OverloadIndexCache's internal dependencies) -->
<InternalsVisibleTo Include="sharpyc" />
<!-- Allow benchmarks to access internal types for isolation benchmarks -->
<InternalsVisibleTo Include="Sharpy.Compiler.Benchmarks" />
<!-- Allow LSP to access internal BuiltinRegistry for property resolution in hover -->
<InternalsVisibleTo Include="Sharpy.Lsp" />
<!-- Allow LSP tests to construct FunctionSymbol with internal-set ReturnType -->
<InternalsVisibleTo Include="Sharpy.Lsp.Tests" />
<!-- Allow Playground to access AstDumper for AST tab -->
<InternalsVisibleTo Include="Sharpy.Playground" />
</ItemGroup>
<ItemGroup>
<!-- Reference to Sharpy runtime for metadata access -->
<ProjectReference Include="../Sharpy.Core/Sharpy.Core.csproj">
<Aliases>SharpyRT</Aliases>
</ProjectReference>
<!-- Roslyn for code generation and compilation -->
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="5.3.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="5.3.0" />
<!-- File system globbing for .spyproj file patterns -->
<PackageReference Include="Microsoft.Extensions.FileSystemGlobbing" Version="10.0.6" />
</ItemGroup>
</Project>