You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 19, 2018. It is now read-only.
Currently if the app is not published before deployment the command executed by the self host deployer looks like dotnet run -p "C:\gh\Localization\samples\LocalizationSample" -- --server.urls http://localhost:5081/ --server Microsoft.AspNetCore.Server.Kestrel. This is missing the framework specification --framework net451/netcoreapp1.0 and will always run the coreclr version by default. As a result, some of our full CLR functional tests currently are tested with CoreCLR instead. We should update the deployer so we don't have this hole in our test coverage.
The text was updated successfully, but these errors were encountered:
Currently if the app is not published before deployment the command executed by the self host deployer looks like
dotnet run -p "C:\gh\Localization\samples\LocalizationSample" -- --server.urls http://localhost:5081/ --server Microsoft.AspNetCore.Server.Kestrel
. This is missing the framework specification--framework net451/netcoreapp1.0
and will always run the coreclr version by default. As a result, some of our full CLR functional tests currently are tested with CoreCLR instead. We should update the deployer so we don't have this hole in our test coverage.The text was updated successfully, but these errors were encountered: