-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathOptionAnalyzer.Test.fsproj
More file actions
36 lines (30 loc) · 1.31 KB
/
OptionAnalyzer.Test.fsproj
File metadata and controls
36 lines (30 loc) · 1.31 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<RollForward>LatestMajor</RollForward>
<IsPackable>false</IsPackable>
<GenerateProgramFile>false</GenerateProgramFile>
<IsTestProject>true</IsTestProject>
<OutputType>Library</OutputType>
</PropertyGroup>
<ItemGroup>
<Compile Include="TestHelpers.fs" />
<Compile Include="UnitTests.fs" />
<Compile Include="V1Tests.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FSharp.Core" />
<PackageReference Include="Microsoft.NET.Test.Sdk" />
<PackageReference Include="NUnit" />
<PackageReference Include="NUnit3TestAdapter" />
<PackageReference Include="FSharp.Compiler.Service"/>
<PackageReference Include="FsCheck" />
<PackageReference Include="FsCheck.NUnit" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\FSharp.Analyzers.SDK.Testing\FSharp.Analyzers.SDK.Testing.fsproj" />
<ProjectReference Include="..\..\src\FSharp.Analyzers.SDK\FSharp.Analyzers.SDK.fsproj" />
<ProjectReference Include="..\OptionAnalyzer\OptionAnalyzer.fsproj" />
<ProjectReference Include="..\OptionAnalyzer.V1\OptionAnalyzer.V1.fsproj" />
</ItemGroup>
</Project>