diff options
Diffstat (limited to 'src/dtf/appveyor.cmd')
-rw-r--r-- | src/dtf/appveyor.cmd | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/dtf/appveyor.cmd b/src/dtf/appveyor.cmd new file mode 100644 index 00000000..6dd50c8a --- /dev/null +++ b/src/dtf/appveyor.cmd | |||
@@ -0,0 +1,28 @@ | |||
1 | @setlocal | ||
2 | @pushd %~dp0 | ||
3 | @set _C=Release | ||
4 | @set _P=%~dp0build\%_C%\publish | ||
5 | |||
6 | nuget restore || exit /b | ||
7 | |||
8 | msbuild -p:Configuration=%_C% || exit /b | ||
9 | |||
10 | msbuild src\Tools\SfxCA\SfxCA.vcxproj -p:Configuration=%_C% -p:Platform="x64" -p:OutputPath="%_P%\WixToolset.Dtf.MSBuild\tools\\" || exit /b | ||
11 | msbuild src\Tools\SfxCA\SfxCA.vcxproj -p:Configuration=%_C% -p:Platform="x86" -p:OutputPath="%_P%\WixToolset.Dtf.MSBuild\tools\\" || exit /b | ||
12 | |||
13 | msbuild src\Tools\MakeSfxCA\MakeSfxCA.csproj -p:Configuration=%_C% -p:TargetFramework="net461" -p:OutputPath="%_P%\WixToolset.Dtf.MSBuild\tools\net461" || exit /b | ||
14 | msbuild src\Tools\MakeSfxCA\MakeSfxCA.csproj -p:Configuration=%_C% -p:TargetFramework="netcoreapp3.1" -p:OutputPath="%_P%\WixToolset.Dtf.MSBuild\tools\netcoreapp3.1" || exit /b | ||
15 | |||
16 | msbuild src\WixToolset.Dtf.MSBuild\WixToolset.Dtf.MSBuild.csproj -p:Configuration=%_C% -p:OutputPath="%_P%\WixToolset.Dtf.MSBuild" || exit /b | ||
17 | msbuild src\WixToolset.Dtf.MSBuild\WixToolset.Dtf.MSBuild.csproj -target:Pack -p:Configuration=%_C% || exit /b | ||
18 | |||
19 | msbuild -t:Pack -p:Configuration=%_C% src\WixToolset.Dtf.Compression || exit /b | ||
20 | msbuild -t:Pack -p:Configuration=%_C% src\WixToolset.Dtf.Compression.Cab || exit /b | ||
21 | msbuild -t:Pack -p:Configuration=%_C% src\WixToolset.Dtf.Compression.Zip || exit /b | ||
22 | msbuild -t:Pack -p:Configuration=%_C% src\WixToolset.Dtf.Resources || exit /b | ||
23 | msbuild -t:Pack -p:Configuration=%_C% src\WixToolset.Dtf.WindowsInstaller || exit /b | ||
24 | msbuild -t:Pack -p:Configuration=%_C% src\WixToolset.Dtf.WindowsInstaller.Linq || exit /b | ||
25 | msbuild -t:Pack -p:Configuration=%_C% src\WixToolset.Dtf.WindowsInstaller.Package || exit /b | ||
26 | |||
27 | @popd | ||
28 | @endlocal \ No newline at end of file | ||