-
Notifications
You must be signed in to change notification settings - Fork 351
Expand file tree
/
Copy pathAzure.DataApiBuilder.Service.Tests.csproj
More file actions
129 lines (119 loc) · 5.57 KB
/
Copy pathAzure.DataApiBuilder.Service.Tests.csproj
File metadata and controls
129 lines (119 loc) · 5.57 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net10.0</TargetFrameworks>
<IsPackable>false</IsPackable>
<Nullable>disable</Nullable>
<OutputPath>$(BaseOutputPath)\tests</OutputPath>
<!-- ASPDEPR008: IWebHostBuilder/IWebHost are obsolete on net10. The
ConfigurationTests fixtures still consume them via Program.cs
test-only helpers. Migrating to IHost is behavior-affecting
refactor work tracked separately; suppressed here so the
.NET 10 + SqlClient 6.x prerequisite PR stays behavior-preserving.
TODO(prereq-PR Usr/sogh/upgrade-net10-sqlclient6): file a follow-up issue. -->
<NoWarn>NU1603;ASPDEPR008</NoWarn>
</PropertyGroup>
<ItemGroup>
<None Remove="CosmosTests\TestData\CosmosData\EmulatorData.json" />
<None Remove="CosmosTests\TestData\CosmosData\MultiItems\1.json" />
<None Remove="CosmosTests\TestData\CosmosData\MultiItems\2.json" />
<None Remove="CosmosTests\TestData\CosmosData\MultiItems\3.json" />
<None Remove="CosmosTests\TestData\CosmosData\MultiItems\4.json" />
<None Remove="CosmosTests\TestData\CosmosData\MultiItems\5.json" />
<None Remove="CosmosTests\TestData\GeneratedGqlSchema\MultiItemsWithConfig.gql" />
<None Remove="dab-config.CosmosDb_NoSql.json" />
<None Remove="dab-config.json" />
<None Remove="dab-config.MsSql.json" />
<None Remove="dab-config.MySql.json" />
<None Remove="dab-config.PostgreSql.json" />
<None Remove="DatabaseSchema-DwSql.sql" />
<None Remove="Multidab-config.CosmosDb_NoSql.json" />
<None Remove="Multidab-config.MsSql.json" />
<None Remove="Multidab-config.MySql.json" />
<None Remove="Multidab-config.PostgreSql.json" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" />
<PackageReference Include="Microsoft.AspNetCore.TestHost" />
<PackageReference Include="Microsoft.NET.Test.Sdk" />
<PackageReference Include="Microsoft.OpenApi" />
<PackageReference Include="Microsoft.OpenApi.Readers" />
<PackageReference Include="Moq" />
<PackageReference Include="MSTest.TestAdapter" />
<PackageReference Include="MSTest.TestFramework" />
<PackageReference Include="coverlet.collector">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="HotChocolate" />
<PackageReference Include="Newtonsoft.Json" />
<PackageReference Include="System.IO.Abstractions.TestingHelpers" />
<PackageReference Include="Verify.MSTest" />
<PackageReference Include="Verify.DiffPlex" />
</ItemGroup>
<ItemGroup>
<Content Include="CosmosTests\TestData\**">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="**/*.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="DatabaseSchema-DwSql.sql">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="schema.gql">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="dab-config.CosmosDb_NoSql.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
<Content Include="dab-config.MsSql.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
<Content Include="dab-config.MySql.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
<Content Include="dab-config.PostgreSql.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
<Content Include="DatabaseSchema-MsSql.sql">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="DatabaseSchema-PostgreSql.sql">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="DatabaseSchema-MySql.sql">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Auth\Azure.DataApiBuilder.Auth.csproj" />
<ProjectReference Include="..\Config\Azure.DataApiBuilder.Config.csproj" />
<ProjectReference Include="..\Core\Azure.DataApiBuilder.Core.csproj" />
<ProjectReference Include="..\Service\Azure.DataApiBuilder.Service.csproj" />
<ProjectReference Include="..\Azure.DataApiBuilder.Mcp\Azure.DataApiBuilder.Mcp.csproj" />
</ItemGroup>
<ItemGroup>
<Content Update="dab-config.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<None Update="MultiSourceTestSchema.gql">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Folder Include="SqlTests\Helpers\" />
</ItemGroup>
<ProjectExtensions><VisualStudio><UserProperties /></VisualStudio></ProjectExtensions>
</Project>