-
-
Notifications
You must be signed in to change notification settings - Fork 121
Expand file tree
/
Copy pathTestProject.fsproj
More file actions
27 lines (23 loc) · 841 Bytes
/
TestProject.fsproj
File metadata and controls
27 lines (23 loc) · 841 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.10" />
<PackageReference Include="TUnit" Version="0.87.8" />
<PackageReference Include="TUnit.Assertions.FSharp" Version="0.87.8" />
</ItemGroup>
<ItemGroup>
<Compile Include="Data\DataClass.fs" />
<Compile Include="Data\DataGenerator.fs" />
<Compile Include="Data\DependencyInjectionClassConstructor.fs" />
<Compile Include="GlobalSetup.fs" />
<Compile Include="Tests.fs" />
<Compile Include="Tests2.fs" />
<Compile Include="Tests3.fs" />
</ItemGroup>
</Project>