-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFullStackSample.csproj
More file actions
34 lines (27 loc) · 1.15 KB
/
Copy pathFullStackSample.csproj
File metadata and controls
34 lines (27 loc) · 1.15 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
<!-- The demo app is hosted in-process, so this project needs the web framework. -->
<NoWarn>$(NoWarn);CS1591</NoWarn>
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
<PackageReference Include="MSTest.TestAdapter" Version="3.10.3" />
<PackageReference Include="MSTest.TestFramework" Version="3.10.3" />
<PackageReference Include="Reqnroll.MsTest" Version="3.3.4" />
<!-- The two things this sample exists to show working together. -->
<PackageReference Include="Microsoft.Playwright" Version="1.49.0" />
<PackageReference Include="RestSharp" Version="112.1.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="../../src/SpecReport.Capture/SpecReport.Capture.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="reqnroll.json" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
</Project>