Skip to content

Releases: Dotnet-Boxed/Framework

Boxed Dotnet New Test 3.2.3

20 Dec 16:13
Compare
Choose a tag to compare
  • Added TempDirectory.NewShortTempDirectory() to work around MSBuild 256 character file path limit.

Boxed AspNetCore 5.1.1

11 Dec 09:49
Compare
Choose a tag to compare
  • Add AddServerTiming and AddHttpException extensions to IServiceCollection.

Boxed Dotnet New Test 3.2.0

09 Dec 16:15
Compare
Choose a tag to compare
  • Introduce readiness checks.

Boxed AspNetCore 5.1.0

09 Dec 16:16
Compare
Choose a tag to compare
  • Added middleware that adds the Server-Timing HTTP header.

Boxed Dotnet New Test 3.1.2

06 Dec 17:20
Compare
Choose a tag to compare
  • Add more logging to WaitForStartAsync and check for success status code

Boxed Dotnet New Test 3.1.1

06 Dec 14:34
Compare
Choose a tag to compare
  • Fixed waiting for apps to start in DotnetRunAsync.

Boxed Dotnet New Test 3.1.0

06 Dec 09:30
Compare
Choose a tag to compare
  • Add .NET Core 3.1 support.
  • Add better error handling & logging when dotnet run times out.
  • Add showShellWindow parameter to show the shell window instead of logging to the output for debugging.

Boxed Mapping 3.0.0

12 Nov 09:25
d4c3f9e
Compare
Choose a tag to compare
  • Upgrade to .NET Core 3 SDK and target netstandard1.3, netstandard2.0 and netstandard2.1.
  • Switch from NuGet PackageIconUrl to PackageIcon, so the icon is now embedded in the package.
  • Add extension methods adding support for IAsyncEnumerable<T>.

Boxed Dotnet New Test 3.0.0

12 Nov 09:25
d4c3f9e
Compare
Choose a tag to compare
  • Upgrade to .NET Core 3 SDK and target netstandard2.1 and netcoreapp3.0.
  • Switch from NuGet PackageIconUrl to PackageIcon, so the icon is now embedded in the package.
  • Use Ordinal file path string comparisons.
  • Move experimental DotnetRunInMemoryAsync to be netcoreapp3.0 only due to API limitations.

Boxed AspNetCore 5.0.0

12 Nov 09:25
d4c3f9e
Compare
Choose a tag to compare
  • Upgrade to .NET Core 3 SDK and target netcoreapp3.0.
  • Switch from NuGet PackageIconUrl to PackageIcon, so the icon is now embedded in the package.
  • Upgrade Micorosoft.Extensions.* NuGet packages to 3.0.0.
  • Switch from Newtonsoft.Json to System.Text.Json.
  • DistributedCacheExtensions now uses System.Text.Json and serializes directly to UTF8 for performance reasons.
  • Use Ordinal string comparisons.
  • Switch from IHostingEnvironment to IWebHostEnvironment.
  • RedirectToCanonicalUrlRule implements Microsoft.AspNetCore.Rewrite.IRule and can be used to redirect to a single canonical URL. This used to be an MVC filter.
  • HttpExceptionMiddleware now implements IMiddleware.
  • Remove site map code. Look at the source code for the The ASP.NET Core standup site for how to do this in a better way.
  • Remove UrlHelperExtensions. Use LinkGenerator instead.
  • Remove ConfigurationExtensions.GetSection<T>. Use IConfiguration.Get instead.
  • Remove InternalServerErrorOnExceptionMiddleware since it was unused.
  • Remove NoCacheAttribute.