-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathEssentialCSharp.Web.Tests.csproj
More file actions
37 lines (29 loc) · 1.06 KB
/
EssentialCSharp.Web.Tests.csproj
File metadata and controls
37 lines (29 loc) · 1.06 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<IsPackable>false</IsPackable>
<IsPublishable>false</IsPublishable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" />
<PackageReference Include="Moq.AutoMock" />
<PackageReference Include="TUnit" />
<PackageReference Include="Newtonsoft.Json" />
</ItemGroup>
<ItemGroup>
<Using Include="EssentialCSharp.Common" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\EssentialCSharp.Web\EssentialCSharp.Web.csproj" />
</ItemGroup>
<ItemGroup>
<!-- Exclude test data files from compilation -->
<Compile Remove="TestData/**" />
<EmbeddedResource Remove="TestData/**" />
<!-- Explicitly include all test data files as content to copy to output -->
<Content Include="TestData/**">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>