-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathFSharp.Common.Tests.fsproj
More file actions
45 lines (45 loc) · 2.41 KB
/
FSharp.Common.Tests.fsproj
File metadata and controls
45 lines (45 loc) · 2.41 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
<?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.Common.Tests</AssemblyName>
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
<JetTestProject>true</JetTestProject>
<RootNamespace>JetBrains.ReSharper.Plugins.FSharp.Common.Tests</RootNamespace>
<TargetFramework>net472</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="AssemblyAttributes.g.fs" />
<Compile Include="ItemsContainerTest.fs" />
<Compile Include="ZoneMarker.fs" />
<Compile Include="SciptPsiModulesTest.fs" />
</ItemGroup>
<ItemGroup Label="PackageReference">
<PackageReference Include="FSharp.Core" />
<PackageReference Include="JetBrains.FSharp.Compiler.Service" />
<PackageReference Include="JetBrains.Lifetimes" />
<PackageReference Include="Microsoft.NET.Test.Sdk" />
<PackageReference Include="Moq" />
<PackageReference Include="NUnit" />
<PackageReference Include="NUnit.Console" />
<PackageReference Include="NUnit3TestAdapter" />
</ItemGroup>
<ItemGroup Label="ProjectReference">
<ProjectReference Include="..\..\..\src\FSharp\FSharp.Common\FSharp.Common.fsproj" />
</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>