Created
April 26, 2025 03:20
-
-
Save danmoseley/251d8c506c1c64695fc11ae17d85269b to your computer and use it in GitHub Desktop.
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
@echo off | |
setlocal enabledelayedexpansion | |
set "inputfile=combos" | |
for /f "usebackq delims=" %%a in ("%inputfile%") do ( | |
rd /s/q Foo | |
echo ======================== | |
md Foo | |
pushd Foo | |
echo Running: ########## %%a ############# | |
call %%a | |
echo -------------------- | |
dotnet build | |
if errorlevel 1 goto :eof | |
echo. | |
echo. | |
popd | |
) | |
endlocal | |
dotnet new aspire-apphost | |
dotnet new aspire | |
dotnet new aspire-servicedefaults | |
dotnet new aspire-starter | |
dotnet new aspire-starter --use-redis-cache | |
dotnet new aspire-starter -t mstest | |
dotnet new aspire-starter -t none | |
dotnet new aspire-starter -t nunit | |
dotnet new aspire-starter -t xunit.net | |
dotnet new aspire-starter -t xunit.net --xunit-version v2 | |
dotnet new aspire-starter -t xunit.net --xunit-version v3 | |
dotnet new aspire-starter -t xunit.net --xunit-version v3mtp | |
dotnet new aspire-mstest | |
dotnet new aspire-nunit | |
dotnet new aspire-xunit --xunit-version v2 | |
dotnet new aspire-xunit --xunit-version v3 | |
dotnet new aspire-xunit --xunit-version v3mtp | |
dotnet new aspire-apphost -f net8.0 | |
dotnet new aspire -f net8.0 | |
dotnet new aspire-servicedefaults -f net8.0 | |
dotnet new aspire-starter -f net8.0 | |
dotnet new aspire-starter --use-redis-cache -f net8.0 | |
dotnet new aspire-starter -t mstest -f net8.0 | |
dotnet new aspire-starter -t none -f net8.0 | |
dotnet new aspire-starter -t nunit -f net8.0 | |
dotnet new aspire-starter -t xunit.net -f net8.0 | |
dotnet new aspire-starter -t xunit.net --xunit-version v2 -f net8.0 | |
dotnet new aspire-starter -t xunit.net --xunit-version v3 -f net8.0 | |
dotnet new aspire-starter -t xunit.net --xunit-version v3mtp -f net8.0 | |
dotnet new aspire-mstest -f net8.0 | |
dotnet new aspire-nunit -f net8.0 | |
dotnet new aspire-xunit --xunit-version v2 -f net8.0 | |
dotnet new aspire-xunit --xunit-version v3 -f net8.0 | |
dotnet new aspire-xunit --xunit-version v3mtp -f net8.0 | |
dotnet new aspire-apphost --aspire-version 9.2 | |
dotnet new aspire --aspire-version 9.2 | |
dotnet new aspire-servicedefaults --aspire-version 9.2 | |
dotnet new aspire-starter --aspire-version 9.2 | |
dotnet new aspire-starter --use-redis-cache --aspire-version 9.2 | |
dotnet new aspire-starter -t mstest --aspire-version 9.2 | |
dotnet new aspire-starter -t none --aspire-version 9.2 | |
dotnet new aspire-starter -t nunit --aspire-version 9.2 | |
dotnet new aspire-starter -t xunit.net --aspire-version 9.2 | |
dotnet new aspire-starter -t xunit.net --xunit-version v2 --aspire-version 9.2 | |
dotnet new aspire-starter -t xunit.net --xunit-version v3 --aspire-version 9.2 | |
dotnet new aspire-starter -t xunit.net --xunit-version v3mtp --aspire-version 9.2 | |
dotnet new aspire-mstest --aspire-version 9.2 | |
dotnet new aspire-nunit --aspire-version 9.2 | |
dotnet new aspire-xunit --xunit-version v2 --aspire-version 9.2 | |
dotnet new aspire-xunit --xunit-version v3 --aspire-version 9.2 | |
dotnet new aspire-xunit --xunit-version v3mtp --aspire-version 9.2 | |
dotnet new aspire-apphost -f net8.0 --aspire-version 9.2 | |
dotnet new aspire -f net8.0 --aspire-version 9.2 | |
dotnet new aspire-servicedefaults -f net8.0 --aspire-version 9.2 | |
dotnet new aspire-starter -f net8.0 --aspire-version 9.2 | |
dotnet new aspire-starter --use-redis-cache -f net8.0 --aspire-version 9.2 | |
dotnet new aspire-starter -t mstest -f net8.0 --aspire-version 9.2 | |
dotnet new aspire-starter -t none -f net8.0 --aspire-version 9.2 | |
dotnet new aspire-starter -t nunit -f net8.0 --aspire-version 9.2 | |
dotnet new aspire-starter -t xunit.net -f net8.0 --aspire-version 9.2 | |
dotnet new aspire-starter -t xunit.net --xunit-version v2 -f net8.0 --aspire-version 9.2 | |
dotnet new aspire-starter -t xunit.net --xunit-version v3 -f net8.0 --aspire-version 9.2 | |
dotnet new aspire-starter -t xunit.net --xunit-version v3mtp -f net8.0 --aspire-version 9.2 | |
dotnet new aspire-mstest -f net8.0 --aspire-version 9.2 | |
dotnet new aspire-nunit -f net8.0 --aspire-version 9.2 | |
dotnet new aspire-xunit --xunit-version v2 -f net8.0 --aspire-version 9.2 | |
dotnet new aspire-xunit --xunit-version v3 -f net8.0 --aspire-version 9.2 | |
dotnet new aspire-xunit --xunit-version v3mtp -f net8.0 --aspire-version 9.2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment