-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Linux support for FunctionsNetHost (#1704)
* FunctionsNetHost in managed code (#1551) First iteration of Azure Functions Custom .NET Host(Validated in Windows) * Adding support for linux cold start (#1594) * Adding support for linux cold start. * Using native "get_hostfxr_path" method from "nethost". Removed PathResolver code (which was our version to do the same thing) * Update build YAML to copy all files instead of just .exe. * Linted yaml file. fixed the copy step to copy only needed dependencies * YAML * Get the NativeApplication instance from pointer and call the methods instead of static method call. * Revert "Get the NativeApplication instance from pointer and call the methods instead of static method call." This reverts commit 2f54a1c. * Using NET8 Preview4. * NET6 support on Debian * Version bump for DotNetIsolatedNativeHost package * Add net6.0;net7.0; to TargetFrameworks. * Removing the shim for Windows. * Rebase on main + used csproj from origin main. Updated dotnetworker.csprok to include net6.0;net7.0; * Removed preivew tag(VersionSuffix) for now. Will add as needed when ready to release the packages. * Nit fixes to address PR feedback(indentation, copyright notice) * Added accidently deleted using statement block * Updating release notes. * Added a global.json for the FunctionsNetHost src directory to use .NET8 since our root level one uses 7.0. We use .NET AOT compiler to publish the FunctionsNetHost. * Fixed the version to 8.0.100-preview * Added "includePreviewVersions: true" to "Install current .NET SDK" build step. * Switching version to 8.0.100-preview.6 and "rollForward" value to "latestMinor" in FunctionsNetHost/src/global.json * Specifically set 7.0.306 in Install current .NET SDK step * Add a new UseDotnet task to install .net8 preview 6 in install-dotnet.yml * set includePreviewVersions true for new step * usesGlobalJson false for new UseDotnet task * use specific version 8.0.100-preview.6.23330.14
- Loading branch information
Showing
56 changed files
with
1,172 additions
and
1,451 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio Version 17 | ||
VisualStudioVersion = 17.5.33627.172 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FunctionsNetHost", "FunctionsNetHost\FunctionsNetHost.csproj", "{6C05D0AC-F6AC-45FB-8A73-A3F44DF131BC}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{6C05D0AC-F6AC-45FB-8A73-A3F44DF131BC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{6C05D0AC-F6AC-45FB-8A73-A3F44DF131BC}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{6C05D0AC-F6AC-45FB-8A73-A3F44DF131BC}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{6C05D0AC-F6AC-45FB-8A73-A3F44DF131BC}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(ExtensibilityGlobals) = postSolution | ||
SolutionGuid = {32F98336-4B56-47A5-806E-0D1CC5F9F48B} | ||
EndGlobalSection | ||
EndGlobal |
Oops, something went wrong.