We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug on this line: https://github.com/SteeltoeOSS/NetCoreToolTemplates/blob/main/src/Content/NetCoreTool.Template.WebApi/CSharp/Company.WebApplication.CS.csproj#L39
<PackageReference Include="Steeltoe.Connector.ConnectorCore" Condition="'$(Steeltoe3Connector)' == 'True' AND '$(AnyEfCore)' != 'True'" Version="$(SteeltoeVersion)" /> should be <PackageReference Include="Steeltoe.Connector.ConnectorCore" Condition="'$(Steeltoe3Connector)' == 'True'" Version="$(SteeltoeVersion)" />
<PackageReference Include="Steeltoe.Connector.ConnectorCore" Condition="'$(Steeltoe3Connector)' == 'True' AND '$(AnyEfCore)' != 'True'" Version="$(SteeltoeVersion)" />
<PackageReference Include="Steeltoe.Connector.ConnectorCore" Condition="'$(Steeltoe3Connector)' == 'True'" Version="$(SteeltoeVersion)" />
The EFCore package depends on the Base connector package but some of the extension methods (eg: AddRabbitMQConnection) are in the Core package
AddRabbitMQConnection
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bug on this line: https://github.com/SteeltoeOSS/NetCoreToolTemplates/blob/main/src/Content/NetCoreTool.Template.WebApi/CSharp/Company.WebApplication.CS.csproj#L39
<PackageReference Include="Steeltoe.Connector.ConnectorCore" Condition="'$(Steeltoe3Connector)' == 'True' AND '$(AnyEfCore)' != 'True'" Version="$(SteeltoeVersion)" />
should be
<PackageReference Include="Steeltoe.Connector.ConnectorCore" Condition="'$(Steeltoe3Connector)' == 'True'" Version="$(SteeltoeVersion)" />
The EFCore package depends on the Base connector package but some of the extension methods (eg:
AddRabbitMQConnection
) are in the Core packageThe text was updated successfully, but these errors were encountered: