* work
* work
* work
* work
* work
* work
* work
* work
* work
* work
* work
* work
* work
* work
* Minor tweaks to metapackage.md
* Convert "settings" to singular form
* Remove double quotes surrounding Microsoft.NET.Sdk.Web
* work
* work
* work
* work
* work
The source listing of the GetTestSessions method of [Testing Controller Logic](https://docs.microsoft.com/en-us/aspnet/core/mvc/controllers/testing) included an end bracket due to an offset error in the line numbers:
```cs
[Fact]
public async Task Index_ReturnsAViewResult_WithAListOfBrainstormSessions()
{
// Arrange
var mockRepo = new Mock<IBrainstormSessionRepository>();
mockRepo.Setup(repo => repo.ListAsync()).Returns(Task.FromResult(GetTestSessions()));
var controller = new HomeController(mockRepo.Object);
// Act
var result = await controller.Index();
// Assert
var viewResult = Assert.IsType<ViewResult>(result);
var model = Assert.IsAssignableFrom<IEnumerable<StormSessionViewModel>>(
viewResult.ViewData.Model);
Assert.Equal(2, model.Count());
}
}
private List<BrainstormSession> GetTestSessions()
{
var sessions = new List<BrainstormSession>();
sessions.Add(new BrainstormSession()
{
DateCreated = new DateTime(2016, 7, 2),
Id = 1,
Name = "Test One"
});
sessions.Add(new BrainstormSession()
{
DateCreated = new DateTime(2016, 7, 1),
Id = 2,
Name = "Test Two"
});
return sessions;
}
```
This has been fixed by increasing the starting offset by one.
the next link is also broken, and redirects to a page on docs, but it looks like it's not a copy of the original document, so I didn't fix it. The original text needs to be found, or the reference to it should be fixed.
* initial
* initial2
* initial3
* toc
* fix note format
* fix links
* Update aspnetcore-2.0.md (#3689)
* ra feedback, additional edits
* more edits
* clarify this isn't all there is in 2.0
* netstandard
* fix link
* Cleaning up and updating startup details.
* Responding to feedback
* re-arranging order and responding to feedback
* Tweaking reference to Hosting
* Remove reference to repo that lists all startup services