diff --git a/src/Content/NetCoreTool.Template.WebApi/CSharp/.template.config/template.json b/src/Content/NetCoreTool.Template.WebApi/CSharp/.template.config/template.json index fb4f411..6910bf5 100644 --- a/src/Content/NetCoreTool.Template.WebApi/CSharp/.template.config/template.json +++ b/src/Content/NetCoreTool.Template.WebApi/CSharp/.template.config/template.json @@ -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" @@ -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" @@ -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" @@ -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" diff --git a/src/Content/NetCoreTool.Template.WebApi/CSharp/Company.WebApplication.CS.csproj b/src/Content/NetCoreTool.Template.WebApi/CSharp/Company.WebApplication.CS.csproj index 6368574..03fba98 100644 --- a/src/Content/NetCoreTool.Template.WebApi/CSharp/Company.WebApplication.CS.csproj +++ b/src/Content/NetCoreTool.Template.WebApi/CSharp/Company.WebApplication.CS.csproj @@ -1,4 +1,4 @@ - + $(FrameworkOption) @@ -28,17 +28,17 @@ - + - + - + - +