We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 529cdcc commit 1c0aaadCopy full SHA for 1c0aaad
Build.ps1
@@ -108,14 +108,14 @@ try
108
109
if ($SkipSamples -eq $false)
110
{
111
- foreach ($src in Get-ChildItem "$PSScriptRoot/samples/**/*.csproj" -File)
+ foreach ($src in Get-ChildItem "$PSScriptRoot/sample/**/*.csproj" -File)
112
113
try
114
115
Push-Location $src.DirectoryName
116
117
echo "build: Building sample project $( $src.FullName )"
118
- & dotnet pack -c Release -o ..\..\artifacts
+ & dotnet build -c Release -o ..\..\artifacts
119
if ($LASTEXITCODE -ne 0)
120
121
echo "Error returned by dotnet build. Aborting build."
0 commit comments