-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathObjectSemantics.NET.Tests.csproj
More file actions
44 lines (35 loc) · 1.36 KB
/
ObjectSemantics.NET.Tests.csproj
File metadata and controls
44 lines (35 loc) · 1.36 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<IsPackable>false</IsPackable>
<AssemblyVersion>3.0.1.1</AssemblyVersion>
<FileVersion>3.0.1.1</FileVersion>
</PropertyGroup>
<ItemGroup>
<None Remove="MoqFiles\PaymentTemplate.result.xml" />
<None Remove="MoqFiles\PaymentTemplate.xml" />
</ItemGroup>
<ItemGroup>
<Content Include="MoqFiles\PaymentTemplate.result.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="MoqFiles\PaymentTemplate.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
<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.1.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ObjectSemantics.NET\ObjectSemantics.NET.csproj" />
</ItemGroup>
</Project>