-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathUnitTestEx.MSTest.Test.csproj
More file actions
46 lines (39 loc) · 1.89 KB
/
UnitTestEx.MSTest.Test.csproj
File metadata and controls
46 lines (39 loc) · 1.89 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
45
46
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
<IsPackable>false</IsPackable>
<PreserveCompilationContext>true</PreserveCompilationContext>
<IsTestProject>true</IsTestProject>
</PropertyGroup>
<ItemGroup>
<None Remove="appsettings.unittest.json" />
<None Remove="Resources\FunctionTest-ValidJsonResource.json" />
<None Remove="Resources\MockHttpClientTest-UriAndBody_WithJsonResponse3.json" />
</ItemGroup>
<ItemGroup>
<Content Include="appsettings.unittest.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\MockHttpClientTest-UriAndBody_WithJsonResponse3.json" />
<EmbeddedResource Include="Resources\FunctionTest-ValidJsonResource.json" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="MSTest.TestAdapter" Version="3.5.0" />
<PackageReference Include="MSTest.TestFramework" Version="3.5.0" />
<PackageReference Include="coverlet.collector" Version="6.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\UnitTestEx.Azure.Functions\UnitTestEx.Azure.Functions.csproj" />
<ProjectReference Include="..\..\src\UnitTestEx.Azure.ServiceBus\UnitTestEx.Azure.ServiceBus.csproj" />
<ProjectReference Include="..\..\src\UnitTestEx.MSTest\UnitTestEx.MSTest.csproj" />
<ProjectReference Include="..\..\src\UnitTestEx\UnitTestEx.csproj" />
<ProjectReference Include="..\UnitTestEx.Api\UnitTestEx.Api.csproj" />
<ProjectReference Include="..\UnitTestEx.Function\UnitTestEx.Function.csproj" />
</ItemGroup>
</Project>