-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDynamicObject.Tests.fsproj
55 lines (49 loc) · 2.31 KB
/
DynamicObject.Tests.fsproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<IsPackable>false</IsPackable>
<GenerateProgramFile>false</GenerateProgramFile>
</PropertyGroup>
<ItemGroup>
<Compile Include="TestUtils.fs" />
<Compile Include="DynamicObjs\RemoveProperty.fs" />
<Compile Include="DynamicObjs\SetProperty.fs" />
<Compile Include="DynamicObjs\GetHashcode.fs" />
<Compile Include="DynamicObjs\Equals.fs" />
<Compile Include="DynamicObjs\GetPropertyValue.fs" />
<Compile Include="DynamicObjs\TryGetPropertyValue.fs" />
<Compile Include="DynamicObjs\TryGetTypedPropertyValue.fs" />
<Compile Include="DynamicObjs\TryGetStaticPropertyHelper.fs" />
<Compile Include="DynamicObjs\TryGetDynamicPropertyHelper.fs" />
<Compile Include="DynamicObjs\TryGetPropertyHelper.fs" />
<Compile Include="DynamicObjs\GetPropertyHelpers.fs" />
<Compile Include="DynamicObjs\GetProperties.fs" />
<Compile Include="DynamicObjs\ShallowCopyDynamicPropertiesTo.fs" />
<Compile Include="DynamicObjs\ShallowCopyDynamicProperties.fs" />
<Compile Include="DynamicObjs\DeepCopyDynamicProperties.fs" />
<Compile Include="DynamicObjs\Main.fs" />
<Compile Include="ReflectionUtils.fs" />
<Compile Include="Inheritance.fs" />
<Compile Include="Interface.fs" />
<Compile Include="DynObj.fs" />
<Compile Include="Serialization.fs" />
<Compile Include="Main.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Fable.Pyxpecto" Version="1.2.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="3.0.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<ProjectReference Include="..\..\src\DynamicObj\DynamicObj.fsproj" />
</ItemGroup>
</Project>