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

Update F# project and package versions #1445

Merged
merged 3 commits into from
Sep 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Azure.Functions.Worker" Version="1.19.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="1.14.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="1.14.1" />
</ItemGroup>
<ItemGroup>
<None Update="host.json">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Azure.Functions.Worker" Version="1.19.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="1.14.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="1.14.1" />
</ItemGroup>
<ItemGroup>
<None Include="host.json">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
open Microsoft.Extensions.Hosting
open Microsoft.Azure.Functions.Worker

[<EntryPoint>]
let main args =
Expand All @@ -7,5 +8,13 @@ let main args =
.ConfigureFunctionsWorkerDefaults()
.Build()

// If using the Cosmos, Blob or Tables extension, you will need configure the extensions manually using the extension methods below.
// Learn more about this here: https://go.microsoft.com/fwlink/?linkid=2245587
// ConfigureFunctionsWorkerDefaults(fun (context: HostBuilderContext) (appBuilder: IFunctionsWorkerApplicationBuilder) ->
// appBuilder.ConfigureCosmosDBExtension() |> ignore
// appBuilder.ConfigureBlobStorageExtension() |> ignore
// appBuilder.ConfigureTablesExtension() |> ignore
// ) |> ignore

host.Run()
0
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"args": {
"referenceType": "package",
"reference": "Microsoft.Azure.Functions.Worker.Extensions.Storage.Blobs",
"version": "6.0.0",
"version": "6.2.0",
"projectFileExtensions": ".fsproj"
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"type": "parameter",
"defaultValue": "collectionName",
"replaces": "CollectionValue"
}
}
},
"primaryOutputs": [
{
Expand All @@ -51,7 +51,8 @@
"ManualInstructions": [],
"args": {
"referenceType": "package",
"reference": "Microsoft.Azure.Functions.Worker.Extensions.CosmosDB", "version": "4.3.0",
"reference": "Microsoft.Azure.Functions.Worker.Extensions.CosmosDB",
"version": "4.4.2",
"projectFileExtensions": ".fsproj"
}
},
Expand All @@ -72,4 +73,4 @@
"continueOnError": true
}
]
}
}