-
Notifications
You must be signed in to change notification settings - Fork 927
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add .NETCore 3 preview support #791
Conversation
@@ -16,13 +20,13 @@ namespace React.AspNet | |||
/// </summary> | |||
public class AspNetFileSystem : FileSystemBase | |||
{ | |||
private readonly IHostingEnvironment _hostingEnv; | |||
private readonly IWebHostEnvironment _hostingEnv; | |||
|
|||
/// <summary> | |||
/// Initializes a new instance of the <see cref="AspNetFileSystem"/> class. | |||
/// </summary> | |||
/// <param name="hostingEnv">The ASP.NET 5 hosting environment</param> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hah, this still says "ASP.NET 5". We should change that 😛
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems reasonable to me. Do you think we'd release this before .NET Core 3.0 is out (as a stable release), or wait until the release? I wonder if it's being released at Build this year. 👀
My plan was to ship an alpha targeting the .NET Core 3 preview alongside netstandard, and when .NET Core 3 ships we can remove the alpha flag. |
Blocked by dotnet/sdk#3146 |
For whatever reason, I can't get CI to work. This is published as 5.0.0-alpha3. @mbaumanndev |
Azure pipelines works better and faster with .NET Core
@dustinsoftware Since you deleted the AppVeyor build, the dev build NuGet server (https://reactjs.net/getting-started/download.html#development-builds) won't work any more, as that was coming from AppVeyor. Potentially we can use GitHub's package hosting once that's available. In the interim I can probably set up a self-hosted package server again. |
Sorry about that.. TIL we have a custom NuGet dev build channel.
I wonder if we can set up Azure Pipelines to publish to a custom NuGet
feed? (I hope so)
I am currently just publishing alpha NuGet builds to the main feed so that
people don’t have to use a new package source to try out alpha features...
…On Tue, Jun 4, 2019 at 01:11, Daniel Lo Nigro ***@***.***> wrote:
@dustinsoftware <https://github.com/dustinsoftware> Since you deleted the
AppVeyor build, the dev build NuGet server (
https://reactjs.net/getting-started/download.html#development-builds)
won't work any more, as that was coming from AppVeyor. Potentially we can
use GitHub's package hosting once that's available. In the interim I can
probably set up a self-hosted package server again.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#791?email_source=notifications&email_token=AAHGCFXL65MC2DRIFPGIIIDPYX2RZA5CNFSM4HJHVKZ2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODW3N4VA#issuecomment-498523732>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAHGCFUG5FIMEXCVLCX7BILPYX2RZANCNFSM4HJHVKZQ>
.
|
WIP 🚨