Recently I started getting a build error when referencing the QuantConnect.Api namespace (it's used by default in bootcamp projects), probably because a new type “Api” was defined recently. Removing this using fixes the issue (I guess it's not really needed in most cases):
Build Error File: main.cs Line:18 Column:10 - A 'using namespace' directive can only be applied to namespaces; 'Api' is a type not a namespace. Consider a 'using static' directive instead
Mia Alissi
The error message you're seeing is indicating that
Api
is a type, not a namespace, so it can't be used with ausing
directive. This is likely due to a recent change in the QuantConnect API.If you're not using anything from the
QuantConnect.Api
namespace in your code, you can safely remove thisusing
directive without any issues. If you are using types from this namespace, you'll need to fully qualify them with the namespace when you use them.For example, if you're using the
Api
type, you would change this:To this:
This way, the compiler knows exactly which
Api
type you're referring to.The material on this website is provided for informational purposes only and does not constitute an offer to sell, a solicitation to buy, or a recommendation or endorsement for any security or strategy, nor does it constitute an offer to provide investment advisory services by QuantConnect. In addition, the material offers no opinion with respect to the suitability of any security or specific investment. QuantConnect makes no guarantees as to the accuracy or completeness of the views expressed in the website. The views are subject to change, and may have become unreliable for various reasons, including changes in market conditions or economic circumstances. All investments involve risk, including loss of principal. You should consult with an investment professional before making any investment decisions.
Dennis
The material on this website is provided for informational purposes only and does not constitute an offer to sell, a solicitation to buy, or a recommendation or endorsement for any security or strategy, nor does it constitute an offer to provide investment advisory services by QuantConnect. In addition, the material offers no opinion with respect to the suitability of any security or specific investment. QuantConnect makes no guarantees as to the accuracy or completeness of the views expressed in the website. The views are subject to change, and may have become unreliable for various reasons, including changes in market conditions or economic circumstances. All investments involve risk, including loss of principal. You should consult with an investment professional before making any investment decisions.
To unlock posting to the community forums please complete at least 30% of Boot Camp.
You can continue your Boot Camp training progress from the terminal. We hope to see you in the community soon!