This commit is contained in:
Sean Hall 2020-06-18 21:44:23 +10:00
Родитель 420b302964
Коммит e39bb78e89
3 изменённых файлов: 16 добавлений и 16 удалений

Просмотреть файл

@ -1,22 +1,22 @@
@setlocal
@pushd %~dp0
nuget restore
nuget restore || exit /b
msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v140
msbuild -p:Configuration=Release;Platform=x64;PlatformToolset=v140
msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v140 || exit /b
msbuild -p:Configuration=Release;Platform=x64;PlatformToolset=v140 || exit /b
msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v141
msbuild -p:Configuration=Release;Platform=x64;PlatformToolset=v141
msbuild -p:Configuration=Release;Platform=ARM;PlatformToolset=v141
msbuild -p:Configuration=Release;Platform=ARM64;PlatformToolset=v141
msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v141 || exit /b
msbuild -p:Configuration=Release;Platform=x64;PlatformToolset=v141 || exit /b
msbuild -p:Configuration=Release;Platform=ARM;PlatformToolset=v141 || exit /b
msbuild -p:Configuration=Release;Platform=ARM64;PlatformToolset=v141 || exit /b
msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v142
msbuild -p:Configuration=Release;Platform=x64;PlatformToolset=v142
msbuild -p:Configuration=Release;Platform=ARM;PlatformToolset=v142
msbuild -p:Configuration=Release;Platform=ARM64;PlatformToolset=v142
msbuild -p:Configuration=Release;Platform=x86;PlatformToolset=v142 || exit /b
msbuild -p:Configuration=Release;Platform=x64;PlatformToolset=v142 || exit /b
msbuild -p:Configuration=Release;Platform=ARM;PlatformToolset=v142 || exit /b
msbuild -p:Configuration=Release;Platform=ARM64;PlatformToolset=v142 || exit /b
msbuild -p:Configuration=Release -t:PackNativeNuget src\wcautil\wcautil.vcxproj
msbuild -p:Configuration=Release -t:PackNativeNuget src\wcautil\wcautil.vcxproj || exit /b
@popd
@endlocal

Просмотреть файл

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Nerdbank.GitVersioning" version="2.1.65" developmentDependency="true" targetFramework="net40" />
<package id="WixToolset.DUtil" version="4.0.20" targetFramework="native" />
<package id="WixToolset.DUtil" version="4.0.28" targetFramework="native" />
</packages>

Просмотреть файл

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\packages\WixToolset.DUtil.4.0.20\build\WixToolset.DUtil.props" Condition="Exists('..\..\packages\WixToolset.DUtil.4.0.20\build\WixToolset.DUtil.props')" />
<Import Project="..\..\packages\WixToolset.DUtil.4.0.28\build\WixToolset.DUtil.props" Condition="Exists('..\..\packages\WixToolset.DUtil.4.0.28\build\WixToolset.DUtil.props')" />
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|ARM">
<Configuration>Debug</Configuration>
@ -98,6 +98,6 @@
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
</PropertyGroup>
<Error Condition="!Exists('..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets'))" />
<Error Condition="!Exists('..\..\packages\WixToolset.DUtil.4.0.20\build\WixToolset.DUtil.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.DUtil.4.0.20\build\WixToolset.DUtil.props'))" />
<Error Condition="!Exists('..\..\packages\WixToolset.DUtil.4.0.28\build\WixToolset.DUtil.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.DUtil.4.0.28\build\WixToolset.DUtil.props'))" />
</Target>
</Project>