-
Notifications
You must be signed in to change notification settings - Fork 349
Expand file tree
/
Copy pathAzure.DataApiBuilder.Core.csproj
More file actions
89 lines (80 loc) · 4.54 KB
/
Copy pathAzure.DataApiBuilder.Core.csproj
File metadata and controls
89 lines (80 loc) · 4.54 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackageOutputPath>./nupkg</PackageOutputPath>
<PackageId>Microsoft.DataApiBuilder.Core</PackageId>
<Title>Microsoft.DataApiBuilder.Core</Title>
<Authors>Microsoft</Authors>
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://go.microsoft.com/fwlink/?linkid=2224253</PackageProjectUrl>
<PackageTags>microsoft rest graphql mcp api azure sql mssql mysql pgsql postgresql azure-sql sqlserver nosql cosmosdb dataApiBuilder</PackageTags>
<AssemblyName>Microsoft.DataApiBuilder.Core</AssemblyName>
<Description>Data API builder Core library for Azure Databases provides modern REST, GraphQL endpoints and MCP tools to your Azure Databases.</Description>
<PackageIcon>nuget_icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<NoWarn>NU1603</NoWarn>
<!-- Run custom target during pack to add dependency files into the package. -->
<TargetsForTfmSpecificContentInPackage>$(TargetsForTfmSpecificContentInPackage);IncludeInternalDependenciesInPackage</TargetsForTfmSpecificContentInPackage>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.Identity" />
<PackageReference Include="DotNetEnv" />
<PackageReference Include="HotChocolate" />
<PackageReference Include="HotChocolate.AspNetCore" />
<PackageReference Include="HotChocolate.AspNetCore.Authorization" />
<PackageReference Include="HotChocolate.Types.NodaTime" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" />
<PackageReference Include="Microsoft.IdentityModel.Validators" />
<PackageReference Include="Microsoft.Azure.Cosmos" />
<PackageReference Include="Microsoft.Data.SqlClient" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" />
<PackageReference Include="Microsoft.OData.Core" />
<PackageReference Include="Microsoft.OData.Edm" />
<PackageReference Include="Microsoft.OpenApi" />
<PackageReference Include="MSTest.TestFramework" />
<PackageReference Include="MySqlConnector" />
<PackageReference Include="Newtonsoft.Json" />
<PackageReference Include="Newtonsoft.Json.Schema" />
<PackageReference Include="Npgsql" />
<PackageReference Include="Polly" />
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" />
<PackageReference Include="System.IO.Abstractions" />
<PackageReference Include="ZiggyCreatures.FusionCache" />
</ItemGroup>
<PropertyGroup Condition="'$(TF_BUILD)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Auth\Azure.DataApiBuilder.Auth.csproj">
<PrivateAssets Condition="'$(PrivatizeAssets)' == 'true'">all</PrivateAssets>
</ProjectReference>
<ProjectReference Include="..\Config\Azure.DataApiBuilder.Config.csproj">
<PrivateAssets Condition="'$(PrivatizeAssets)' == 'true'">all</PrivateAssets>
</ProjectReference>
<ProjectReference Include="..\Service.GraphQLBuilder\Azure.DataApiBuilder.Service.GraphQLBuilder.csproj">
<PrivateAssets Condition="'$(PrivatizeAssets)' == 'true'">all</PrivateAssets>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="..\..\nuget\nuget_core\README.md" Pack="true" PackagePath="\" />
<None Include="..\..\nuget\nuget_icon.png" Pack="true" PackagePath="\" />
<None Include="..\..\LICENSE.txt" Pack="true" PackagePath="\" />
<None Include="..\..\nuget_core\NOTICE.txt" Pack="true" PackagePath="\" Condition="Exists('..\..\nuget_core\NOTICE.txt')" />
</ItemGroup>
<Target Name="IncludeInternalDependenciesInPackage">
<ItemGroup>
<_InternalAssembly Include="$(OutputPath)Azure.DataApiBuilder.Auth.dll" />
<_InternalAssembly Include="$(OutputPath)Azure.DataApiBuilder.Config.dll" />
<_InternalAssembly Include="$(OutputPath)Azure.DataApiBuilder.Service.GraphQLBuilder.dll" />
<_InternalAssembly Include="$(OutputPath)Azure.DataApiBuilder.Product.dll" />
<TfmSpecificPackageFile Include="@(_InternalAssembly)" PackagePath="lib/$(TargetFramework)" />
</ItemGroup>
</Target>
</Project>