File tree Expand file tree Collapse file tree 5 files changed +9
-17
lines changed
Expand file tree Collapse file tree 5 files changed +9
-17
lines changed Original file line number Diff line number Diff line change 1313 "installTFsec" : true
1414 },
1515 "ghcr.io/devcontainers/features/dotnet:2" : {
16- "version" : " 8 .0"
16+ "version" : " 9 .0"
1717 },
1818 "ghcr.io/azure/azure-dev/azd:latest" : {
1919 "version" : " 1.18.1"
3232 " ms-vscode.makefile-tools" ,
3333 " DavidAnson.vscode-markdownlint" ,
3434 " golang.go" ,
35- " azapi-vscode.azapi" ,
3635 " ms-azuretools.vscode-azureterraform" ,
3736 " terraform-linters.tflint-vscode" ,
38- " microsoft-IsvExpTools.powerplatform-vscode" ,
3937 " ms-vscode.azurecli" ,
4038 " bierner.markdown-mermaid" ,
4139 " ms-dotnettools.csharp" ,
Original file line number Diff line number Diff line change @@ -13,21 +13,15 @@ tflint --init
1313
1414# Install PowerApps CLI (Microsoft.PowerApps.CLI.Tool)
1515echo " Installing PowerApps CLI..."
16- dotnet tool install --global Microsoft.PowerApps.CLI.Tool --version 1.43.6
16+ dotnet tool install --global Microsoft.PowerApps.CLI.Tool --version 1.49.3
1717
1818# Restore .NET packages including Microsoft.Agents.CopilotStudio.Client
1919echo " Restoring .NET packages..."
20- if [ -f " Directory.Build.props " ]; then
21- dotnet restore
22- echo " .NET packages restored successfully!"
20+ if [ -f " tests/Copilot/CopilotTests.csproj " ]; then
21+ dotnet restore tests/Copilot/CopilotTests.csproj
22+ echo " Copilot project packages restored successfully!"
2323else
24- # Fallback to individual project restore
25- if [ -f " tests/Copilot/CopilotTests.csproj" ]; then
26- dotnet restore tests/Copilot/CopilotTests.csproj
27- echo " Copilot project packages restored successfully!"
28- else
29- echo " No .NET projects found, skipping package restore"
30- fi
24+ echo " No .NET projects found, skipping package restore"
3125fi
3226
3327echo " Post-create setup completed successfully!"
Original file line number Diff line number Diff line change 11<Project >
22
33 <PropertyGroup >
4- <TargetFramework >net8 .0</TargetFramework >
4+ <TargetFramework >net9 .0</TargetFramework >
55 <ImplicitUsings >enable</ImplicitUsings >
66 <Nullable >enable</Nullable >
77 <LangVersion >latest</LangVersion >
Original file line number Diff line number Diff line change 11{
22 "sdk" : {
3- "version" : " 8 .0.412 "
3+ "version" : " 9 .0.305 "
44 }
55}
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22
33 <PropertyGroup >
4- <TargetFramework >net8 .0</TargetFramework >
4+ <TargetFramework >net9 .0</TargetFramework >
55 <ImplicitUsings >enable</ImplicitUsings >
66 <Nullable >enable</Nullable >
77 <IsPackable >false</IsPackable >
You can’t perform that action at this time.
0 commit comments