-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathFSharp.Tests.fsproj
More file actions
81 lines (81 loc) · 4.58 KB
/
FSharp.Tests.fsproj
File metadata and controls
81 lines (81 loc) · 4.58 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
71
72
73
74
75
76
77
78
79
80
81
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<InternalBuild Condition="'$(SolutionFileName)' != 'ReSharper.FSharp.sln'">True</InternalBuild>
<InternalBuild Condition="$(InternalBuild) == ''">False</InternalBuild>
</PropertyGroup>
<Import Project="Sdk.props" Sdk="JetBrains.NET.Sdk" Version="0.0.4" Condition="$(InternalBuild)" />
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" Condition="!$(InternalBuild)" />
<PropertyGroup>
<AssemblyName>JetBrains.ReSharper.Plugins.FSharp.Tests</AssemblyName>
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
<JetTestProject>true</JetTestProject>
<RootNamespace>JetBrains.ReSharper.Plugins.FSharp.Tests</RootNamespace>
<TargetFramework>net472</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="AssemblyAttributes.g.fs" />
<Compile Include="ZoneMarker.fs" />
<Compile Include="ReadLockCookieUtil.fs" />
<Compile Include="Service\DelegatingFileSystemShimTest.fs" />
<Compile Include="Service\NameResolutionTest.fs" />
<Compile Include="Service\StructureTest.fs" />
<Compile Include="Service\IsFSharpAssemblyTest.fs" />
<Compile Include="Service\FSharpNamingTest.fs" />
<Compile Include="Service\FSharpMetadataReaderTest.fs" />
<Compile Include="Service\FSharpCodeFormatterTest.fs" />
<Compile Include="Service\FSharpAssemblyAutoOpenTest.fs" />
<Compile Include="Service\ArgumentsOwnerTest.fs" />
<Compile Include="Service\FantomasEditorConfigTests.fs" />
<Compile Include="Cache\CSharpResolveTestBase.fs" />
<Compile Include="Cache\CSharpResolveTest.fs" />
<Compile Include="Cache\FSharpSymbolCacheTest.fs" />
<Compile Include="Cache\FSharpAnnotatedEntitiesCacheTests.fs" />
<Compile Include="Parsing\FSharpLexerTest.fs" />
<Compile Include="Parsing\FSharpParserTest.fs" />
<Compile Include="Debugger\ExpressionEvaluationInfoTest.fs" />
<Compile Include="Actions\CommentActionTests.fs" />
<Compile Include="Actions\TypingAssistTest.fs" />
<Compile Include="Actions\FSharpExtendSelectionTest.fs" />
<Compile Include="Generate\FSharpGenerateOverridesTest.fs" />
<Compile Include="Refactorings\RenameTest.fs" />
<Compile Include="Refactorings\IntroduceVarTest.fs" />
<Compile Include="Refactorings\InlineVarTest.fs" />
<Compile Include="TypeProviders\PrimitiveTypesBoxerTest.fs" />
<Compile Include="AI\FSharpFileSummarizerTest.fs" />
<Compile Include="FSharpTodoTest.fs" />
<Compile Include="FSharpOccurenceKindTest.fs" />
<Compile Include="NavigationTests.fs" />
<Compile Include="FSharpCompletionTest.fs" />
<Compile Include="FSharpParameterInfoTest.fs" />
<Compile Include="FSharpIconProviderTest.fs" />
<Compile Include="RearrangeCodeTest.fs" />
</ItemGroup>
<ItemGroup Label="ProjectReference">
<ProjectReference Include="..\..\..\src\FSharp\FSharp.Common\FSharp.Common.fsproj" />
<ProjectReference Include="..\..\..\src\FSharp\FSharp.ProjectModelBase\FSharp.ProjectModelBase.csproj" />
<ProjectReference Include="..\..\..\src\FSharp\FSharp.Psi.Features\FSharp.Psi.Features.fsproj" />
<ProjectReference Include="..\..\..\src\FSharp\FSharp.Psi\FSharp.Psi.csproj" />
<ProjectReference Include="..\FSharp.Tests.Common\FSharp.Tests.Common.fsproj" />
</ItemGroup>
<ItemGroup Label="PackageReference">
<PackageReference Include="FSharp.Core" />
<PackageReference Include="JetBrains.FSharp.Compiler.Service" />
<PackageReference Include="JetBrains.Lifetimes" />
<PackageReference Include="JetBrains.NuGet.Packaging" />
<PackageReference Include="Microsoft.NET.Test.Sdk" />
<PackageReference Include="NUnit" />
<PackageReference Include="NUnit.Console" />
<PackageReference Include="NUnit3TestAdapter" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<Import Project="$(PlatformSdkSubplatform)" Condition="Exists('$(PlatformSdkSubplatform)')" />
<Import Project="$(PsiFeaturesTestSubplatform)" Condition="Exists('$(PsiFeaturesTestSubplatform)')" />
<Import Project="$(RiderBackendSubplatform)" Condition="Exists('$(RiderBackendSubplatform)')" />
<Import Project="$(SolutionDir)/RemoveNUnitAdapterFromJetContent.targets" Condition="!$(InternalBuild)" />
<Import Project="ManagedProject.Generated.Targets" Condition="$(InternalBuild)" />
<Import Project="Sdk.targets" Sdk="JetBrains.NET.Sdk" Version="0.0.4" Condition="$(InternalBuild)" />
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" Condition="!$(InternalBuild)" />
</Project>