aboutsummaryrefslogtreecommitdiff
path: root/appveyor.cmd
blob: 6f7eb18dfb0738c76bcf22d93614b459fbacb729 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@setlocal
@pushd %~dp0
@set _P=%~dp0build\Release\publish

dotnet build -c Release src\test\WixToolsetTest.BuildTasks
dotnet build -c Release src\test\WixToolsetTest.CoreIntegration
dotnet build -c Release src\test\WixToolsetTest.LightIntegration

dotnet publish -c Release -o %_P%\netcoreapp2.1 -r win-x86 src\wix
dotnet publish -c Release -o %_P%\net461 -r win-x86 src\light
dotnet publish -c Release -o %_P%\net461 -r win-x86 src\WixToolset.BuildTasks

dotnet pack -c Release src\WixToolset.Core.InternalPackage
dotnet pack -c Release src\WixToolset.Core.TestPackage

@popd
@endlocal