Conversation
パッケージ管理の中央化とバージョン指定の変更 `Directory.Packages.props` に中央管理用のプロパティグループを追加し、複数のパッケージバージョンを指定しました。 `DurableMultiAgentTemplate.Client.csproj` と `DurableMultiAgentTemplate.Test.csproj` では、パッケージ参照のバージョン指定を削除し、バージョンなしでの参照に変更しました。 `DurableMultiAgentTemplate.csproj` でも同様に、いくつかのパッケージ参照のバージョン指定を削除し、`UserSecretsId` を変更しました。 最後に、`CopyGrpcNativeAssetsToOutDir` ターゲットを削除しました。
Contributor
There was a problem hiding this comment.
Pull Request Overview
Update Durable Functions to v3, centralize NuGet package version management, and configure local Azurite launch for debugging.
- Added local function dependencies for Application Insights and emulator-backed storage to auto-start Azurite.
- Removed explicit
<PackageReference>versions in individual projects and introducedDirectory.Packages.propsfor central package versioning. - Enabled central package management and pinned all common dependencies in
Directory.Packages.props.
Reviewed Changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| DurableMultiAgentTemplate/Properties/serviceDependencies.local.json | Added Application Insights and storage emulator entries for Azurite |
| DurableMultiAgentTemplate/DurableMultiAgentTemplate.csproj | Stripped per-project package versions to use central versioning |
| DurableMultiAgentTemplate.Test/DurableMultiAgentTemplate.Test.csproj | Stripped per-project test package versions to use central versioning |
| DurableMultiAgentTemplate.Client/DurableMultiAgentTemplate.Client.csproj | Stripped per-project client package versions to use central versioning |
| Directory.Packages.props | Introduced central package versions and enabled central management |
Comments suppressed due to low confidence (1)
DurableMultiAgentTemplate/Properties/serviceDependencies.local.json:1
- The file begins with a BOM character (U+FEFF) which may not be recognized by all JSON parsers. Consider removing the BOM or ensuring the Functions runtime tolerates it.
{
07JP27
approved these changes
May 24, 2025
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
#59