diff --git a/CQRS.Tests/Queries/Queries.cs b/CQRS.Tests/Queries/Queries.cs index 5eafdd05b..bde63f35a 100644 --- a/CQRS.Tests/Queries/Queries.cs +++ b/CQRS.Tests/Queries/Queries.cs @@ -98,7 +98,7 @@ public Task> Handle(GetIssuesNamesQuery query, CancellationToken ca } [Fact] - public async void GivenCommandWithData_WhenCommandIsSendToApplicationService_ThenreadModelIsChanged() + public async Task GivenCommandWithData_WhenCommandIsSendToApplicationService_ThenreadModelIsChanged() { var serviceLocator = new ServiceLocator(); diff --git a/MediatR.Tests/Publishing/MoreThanOneHandler.cs b/MediatR.Tests/Publishing/MoreThanOneHandler.cs index 24df53025..a9b0ea9bd 100644 --- a/MediatR.Tests/Publishing/MoreThanOneHandler.cs +++ b/MediatR.Tests/Publishing/MoreThanOneHandler.cs @@ -69,7 +69,7 @@ public MoreThanOneHandler() } [Fact] - public async void GivenTwoHandlersForOneEvent_WhenPublishMethodIsBeingCalled_ThenTwoHandlersAreBeingCalled() + public async Task GivenTwoHandlersForOneEvent_WhenPublishMethodIsBeingCalled_ThenTwoHandlersAreBeingCalled() { //Given var @event = new IssueCreated("cleaning"); diff --git a/MediatR.Tests/Publishing/NoHandlers.cs b/MediatR.Tests/Publishing/NoHandlers.cs index a11cceaef..0ead44385 100644 --- a/MediatR.Tests/Publishing/NoHandlers.cs +++ b/MediatR.Tests/Publishing/NoHandlers.cs @@ -39,7 +39,7 @@ public IssueCreated(string issueName) } [Fact] - public async void GivenNonRegisteredQueryHandler_WhenPublishMethodIsBeingCalled_ThenThrowsAnError() + public async Task GivenNonRegisteredQueryHandler_WhenPublishMethodIsBeingCalled_ThenThrowsAnError() { var ex = await Record.ExceptionAsync(async () => { diff --git a/MediatR.Tests/Publishing/SingleHandler.cs b/MediatR.Tests/Publishing/SingleHandler.cs index b9230fc21..f6cb0ee58 100644 --- a/MediatR.Tests/Publishing/SingleHandler.cs +++ b/MediatR.Tests/Publishing/SingleHandler.cs @@ -70,7 +70,7 @@ public SingleHandler() } [Fact] - public async void GivenRegisteredAsynchronousRequestHandler_WhenPublishMethodIsBeingCalled_ThenReturnsProperResult() + public async Task GivenRegisteredAsynchronousRequestHandler_WhenPublishMethodIsBeingCalled_ThenReturnsProperResult() { //Given var @event = new IssueCreated("cleaning"); diff --git a/MediatR.Tests/Sending/MoreThanOneHandler.cs b/MediatR.Tests/Sending/MoreThanOneHandler.cs index 3ad2ab9eb..9590d1dd7 100644 --- a/MediatR.Tests/Sending/MoreThanOneHandler.cs +++ b/MediatR.Tests/Sending/MoreThanOneHandler.cs @@ -70,7 +70,7 @@ public MoreThanOneHandler() } [Fact] - public async void GivenTwoHandlersForOneCommand_WhenSendMethodIsBeingCalled_ThenOnlyFIrstHandlersIsBeingCalled() + public async Task GivenTwoHandlersForOneCommand_WhenSendMethodIsBeingCalled_ThenOnlyFIrstHandlersIsBeingCalled() { //Given var query = new CreateIssueCommand("cleaning"); diff --git a/MediatR.Tests/Sending/NoHandlers.cs b/MediatR.Tests/Sending/NoHandlers.cs index 9a17b07b8..42d98b2c1 100644 --- a/MediatR.Tests/Sending/NoHandlers.cs +++ b/MediatR.Tests/Sending/NoHandlers.cs @@ -39,7 +39,7 @@ public GetIssuesNamesQuery(string filter) } [Fact] - public async void GivenNonRegisteredQueryHandler_WhenSendMethodIsBeingCalled_ThenThrowsAnError() + public async Task GivenNonRegisteredQueryHandler_WhenSendMethodIsBeingCalled_ThenThrowsAnError() { var ex = await Record.ExceptionAsync(async () => { diff --git a/MediatR.Tests/Sending/SingleHandler.cs b/MediatR.Tests/Sending/SingleHandler.cs index d988c0d29..2b8d04221 100644 --- a/MediatR.Tests/Sending/SingleHandler.cs +++ b/MediatR.Tests/Sending/SingleHandler.cs @@ -71,7 +71,7 @@ public SingleHandler() } [Fact] - public async void GivenRegisteredAsynchronousRequestHandler_WhenSendMethodIsBeingCalled_ThenReturnsProperResult() + public async Task GivenRegisteredAsynchronousRequestHandler_WhenSendMethodIsBeingCalled_ThenReturnsProperResult() { //Given var query = new GetIssuesNamesQuery("cleaning"); diff --git a/Sample/AsyncProjections/SmartHome.Api/Properties/launchSettings.json b/Sample/AsyncProjections/SmartHome.Api/Properties/launchSettings.json index db3af9b9f..e2b867c40 100644 --- a/Sample/AsyncProjections/SmartHome.Api/Properties/launchSettings.json +++ b/Sample/AsyncProjections/SmartHome.Api/Properties/launchSettings.json @@ -1,20 +1,5 @@ { - "iisSettings": { - "windowsAuthentication": false, - "anonymousAuthentication": true, - "iisExpress": { - "applicationUrl": "http://localhost:38472", - "sslPort": 44357 - } - }, "profiles": { - "IIS Express": { - "commandName": "IISExpress", - "launchBrowser": true, - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } - }, "SmartHomeApi": { "commandName": "Project", "launchBrowser": true, diff --git a/Sample/ECommerce/Carts/Carts.Api.Tests/ShoppingCarts/AddingProduct/AddProductTests.cs b/Sample/ECommerce/Carts/Carts.Api.Tests/ShoppingCarts/AddingProduct/AddProductTests.cs index a22a34635..d16d2554c 100644 --- a/Sample/ECommerce/Carts/Carts.Api.Tests/ShoppingCarts/AddingProduct/AddProductTests.cs +++ b/Sample/ECommerce/Carts/Carts.Api.Tests/ShoppingCarts/AddingProduct/AddProductTests.cs @@ -47,12 +47,10 @@ public AddProductTests(AddProductFixture fixture) [Fact] [Trait("Category", "Acceptance")] - public Task Put_Should_Return_OK() + public void Put_Should_Return_OK() { var commandResponse = fixture.CommandResponse.EnsureSuccessStatusCode(); commandResponse.StatusCode.Should().Be(HttpStatusCode.OK); - - return Task.CompletedTask; } [Fact] diff --git a/Sample/ECommerce/Carts/Carts.Api.Tests/ShoppingCarts/Canceling/CancelShoppingCartTests.cs b/Sample/ECommerce/Carts/Carts.Api.Tests/ShoppingCarts/Canceling/CancelShoppingCartTests.cs index c295857bd..5667ed4fb 100644 --- a/Sample/ECommerce/Carts/Carts.Api.Tests/ShoppingCarts/Canceling/CancelShoppingCartTests.cs +++ b/Sample/ECommerce/Carts/Carts.Api.Tests/ShoppingCarts/Canceling/CancelShoppingCartTests.cs @@ -45,17 +45,15 @@ public ConfirmShoppingCartTests(ConfirmShoppingCartFixture fixture) [Fact] [Trait("Category", "Acceptance")] - public Task Put_Should_Return_OK() + public void Put_Should_Return_OK() { var commandResponse = fixture.CommandResponse.EnsureSuccessStatusCode(); commandResponse.StatusCode.Should().Be(HttpStatusCode.OK); - - return Task.CompletedTask; } [Fact] [Trait("Category", "Acceptance")] - public async Task Put_Should_Confirm_ShoppingCart() + public async Task Delete_Should_Cancel_ShoppingCart() { // prepare query var query = $"{fixture.ShoppingCartId}"; diff --git a/Sample/ECommerce/Carts/Carts.Api.Tests/ShoppingCarts/Confirming/ConfirmShoppingCartTests.cs b/Sample/ECommerce/Carts/Carts.Api.Tests/ShoppingCarts/Confirming/ConfirmShoppingCartTests.cs index 6bbe73f46..e21ac6e93 100644 --- a/Sample/ECommerce/Carts/Carts.Api.Tests/ShoppingCarts/Confirming/ConfirmShoppingCartTests.cs +++ b/Sample/ECommerce/Carts/Carts.Api.Tests/ShoppingCarts/Confirming/ConfirmShoppingCartTests.cs @@ -46,17 +46,15 @@ public ConfirmShoppingCartTests(ConfirmShoppingCartFixture fixture) [Fact] [Trait("Category", "Acceptance")] - public Task Put_Should_Return_OK() + public void Put_Should_Return_OK() { var commandResponse = fixture.CommandResponse.EnsureSuccessStatusCode(); commandResponse.StatusCode.Should().Be(HttpStatusCode.OK); - - return Task.CompletedTask; } [Fact] [Trait("Category", "Acceptance")] - public async Task Put_Should_Confirm_ShoppingCart() + public async Task Delete_Should_Cancel_ShoppingCart() { // prepare query var query = $"{fixture.ShoppingCartId}"; diff --git a/Sample/ECommerce/Carts/Carts.Api.Tests/ShoppingCarts/RemovingProduct/RemoveProductTests.cs b/Sample/ECommerce/Carts/Carts.Api.Tests/ShoppingCarts/RemovingProduct/RemoveProductTests.cs index 183a7dc6d..657463264 100644 --- a/Sample/ECommerce/Carts/Carts.Api.Tests/ShoppingCarts/RemovingProduct/RemoveProductTests.cs +++ b/Sample/ECommerce/Carts/Carts.Api.Tests/ShoppingCarts/RemovingProduct/RemoveProductTests.cs @@ -62,12 +62,10 @@ public RemoveProductTests(RemoveProductFixture fixture) [Fact] [Trait("Category", "Acceptance")] - public Task Delete_Should_Return_OK() + public void Delete_Should_Return_OK() { var commandResponse = fixture.CommandResponse.EnsureSuccessStatusCode(); commandResponse.StatusCode.Should().Be(HttpStatusCode.NoContent); - - return Task.CompletedTask; } [Fact] diff --git a/Sample/ECommerce/Carts/Carts.Api/Properties/launchSettings.json b/Sample/ECommerce/Carts/Carts.Api/Properties/launchSettings.json index 256ac4791..7466db664 100644 --- a/Sample/ECommerce/Carts/Carts.Api/Properties/launchSettings.json +++ b/Sample/ECommerce/Carts/Carts.Api/Properties/launchSettings.json @@ -1,12 +1,4 @@ { - "iisSettings": { - "windowsAuthentication": false, - "anonymousAuthentication": true, - "iisExpress": { - "applicationUrl": "http://localhost:38471", - "sslPort": 44357 - } - }, "profiles": { "CartsApi": { "commandName": "Project", diff --git a/Sample/ECommerce/Orders/Orders.Api/Properties/launchSettings.json b/Sample/ECommerce/Orders/Orders.Api/Properties/launchSettings.json index 6592fca8c..2a8a5d066 100644 --- a/Sample/ECommerce/Orders/Orders.Api/Properties/launchSettings.json +++ b/Sample/ECommerce/Orders/Orders.Api/Properties/launchSettings.json @@ -1,12 +1,4 @@ { - "iisSettings": { - "windowsAuthentication": false, - "anonymousAuthentication": true, - "iisExpress": { - "applicationUrl": "http://localhost:38471", - "sslPort": 44357 - } - }, "profiles": { "OrdersApi": { "commandName": "Project", diff --git a/Sample/ECommerce/Orders/Orders/Orders/OrderSaga.cs b/Sample/ECommerce/Orders/Orders/Orders/OrderSaga.cs index aa043bcd9..4498a88b8 100644 --- a/Sample/ECommerce/Orders/Orders/Orders/OrderSaga.cs +++ b/Sample/ECommerce/Orders/Orders/Orders/OrderSaga.cs @@ -74,9 +74,6 @@ public Task Handle(ProductWasOutOfStock @event, CancellationToken cancellationTo public Task Handle(OrderCancelled @event, CancellationToken cancellationToken) { - if (!@event.PaymentId.HasValue) - return Task.CompletedTask; - - return commandBus.Send(DiscardPayment.Create(@event.PaymentId.Value)); + return @event.PaymentId.HasValue ? commandBus.Send(DiscardPayment.Create(@event.PaymentId.Value)) : Task.CompletedTask; } } diff --git a/Sample/ECommerce/Payments/Payments.Api/Properties/launchSettings.json b/Sample/ECommerce/Payments/Payments.Api/Properties/launchSettings.json index 98bbbe474..2047c8041 100644 --- a/Sample/ECommerce/Payments/Payments.Api/Properties/launchSettings.json +++ b/Sample/ECommerce/Payments/Payments.Api/Properties/launchSettings.json @@ -1,12 +1,4 @@ { - "iisSettings": { - "windowsAuthentication": false, - "anonymousAuthentication": true, - "iisExpress": { - "applicationUrl": "http://localhost:38471", - "sslPort": 44357 - } - }, "profiles": { "PaymentsApi": { "commandName": "Project", diff --git a/Sample/ECommerce/Shipments/Shipments.Api/Properties/launchSettings.json b/Sample/ECommerce/Shipments/Shipments.Api/Properties/launchSettings.json index 7df9069be..d1835550e 100644 --- a/Sample/ECommerce/Shipments/Shipments.Api/Properties/launchSettings.json +++ b/Sample/ECommerce/Shipments/Shipments.Api/Properties/launchSettings.json @@ -1,12 +1,4 @@ { - "iisSettings": { - "windowsAuthentication": false, - "anonymousAuthentication": true, - "iisExpress": { - "applicationUrl": "http://localhost:38471", - "sslPort": 44357 - } - }, "profiles": { "ShipmentsApi": { "commandName": "Project", diff --git a/Sample/EventStoreDB/ECommerce/Carts/Carts.Api.Tests/ShoppingCarts/AddingProduct/AddProductTests.cs b/Sample/EventStoreDB/ECommerce/Carts/Carts.Api.Tests/ShoppingCarts/AddingProduct/AddProductTests.cs index 778f7ed09..51f69171d 100644 --- a/Sample/EventStoreDB/ECommerce/Carts/Carts.Api.Tests/ShoppingCarts/AddingProduct/AddProductTests.cs +++ b/Sample/EventStoreDB/ECommerce/Carts/Carts.Api.Tests/ShoppingCarts/AddingProduct/AddProductTests.cs @@ -46,12 +46,10 @@ public AddProductTests(AddProductFixture fixture) [Fact] [Trait("Category", "Acceptance")] - public Task Put_Should_Return_OK() + public void Put_Should_Return_OK() { var commandResponse = fixture.CommandResponse.EnsureSuccessStatusCode(); commandResponse.StatusCode.Should().Be(HttpStatusCode.OK); - - return Task.CompletedTask; } [Fact] diff --git a/Sample/EventStoreDB/ECommerce/Carts/Carts.Api.Tests/ShoppingCarts/Canceling/CancelShoppingCartTests.cs b/Sample/EventStoreDB/ECommerce/Carts/Carts.Api.Tests/ShoppingCarts/Canceling/CancelShoppingCartTests.cs index 540bfd12d..937a48a73 100644 --- a/Sample/EventStoreDB/ECommerce/Carts/Carts.Api.Tests/ShoppingCarts/Canceling/CancelShoppingCartTests.cs +++ b/Sample/EventStoreDB/ECommerce/Carts/Carts.Api.Tests/ShoppingCarts/Canceling/CancelShoppingCartTests.cs @@ -43,17 +43,15 @@ public CancelShoppingCartTests(CancelShoppingCartFixture fixture) [Fact] [Trait("Category", "Acceptance")] - public Task Put_Should_Return_OK() + public void Put_Should_Return_OK() { var commandResponse = fixture.CommandResponse.EnsureSuccessStatusCode(); commandResponse.StatusCode.Should().Be(HttpStatusCode.OK); - - return Task.CompletedTask; } [Fact] [Trait("Category", "Acceptance")] - public async Task Put_Should_Confirm_ShoppingCart() + public async Task Delete_Should_Cancel_ShoppingCart() { // prepare query var query = $"{fixture.ShoppingCartId}"; diff --git a/Sample/EventStoreDB/ECommerce/Carts/Carts.Api.Tests/ShoppingCarts/Confirming/ConfirmShoppingCartTests.cs b/Sample/EventStoreDB/ECommerce/Carts/Carts.Api.Tests/ShoppingCarts/Confirming/ConfirmShoppingCartTests.cs index e34b0dd97..4e7253f22 100644 --- a/Sample/EventStoreDB/ECommerce/Carts/Carts.Api.Tests/ShoppingCarts/Confirming/ConfirmShoppingCartTests.cs +++ b/Sample/EventStoreDB/ECommerce/Carts/Carts.Api.Tests/ShoppingCarts/Confirming/ConfirmShoppingCartTests.cs @@ -44,12 +44,10 @@ public ConfirmShoppingCartTests(ConfirmShoppingCartFixture fixture) [Fact] [Trait("Category", "Acceptance")] - public Task Put_Should_Return_OK() + public void Put_Should_Return_OK() { var commandResponse = fixture.CommandResponse.EnsureSuccessStatusCode(); commandResponse.StatusCode.Should().Be(HttpStatusCode.OK); - - return Task.CompletedTask; } [Fact] diff --git a/Sample/EventStoreDB/ECommerce/Carts/Carts.Api.Tests/ShoppingCarts/RemovingProduct/RemoveProductTests.cs b/Sample/EventStoreDB/ECommerce/Carts/Carts.Api.Tests/ShoppingCarts/RemovingProduct/RemoveProductTests.cs index 126c31651..fa6941df4 100644 --- a/Sample/EventStoreDB/ECommerce/Carts/Carts.Api.Tests/ShoppingCarts/RemovingProduct/RemoveProductTests.cs +++ b/Sample/EventStoreDB/ECommerce/Carts/Carts.Api.Tests/ShoppingCarts/RemovingProduct/RemoveProductTests.cs @@ -61,12 +61,10 @@ public RemoveProductTests(RemoveProductFixture fixture) [Fact] [Trait("Category", "Acceptance")] - public Task Delete_Should_Return_OK() + public void Delete_Should_Return_OK() { var commandResponse = fixture.CommandResponse.EnsureSuccessStatusCode(); commandResponse.StatusCode.Should().Be(HttpStatusCode.NoContent); - - return Task.CompletedTask; } [Fact] diff --git a/Sample/EventStoreDB/ECommerce/Carts/Carts.Api/Properties/launchSettings.json b/Sample/EventStoreDB/ECommerce/Carts/Carts.Api/Properties/launchSettings.json index d633be903..cd3683489 100644 --- a/Sample/EventStoreDB/ECommerce/Carts/Carts.Api/Properties/launchSettings.json +++ b/Sample/EventStoreDB/ECommerce/Carts/Carts.Api/Properties/launchSettings.json @@ -1,12 +1,4 @@ { - "iisSettings": { - "windowsAuthentication": false, - "anonymousAuthentication": true, - "iisExpress": { - "applicationUrl": "http://localhost:38471", - "sslPort": 44357 - } - }, "profiles": { "CartsApi": { "commandName": "Project", diff --git a/Sample/EventStoreDB/Simple/ECommerce.Api.Tests/ShoppingCarts/AddingProduct/AddProductTests.cs b/Sample/EventStoreDB/Simple/ECommerce.Api.Tests/ShoppingCarts/AddingProduct/AddProductTests.cs index 7e2713003..9f73b3f89 100644 --- a/Sample/EventStoreDB/Simple/ECommerce.Api.Tests/ShoppingCarts/AddingProduct/AddProductTests.cs +++ b/Sample/EventStoreDB/Simple/ECommerce.Api.Tests/ShoppingCarts/AddingProduct/AddProductTests.cs @@ -46,12 +46,10 @@ public AddProductTests(AddProductFixture fixture) [Fact] [Trait("Category", "Acceptance")] - public Task Put_Should_Return_OK() + public void Put_Should_Return_OK() { var commandResponse = fixture.CommandResponse.EnsureSuccessStatusCode(); commandResponse.StatusCode.Should().Be(HttpStatusCode.OK); - - return Task.CompletedTask; } [Fact] diff --git a/Sample/EventStoreDB/Simple/ECommerce.Api.Tests/ShoppingCarts/Canceling/CancelShoppingCartTests.cs b/Sample/EventStoreDB/Simple/ECommerce.Api.Tests/ShoppingCarts/Canceling/CancelShoppingCartTests.cs index 11734bccd..460acb5c7 100644 --- a/Sample/EventStoreDB/Simple/ECommerce.Api.Tests/ShoppingCarts/Canceling/CancelShoppingCartTests.cs +++ b/Sample/EventStoreDB/Simple/ECommerce.Api.Tests/ShoppingCarts/Canceling/CancelShoppingCartTests.cs @@ -43,17 +43,15 @@ public CancelShoppingCartTests(CancelShoppingCartFixture fixture) [Fact] [Trait("Category", "Acceptance")] - public Task Put_Should_Return_OK() + public void Put_Should_Return_OK() { var commandResponse = fixture.CommandResponse.EnsureSuccessStatusCode(); commandResponse.StatusCode.Should().Be(HttpStatusCode.OK); - - return Task.CompletedTask; } [Fact] [Trait("Category", "Acceptance")] - public async Task Put_Should_Confirm_ShoppingCart() + public async Task Delete_Should_Cancel_ShoppingCart() { // prepare query var query = $"{fixture.ShoppingCartId}"; diff --git a/Sample/EventStoreDB/Simple/ECommerce.Api.Tests/ShoppingCarts/Confirming/ConfirmShoppingCartTests.cs b/Sample/EventStoreDB/Simple/ECommerce.Api.Tests/ShoppingCarts/Confirming/ConfirmShoppingCartTests.cs index 4d81de1aa..3464bbfbc 100644 --- a/Sample/EventStoreDB/Simple/ECommerce.Api.Tests/ShoppingCarts/Confirming/ConfirmShoppingCartTests.cs +++ b/Sample/EventStoreDB/Simple/ECommerce.Api.Tests/ShoppingCarts/Confirming/ConfirmShoppingCartTests.cs @@ -44,12 +44,10 @@ public ConfirmShoppingCartTests(ConfirmShoppingCartFixture fixture) [Fact] [Trait("Category", "Acceptance")] - public Task Put_Should_Return_OK() + public void Put_Should_Return_OK() { var commandResponse = fixture.CommandResponse.EnsureSuccessStatusCode(); commandResponse.StatusCode.Should().Be(HttpStatusCode.OK); - - return Task.CompletedTask; } [Fact] diff --git a/Sample/EventStoreDB/Simple/ECommerce.Api.Tests/ShoppingCarts/RemovingProduct/RemoveProductTests.cs b/Sample/EventStoreDB/Simple/ECommerce.Api.Tests/ShoppingCarts/RemovingProduct/RemoveProductTests.cs index 23131e807..850f357cb 100644 --- a/Sample/EventStoreDB/Simple/ECommerce.Api.Tests/ShoppingCarts/RemovingProduct/RemoveProductTests.cs +++ b/Sample/EventStoreDB/Simple/ECommerce.Api.Tests/ShoppingCarts/RemovingProduct/RemoveProductTests.cs @@ -61,12 +61,10 @@ public RemoveProductTests(RemoveProductFixture fixture) [Fact] [Trait("Category", "Acceptance")] - public Task Delete_Should_Return_OK() + public void Delete_Should_Return_OK() { var commandResponse = fixture.CommandResponse.EnsureSuccessStatusCode(); commandResponse.StatusCode.Should().Be(HttpStatusCode.NoContent); - - return Task.CompletedTask; } [Fact] diff --git a/Sample/EventStoreDB/Simple/ECommerce.Api/Properties/launchSettings.json b/Sample/EventStoreDB/Simple/ECommerce.Api/Properties/launchSettings.json index a73e0c5c3..2343d4d20 100644 --- a/Sample/EventStoreDB/Simple/ECommerce.Api/Properties/launchSettings.json +++ b/Sample/EventStoreDB/Simple/ECommerce.Api/Properties/launchSettings.json @@ -1,22 +1,6 @@ { "$schema": "http://json.schemastore.org/launchsettings.json", - "iisSettings": { - "windowsAuthentication": false, - "anonymousAuthentication": true, - "iisExpress": { - "applicationUrl": "http://localhost:37117", - "sslPort": 44355 - } - }, "profiles": { - "IIS Express": { - "commandName": "IISExpress", - "launchBrowser": true, - "launchUrl": "swagger", - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } - }, "ECommerce.Api": { "commandName": "Project", "dotnetRunMessages": "true", diff --git a/Sample/MeetingsManagement/MeetingsManagement.Api/Properties/launchSettings.json b/Sample/MeetingsManagement/MeetingsManagement.Api/Properties/launchSettings.json index af293bdb9..27858b550 100644 --- a/Sample/MeetingsManagement/MeetingsManagement.Api/Properties/launchSettings.json +++ b/Sample/MeetingsManagement/MeetingsManagement.Api/Properties/launchSettings.json @@ -1,20 +1,5 @@ { - "iisSettings": { - "windowsAuthentication": false, - "anonymousAuthentication": true, - "iisExpress": { - "applicationUrl": "http://localhost:38481", - "sslPort": 44357 - } - }, "profiles": { - "IIS Express": { - "commandName": "IISExpress", - "launchBrowser": true, - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } - }, "MeetingsManagement.Api": { "commandName": "Project", "launchBrowser": true, diff --git a/Sample/MeetingsManagement/MeetingsManagement.IntegrationTests/Properties/launchSettings.json b/Sample/MeetingsManagement/MeetingsManagement.IntegrationTests/Properties/launchSettings.json index e457da30a..14173863b 100644 --- a/Sample/MeetingsManagement/MeetingsManagement.IntegrationTests/Properties/launchSettings.json +++ b/Sample/MeetingsManagement/MeetingsManagement.IntegrationTests/Properties/launchSettings.json @@ -1,20 +1,5 @@ { - "iisSettings": { - "windowsAuthentication": false, - "anonymousAuthentication": true, - "iisExpress": { - "applicationUrl": "http://localhost:52684/", - "sslPort": 0 - } - }, "profiles": { - "IIS Express": { - "commandName": "IISExpress", - "launchBrowser": true, - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } - }, "Meetings.IntegrationTests": { "commandName": "Project", "launchBrowser": true, @@ -24,4 +9,4 @@ "applicationUrl": "http://localhost:52685/" } } -} \ No newline at end of file +} diff --git a/Sample/MeetingsManagement/MeetingsSearch.Api/Properties/launchSettings.json b/Sample/MeetingsManagement/MeetingsSearch.Api/Properties/launchSettings.json index 6f04fefe2..15923366d 100644 --- a/Sample/MeetingsManagement/MeetingsSearch.Api/Properties/launchSettings.json +++ b/Sample/MeetingsManagement/MeetingsSearch.Api/Properties/launchSettings.json @@ -1,20 +1,5 @@ { - "iisSettings": { - "windowsAuthentication": false, - "anonymousAuthentication": true, - "iisExpress": { - "applicationUrl": "http://localhost:16596", - "sslPort": 44323 - } - }, "profiles": { - "IIS Express": { - "commandName": "IISExpress", - "launchBrowser": true, - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } - }, "EventsSearch": { "commandName": "Project", "launchBrowser": true, diff --git a/Sample/MeetingsManagement/MeetingsSearch.IntegrationTests/Properties/launchSettings.json b/Sample/MeetingsManagement/MeetingsSearch.IntegrationTests/Properties/launchSettings.json index 6363f15c7..025b1c82c 100644 --- a/Sample/MeetingsManagement/MeetingsSearch.IntegrationTests/Properties/launchSettings.json +++ b/Sample/MeetingsManagement/MeetingsSearch.IntegrationTests/Properties/launchSettings.json @@ -1,20 +1,5 @@ { - "iisSettings": { - "windowsAuthentication": false, - "anonymousAuthentication": true, - "iisExpress": { - "applicationUrl": "http://localhost:50781/", - "sslPort": 0 - } - }, "profiles": { - "IIS Express": { - "commandName": "IISExpress", - "launchBrowser": true, - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } - }, "MeetingsSearch.IntegrationTests": { "commandName": "Project", "launchBrowser": true, @@ -24,4 +9,4 @@ "applicationUrl": "http://localhost:50782/" } } -} \ No newline at end of file +} diff --git a/Sample/Tickets/Tickets.Api/Properties/launchSettings.json b/Sample/Tickets/Tickets.Api/Properties/launchSettings.json index 40620b08e..9c4610761 100644 --- a/Sample/Tickets/Tickets.Api/Properties/launchSettings.json +++ b/Sample/Tickets/Tickets.Api/Properties/launchSettings.json @@ -1,20 +1,5 @@ { - "iisSettings": { - "windowsAuthentication": false, - "anonymousAuthentication": true, - "iisExpress": { - "applicationUrl": "http://localhost:38471", - "sslPort": 44357 - } - }, "profiles": { - "IIS Express": { - "commandName": "IISExpress", - "launchBrowser": true, - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } - }, "TicketsApi": { "commandName": "Project", "launchBrowser": true, diff --git a/Sample/Warehouse/Warehouse.Api/Properties/launchSettings.json b/Sample/Warehouse/Warehouse.Api/Properties/launchSettings.json index e5c92db59..ce1ff765b 100644 --- a/Sample/Warehouse/Warehouse.Api/Properties/launchSettings.json +++ b/Sample/Warehouse/Warehouse.Api/Properties/launchSettings.json @@ -1,22 +1,6 @@ { "$schema": "http://json.schemastore.org/launchsettings.json", - "iisSettings": { - "windowsAuthentication": false, - "anonymousAuthentication": true, - "iisExpress": { - "applicationUrl": "http://localhost:59471", - "sslPort": 44389 - } - }, "profiles": { - "IIS Express": { - "commandName": "IISExpress", - "launchBrowser": true, - "launchUrl": "swagger", - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } - }, "Products.Api": { "commandName": "Project", "dotnetRunMessages": "true",