-
Notifications
You must be signed in to change notification settings - Fork 351
Expand file tree
/
Copy pathAzure.DataApiBuilder.Service.csproj
More file actions
124 lines (107 loc) · 5.55 KB
/
Copy pathAzure.DataApiBuilder.Service.csproj
File metadata and controls
124 lines (107 loc) · 5.55 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Configurations>Debug;Release;Docker</Configurations>
<OutputPath>$(BaseOutputPath)\engine</OutputPath>
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<!-- ASPDEPR008: WebHost is obsolete on net10. The test-only
CreateWebHostBuilder / CreateWebHostFromInMemoryUpdatableConfBuilder
helpers in Program.cs still use IWebHostBuilder because the existing
TestServer fixture takes IWebHostBuilder. Migrating to
WebApplicationBuilder/HostBuilder 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>
<PropertyGroup Condition="'$(TF_BUILD)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroup>
<InternalsVisibleTo Include="Azure.DataApiBuilder.Service.Tests" />
</ItemGroup>
<ItemGroup>
<None Remove="schema.gql" />
</ItemGroup>
<!--
Set the CopyToOutputDirectory action to Always since we only have appsettings and default config
as additional files that are both expected to be in the output directory.
-->
<PropertyGroup>
<CopyToOutputDirectoryAction>Always</CopyToOutputDirectoryAction>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Docker|AnyCPU'">
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<Content Update="appsettings*.json">
<CopyToOutputDirectory>$(CopyToOutputDirectoryAction)</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Watch Remove="dab-config.CosmosDb_NoSql.json" />
<Watch Remove="dab-config.json" />
<Watch Remove="dab-config.MsSql.json" />
<Watch Remove="dab-config.MySql.json" />
<Watch Remove="dab-config.PostgreSql.json" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.Identity" />
<PackageReference Include="Azure.Monitor.Ingestion" />
<PackageReference Include="HotChocolate" />
<PackageReference Include="HotChocolate.AspNetCore" />
<PackageReference Include="HotChocolate.AspNetCore.Authorization" />
<PackageReference Include="HotChocolate.Diagnostics" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" />
<PackageReference Include="Microsoft.ApplicationInsights" />
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" />
<PackageReference Include="Microsoft.Extensions.Logging.ApplicationInsights" />
<PackageReference Include="Microsoft.Azure.Cosmos" />
<PackageReference Include="Microsoft.Azure.StackExchangeRedis" />
<PackageReference Include="Microsoft.Data.SqlClient" />
<PackageReference Include="Microsoft.OData.Edm" />
<PackageReference Include="Microsoft.OData.Core" />
<PackageReference Include="Microsoft.OpenApi" />
<PackageReference Include="MySqlConnector" />
<PackageReference Include="Newtonsoft.Json" />
<PackageReference Include="Npgsql" />
<PackageReference Include="Polly" />
<PackageReference Include="DotNetEnv" />
<PackageReference Include="Serilog.Extensions.Logging" />
<PackageReference Include="Serilog.Sinks.File" />
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" />
<PackageReference Include="System.CommandLine" />
<PackageReference Include="System.IO.Abstractions" />
<PackageReference Include="ZiggyCreatures.FusionCache" />
<PackageReference Include="ZiggyCreatures.FusionCache.Serialization.SystemTextJson" />
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" />
<PackageReference Include="ZiggyCreatures.FusionCache.Backplane.StackExchangeRedis" />
<PackageReference Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" />
<PackageReference Include="OpenTelemetry.Extensions.Hosting" />
<PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" />
<PackageReference Include="OpenTelemetry.Instrumentation.Http" />
<PackageReference Include="OpenTelemetry.Instrumentation.Runtime" />
</ItemGroup>
<ItemGroup>
<ProjectCapability Include="CSharp;Managed;ClassDesigner" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\nuget\README.md" CopyToOutputDirectory="PreserveNewest" />
<None Include="..\..\LICENSE.txt" CopyToOutputDirectory="PreserveNewest" />
<None Include="..\..\NOTICE.txt" Condition="Exists('..\..\NOTICE.txt')" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Azure.DataApiBuilder.Mcp\Azure.DataApiBuilder.Mcp.csproj" />
<ProjectReference Include="..\Core\Azure.DataApiBuilder.Core.csproj" />
</ItemGroup>
<ItemGroup>
<None Remove="dab.draft.schema.json" />
</ItemGroup>
<ItemGroup>
<Content Include="..\..\schemas\dab.draft.schema.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>