Skip to content
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
2 changes: 1 addition & 1 deletion src/scenarios/mauiandroid/pre.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

# Use context manager to temporarily merge MAUI's NuGet feeds into repo config
# This ensures dotnet package search, dotnet new, and dotnet build/publish have access to MAUI packages
with MauiNuGetConfigContext(precommands.framework):
with MauiNuGetConfigContext(precommands):
install_latest_maui(precommands)
precommands.print_dotnet_info()
# Setup the Maui folder - will use merged NuGet.config with MAUI feeds
Expand Down
2 changes: 1 addition & 1 deletion src/scenarios/mauiandroidinnerloop/pre.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

precommands = PreCommands()

with MauiNuGetConfigContext(precommands.framework):
with MauiNuGetConfigContext(precommands):
install_latest_maui(
precommands,
workloads=["microsoft.net.sdk.android"],
Expand Down
2 changes: 1 addition & 1 deletion src/scenarios/mauiblazorandroid/pre.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

# Use context manager to temporarily merge MAUI's NuGet feeds into repo config
# This ensures dotnet package search, dotnet new, and dotnet build/publish have access to MAUI packages
with MauiNuGetConfigContext(precommands.framework):
with MauiNuGetConfigContext(precommands):
install_latest_maui(precommands)
precommands.print_dotnet_info()
# Setup the Maui folder - will use merged NuGet.config with MAUI feeds
Expand Down
2 changes: 1 addition & 1 deletion src/scenarios/mauiblazordesktop/pre.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

# Use context manager to temporarily merge MAUI's NuGet feeds into repo config
# This ensures dotnet package search, dotnet new, and dotnet build/publish have access to MAUI packages
with MauiNuGetConfigContext(precommands.framework):
with MauiNuGetConfigContext(precommands):
install_latest_maui(precommands)
precommands.print_dotnet_info()
precommands.new(template='maui-blazor',
Expand Down
2 changes: 1 addition & 1 deletion src/scenarios/mauiblazorios/pre.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

# Use context manager to temporarily merge MAUI's NuGet feeds into repo config
# This ensures dotnet package search, dotnet new, and dotnet build/publish have access to MAUI packages
with MauiNuGetConfigContext(precommands.framework):
with MauiNuGetConfigContext(precommands):
install_latest_maui(precommands)
precommands.print_dotnet_info()
# Setup the Maui folder - will use merged NuGet.config with MAUI feeds
Expand Down
2 changes: 1 addition & 1 deletion src/scenarios/mauidesktop/pre.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

# Use context manager to temporarily merge MAUI's NuGet feeds into repo config
# This ensures dotnet package search, dotnet new, and dotnet build/publish have access to MAUI packages
with MauiNuGetConfigContext(precommands.framework):
with MauiNuGetConfigContext(precommands):
install_latest_maui(precommands)
precommands.print_dotnet_info()
precommands.new(template='maui',
Expand Down
2 changes: 1 addition & 1 deletion src/scenarios/mauiios/pre.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

# Use context manager to temporarily merge MAUI's NuGet feeds into repo config
# This ensures dotnet package search, dotnet new, and dotnet build/publish have access to MAUI packages
with MauiNuGetConfigContext(precommands.framework):
with MauiNuGetConfigContext(precommands):
install_latest_maui(precommands)
precommands.print_dotnet_info()
# Setup the Maui folder - will use merged NuGet.config with MAUI feeds
Expand Down
2 changes: 1 addition & 1 deletion src/scenarios/mauisamplecontentandroid/pre.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

# Use context manager to temporarily merge MAUI's NuGet feeds into repo config
# This ensures dotnet package search, dotnet new, and dotnet build/publish have access to MAUI packages
with MauiNuGetConfigContext(precommands.framework):
with MauiNuGetConfigContext(precommands):
install_latest_maui(precommands)
precommands.print_dotnet_info()
# Setup the Maui folder - will use merged NuGet.config with MAUI feeds
Expand Down
2 changes: 1 addition & 1 deletion src/scenarios/mauisamplecontentios/pre.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

# Use context manager to temporarily merge MAUI's NuGet feeds into repo config
# This ensures dotnet package search, dotnet new, and dotnet build/publish have access to MAUI packages
with MauiNuGetConfigContext(precommands.framework):
with MauiNuGetConfigContext(precommands):
install_latest_maui(precommands)
precommands.print_dotnet_info()
# Setup the Maui folder - will use merged NuGet.config with MAUI feeds
Expand Down
2 changes: 1 addition & 1 deletion src/scenarios/netandroid/pre.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

precommands = PreCommands()

with MauiNuGetConfigContext(precommands.framework):
with MauiNuGetConfigContext(precommands):
install_latest_maui(precommands)
precommands.print_dotnet_info()

Expand Down
2 changes: 1 addition & 1 deletion src/scenarios/netios/pre.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

precommands = PreCommands()

with MauiNuGetConfigContext(precommands.framework):
with MauiNuGetConfigContext(precommands):
install_latest_maui(precommands)
precommands.print_dotnet_info()

Expand Down
Loading
Loading