-
Notifications
You must be signed in to change notification settings - Fork 168
Expand file tree
/
Copy pathFsAutoComplete.Core.fsproj
More file actions
70 lines (70 loc) · 2.92 KB
/
Copy pathFsAutoComplete.Core.fsproj
File metadata and controls
70 lines (70 loc) · 2.92 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- All supported runtimes; everything builds with the .NET 10 SDK. -->
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
<IsPackable>false</IsPackable>
<NoWarn>$(NoWarn);FS0057</NoWarn>
<!-- Allows using experimental FCS APIs -->
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\FsAutoComplete.Logging\FsAutoComplete.Logging.fsproj" />
<TrimmerRootAssembly Include="FsAutoComplete.Core" />
</ItemGroup>
<ItemGroup>
<Compile Include="SemaphoreSlimLocks.fsi" />
<Compile Include="SemaphoreSlimLocks.fs" />
<Compile Include="AdaptiveExtensions.fsi" />
<Compile Include="AdaptiveExtensions.fs" />
<Compile Include="Consts.fs" />
<Compile Include="Debug.fs" />
<Compile Include="Utils.fsi" />
<Compile Include="Utils.fs" />
<Compile Include="VSTestWrapper.fs" />
<Compile Include="TestServer.fs" />
<Compile Include="TestAdapter.fs" />
<Compile Include="DotnetNewTemplate.fs" />
<Compile Include="DotnetCli.fs" />
<Compile Include="FsprojEdit.fs" />
<Compile Include="ProcessWatcher.fs" />
<Compile Include="UntypedAstUtils.fsi" />
<Compile Include="UntypedAstUtils.fs" />
<Compile Include="TypedAstUtils.fsi" />
<Compile Include="TypedAstUtils.fs" />
<Compile Include="TypedAstPatterns.fsi" />
<Compile Include="TypedAstPatterns.fs" />
<Compile Include="FCSPatches.fsi" />
<Compile Include="FCSPatches.fs" />
<Compile Include="Lexer.fsi" />
<Compile Include="Lexer.fs" />
<Compile Include="SignatureFormatter.fsi" />
<Compile Include="SignatureFormatter.fs" />
<Compile Include="TipFormatter.fsi" />
<Compile Include="TipFormatter.fs" />
<Compile Include="DocumentationFormatter.fs" />
<Compile Include="FileSystem.fsi" />
<Compile Include="FileSystem.fs" />
<Compile Include="KeywordList.fs" />
<Compile Include="Decompiler.fs" />
<Compile Include="Sourcelink.fs" />
<Compile Include="InteractiveDirectives.fs" />
<Compile Include="ParseAndCheckResults.fsi" />
<Compile Include="ParseAndCheckResults.fs" />
<Compile Include="CompilerServiceInterface.fsi" />
<Compile Include="CompilerServiceInterface.fs" />
<Compile Include="State.fsi" />
<Compile Include="State.fs" />
<Compile Include="CodeGeneration.fsi" />
<Compile Include="CodeGeneration.fs" />
<Compile Include="UnionPatternMatchCaseGenerator.fsi" />
<Compile Include="UnionPatternMatchCaseGenerator.fs" />
<Compile Include="RecordStubGenerator.fs" />
<Compile Include="AbstractClassStubGenerator.fs" />
<Compile Include="Fsdn.fs" />
<!-- <Compile Include="Lint.fs" /> -->
<Compile Include="SignatureHelp.fs" />
<Compile Include="InlayHints.fs" />
<Compile Include="SymbolLocation.fs" />
<Compile Include="Commands.fs" />
</ItemGroup>
<Import Project="..\..\.paket\Paket.Restore.targets" />
</Project>