Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -434,6 +434,10 @@
"description": "Add a connector for MySQL databases using ADO.NET.",
"defaultValue": "false"
},
"HasConnectorMySqlWithoutEfCore": {
"type": "computed",
"value": "ConnectorMySqlOption && (!ConnectorMySqlEfCoreOption)"
},
"HasConnectorMySqlInSteeltoeV3": {
"type": "computed",
"value": "ConnectorMySqlOption && IsSteeltoeV3"
Expand Down Expand Up @@ -472,6 +476,10 @@
"description": "Add a connector for PostgreSQL databases using ADO.NET.",
"defaultValue": "false"
},
"HasConnectorPostgreSqlWithoutEfCore": {
"type": "computed",
"value": "ConnectorPostgreSqlOption && (!ConnectorPostgreSqlEfCoreOption)"
},
"HasConnectorPostgreSqlInSteeltoeV3": {
"type": "computed",
"value": "ConnectorPostgreSqlOption && IsSteeltoeV3"
Expand Down Expand Up @@ -500,6 +508,10 @@
"description": "Add a connector for RabbitMQ message brokers.",
"defaultValue": "false"
},
"HasConnectorRabbitMqWithoutMessaging": {
"type": "computed",
"value": "ConnectorRabbitMqOption && (!HasAnyMessagingRabbitMqInSteeltoeV3)"
},
"HasConnectorRabbitMqInSteeltoeV3": {
"type": "computed",
"value": "ConnectorRabbitMqOption && IsSteeltoeV3"
Expand Down Expand Up @@ -528,6 +540,10 @@
"description": "Add a connector for Microsoft SQL Server databases using ADO.NET.",
"defaultValue": "false"
},
"HasConnectorSqlServerWithoutEfCore": {
"type": "computed",
"value": "ConnectorSqlServerOption && (!ConnectorSqlServerEfCoreOption)"
},
"HasConnectorSqlServerInSteeltoeV3": {
"type": "computed",
"value": "ConnectorSqlServerOption && IsSteeltoeV3"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>$(FrameworkOption)</TargetFramework>
Expand Down Expand Up @@ -28,17 +28,17 @@
<ItemGroup>
<PackageReference Include="Microsoft.Azure.Cosmos" Condition="'$(ConnectorCosmosDbOption)' == 'True'" Version="3.47.*" />
<PackageReference Include="Microsoft.Azure.SpringCloud.Client" Condition="'$(HasHostingAzureSpringCloudInSteeltoeV3)' == 'True'" Version="2.0.0-preview.3" />
<PackageReference Include="Microsoft.Data.SqlClient" Condition="'$(ConnectorSqlServerOption)' == 'True'" Version="$(SqlClientVersion)" />
<PackageReference Include="Microsoft.Data.SqlClient" Condition="'$(HasConnectorSqlServerWithoutEfCore)' == 'True'" Version="$(SqlClientVersion)" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Condition="'$(HasAnyEfCoreConnector)' == 'True'" Version="$(AspNetCoreVersion)" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Condition="'$(ConnectorSqlServerEfCoreOption)' == 'True'" Version="$(AspNetCoreVersion)" />
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Condition="'$(ConnectorRedisOption)' == 'True'" Version="$(AspNetCoreVersion)" />
<PackageReference Include="MongoDB.Driver" Condition="'$(ConnectorMongoDbOption)' == 'True'" Version="3.2.*" />
<PackageReference Include="MySql.Data" Condition="'$(ConnectorMySqlOption)' == 'True'" Version="$(MySqlVersion)" />
<PackageReference Include="MySql.Data" Condition="'$(HasConnectorMySqlWithoutEfCore)' == 'True'" Version="$(MySqlVersion)" />
<PackageReference Include="MySql.EntityFrameworkCore" Condition="'$(ConnectorMySqlEfCoreOption)' == 'True'" Version="$(AspNetCoreVersion)" />
<PackageReference Include="Newtonsoft.Json" Condition="'$(ConnectorCosmosDbOption)' == 'True'" Version="13.0.*" />
<PackageReference Include="Npgsql" Condition="'$(ConnectorPostgreSqlOption)' == 'True'" Version="$(AspNetCoreVersion)" />
<PackageReference Include="Npgsql" Condition="'$(HasConnectorPostgreSqlWithoutEfCore)' == 'True'" Version="$(AspNetCoreVersion)" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Condition="'$(ConnectorPostgreSqlEfCoreOption)' == 'True'" Version="$(AspNetCoreVersion)" />
<PackageReference Include="RabbitMQ.Client" Condition="'$(ConnectorRabbitMqOption)' == 'True'" Version="$(RabbitMqVersion)" />
<PackageReference Include="RabbitMQ.Client" Condition="'$(HasConnectorRabbitMqWithoutMessaging)' == 'True'" Version="$(RabbitMqVersion)" />
<PackageReference Include="Steeltoe.CircuitBreaker.HystrixCore" Condition="'$(HasCircuitBreakerHystrixInSteeltoeV3)' == 'True'" Version="$(SteeltoeVersion)" />
<PackageReference Include="Steeltoe.CircuitBreaker.Hystrix.MetricsStreamCore" Condition="'$(HasCircuitBreakerHystrixInSteeltoeV3)' == 'True'" Version="$(SteeltoeVersion)" />
<PackageReference Include="Steeltoe.Configuration.CloudFoundry" Condition="'$(HasHostingCloudFoundryInSteeltoeV4)' == 'True'" Version="$(SteeltoeVersion)" />
Expand Down
Loading