Reputation: 759
It currently runs on 8080, but I need that port for another service.
Upvotes: 3
Views: 493
Reputation: 8295
Perhaps this?
var store = new EmbeddableDocumentStore
{
Configuration =
{
Port = 12345,
}
};
Upvotes: 2