Skip to content
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

.NET Core startup script: Run app executable if present, else fallback to app's dll #138

Merged
merged 3 commits into from
May 15, 2019

Commits on May 15, 2019

  1. .NET Core startup script: Run app executable if present, else fallbac…

    …k to app's dll
    
    This is to support the following scenarios:
    1. End users can do a zip deploy of a self-contained app into AppService and our runtime container should use the executable,
       so instead of doing 'dotnet myappname.dll', we should run './myappname'. This is because the whole point of self-contained app
       is to use the packaged runtime which is present in the output.
    2. Starting 3.0 .NET Core, a regular 'dotnet publish' creates both the executable and dll.
    kichalla committed May 15, 2019
    Configuration menu
    Copy the full SHA
    dcf9c68 View commit details
    Browse the repository at this point in the history
  2. updated

    kichalla committed May 15, 2019
    Configuration menu
    Copy the full SHA
    97e0f20 View commit details
    Browse the repository at this point in the history
  3. Fixed app name

    kichalla committed May 15, 2019
    Configuration menu
    Copy the full SHA
    80c41f8 View commit details
    Browse the repository at this point in the history