diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-12-19 22:26:10 -0600 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-12-19 22:26:10 -0600 |
commit | 61c33d4eafbc9c4a8f12003d46b5027e27beb175 (patch) | |
tree | 0b390af371c66ca02d25006e5cfede5778705a59 | |
parent | f080e4944749268529e3686c9e26704e4b942929 (diff) | |
download | wix-61c33d4eafbc9c4a8f12003d46b5027e27beb175.tar.gz wix-61c33d4eafbc9c4a8f12003d46b5027e27beb175.tar.bz2 wix-61c33d4eafbc9c4a8f12003d46b5027e27beb175.zip |
Don't allow warnings.
-rw-r--r-- | appveyor.cmd | 4 | ||||
-rw-r--r-- | global.json | 2 | ||||
-rw-r--r-- | src/TestData/MsiTransaction/BundleAv1/BundleAv1.wixproj | 5 | ||||
-rw-r--r-- | src/TestData/MsiTransaction/BundleAv2/BundleAv2.wixproj | 5 | ||||
-rw-r--r-- | src/TestData/MsiTransaction/BundleBv1/BundleBv1.wixproj | 4 | ||||
-rw-r--r-- | src/TestData/MsiTransaction/BundleBv2/BundleBv2.wixproj | 5 | ||||
-rw-r--r-- | src/TestData/TestBA/TestBAWixlib/testbawixlib.wixproj | 2 | ||||
-rw-r--r-- | src/Utilities/TestBA/TestBA.csproj | 2 |
8 files changed, 16 insertions, 13 deletions
diff --git a/appveyor.cmd b/appveyor.cmd index b0283678..eeb56296 100644 --- a/appveyor.cmd +++ b/appveyor.cmd | |||
@@ -2,8 +2,8 @@ | |||
2 | @pushd %~dp0 | 2 | @pushd %~dp0 |
3 | @set _C=Release | 3 | @set _C=Release |
4 | 4 | ||
5 | msbuild -p:Configuration=%_C% -Restore || exit /b | 5 | msbuild -p:Configuration=%_C% -warnaserror -Restore || exit /b |
6 | msbuild -p:Configuration=%_C% src\TestData -Restore || exit /b | 6 | msbuild -p:Configuration=%_C% src\TestData -warnaserror -Restore || exit /b |
7 | 7 | ||
8 | dotnet test -c %_C% --no-build src\WixToolsetTest.BurnE2E || exit /b | 8 | dotnet test -c %_C% --no-build src\WixToolsetTest.BurnE2E || exit /b |
9 | 9 | ||
diff --git a/global.json b/global.json index d614f6f5..01b177c2 100644 --- a/global.json +++ b/global.json | |||
@@ -1,6 +1,6 @@ | |||
1 | { | 1 | { |
2 | "msbuild-sdks": { | 2 | "msbuild-sdks": { |
3 | "WixToolset.Sdk": "4.0.0-build-0172" | 3 | "WixToolset.Sdk": "4.0.0-build-0175" |
4 | }, | 4 | }, |
5 | "sdk": { | 5 | "sdk": { |
6 | "allowPrerelease": false | 6 | "allowPrerelease": false |
diff --git a/src/TestData/MsiTransaction/BundleAv1/BundleAv1.wixproj b/src/TestData/MsiTransaction/BundleAv1/BundleAv1.wixproj index 1e4806f3..a819e928 100644 --- a/src/TestData/MsiTransaction/BundleAv1/BundleAv1.wixproj +++ b/src/TestData/MsiTransaction/BundleAv1/BundleAv1.wixproj | |||
@@ -2,6 +2,7 @@ | |||
2 | <Project Sdk="WixToolset.Sdk"> | 2 | <Project Sdk="WixToolset.Sdk"> |
3 | <PropertyGroup> | 3 | <PropertyGroup> |
4 | <OutputType>Bundle</OutputType> | 4 | <OutputType>Bundle</OutputType> |
5 | <SuppressSpecificWarnings>1151</SuppressSpecificWarnings> | ||
5 | </PropertyGroup> | 6 | </PropertyGroup> |
6 | <ItemGroup> | 7 | <ItemGroup> |
7 | <ProjectReference Include="..\..\TestBA\TestBAWixlib\testbawixlib.wixproj" /> | 8 | <ProjectReference Include="..\..\TestBA\TestBAWixlib\testbawixlib.wixproj" /> |
@@ -10,7 +11,7 @@ | |||
10 | <ProjectReference Include="..\PackageCv1\PackageCv1.wixproj" /> | 11 | <ProjectReference Include="..\PackageCv1\PackageCv1.wixproj" /> |
11 | </ItemGroup> | 12 | </ItemGroup> |
12 | <ItemGroup> | 13 | <ItemGroup> |
13 | <PackageReference Include="WixToolset.Bal.wixext" Version="4.0.72" /> | 14 | <PackageReference Include="WixToolset.Bal.wixext" Version="4.0.75" /> |
14 | <PackageReference Include="WixToolset.NetFx.wixext" Version="4.0.54" /> | 15 | <PackageReference Include="WixToolset.NetFx.wixext" Version="4.0.56" /> |
15 | </ItemGroup> | 16 | </ItemGroup> |
16 | </Project> \ No newline at end of file | 17 | </Project> \ No newline at end of file |
diff --git a/src/TestData/MsiTransaction/BundleAv2/BundleAv2.wixproj b/src/TestData/MsiTransaction/BundleAv2/BundleAv2.wixproj index 509e1a0e..0bdef393 100644 --- a/src/TestData/MsiTransaction/BundleAv2/BundleAv2.wixproj +++ b/src/TestData/MsiTransaction/BundleAv2/BundleAv2.wixproj | |||
@@ -2,6 +2,7 @@ | |||
2 | <Project Sdk="WixToolset.Sdk"> | 2 | <Project Sdk="WixToolset.Sdk"> |
3 | <PropertyGroup> | 3 | <PropertyGroup> |
4 | <OutputType>Bundle</OutputType> | 4 | <OutputType>Bundle</OutputType> |
5 | <SuppressSpecificWarnings>1151</SuppressSpecificWarnings> | ||
5 | <Version>2.0.0.0</Version> | 6 | <Version>2.0.0.0</Version> |
6 | </PropertyGroup> | 7 | </PropertyGroup> |
7 | <ItemGroup> | 8 | <ItemGroup> |
@@ -11,7 +12,7 @@ | |||
11 | <ProjectReference Include="..\PackageD\PackageD.wixproj" /> | 12 | <ProjectReference Include="..\PackageD\PackageD.wixproj" /> |
12 | </ItemGroup> | 13 | </ItemGroup> |
13 | <ItemGroup> | 14 | <ItemGroup> |
14 | <PackageReference Include="WixToolset.Bal.wixext" Version="4.0.72" /> | 15 | <PackageReference Include="WixToolset.Bal.wixext" Version="4.0.75" /> |
15 | <PackageReference Include="WixToolset.NetFx.wixext" Version="4.0.54" /> | 16 | <PackageReference Include="WixToolset.NetFx.wixext" Version="4.0.56" /> |
16 | </ItemGroup> | 17 | </ItemGroup> |
17 | </Project> \ No newline at end of file | 18 | </Project> \ No newline at end of file |
diff --git a/src/TestData/MsiTransaction/BundleBv1/BundleBv1.wixproj b/src/TestData/MsiTransaction/BundleBv1/BundleBv1.wixproj index bd22c3c6..9718ff2d 100644 --- a/src/TestData/MsiTransaction/BundleBv1/BundleBv1.wixproj +++ b/src/TestData/MsiTransaction/BundleBv1/BundleBv1.wixproj | |||
@@ -8,7 +8,7 @@ | |||
8 | <ProjectReference Include="..\PackageBv1\PackageBv1.wixproj" /> | 8 | <ProjectReference Include="..\PackageBv1\PackageBv1.wixproj" /> |
9 | </ItemGroup> | 9 | </ItemGroup> |
10 | <ItemGroup> | 10 | <ItemGroup> |
11 | <PackageReference Include="WixToolset.Bal.wixext" Version="4.0.72" /> | 11 | <PackageReference Include="WixToolset.Bal.wixext" Version="4.0.75" /> |
12 | <PackageReference Include="WixToolset.NetFx.wixext" Version="4.0.54" /> | 12 | <PackageReference Include="WixToolset.NetFx.wixext" Version="4.0.56" /> |
13 | </ItemGroup> | 13 | </ItemGroup> |
14 | </Project> \ No newline at end of file | 14 | </Project> \ No newline at end of file |
diff --git a/src/TestData/MsiTransaction/BundleBv2/BundleBv2.wixproj b/src/TestData/MsiTransaction/BundleBv2/BundleBv2.wixproj index a3693dd2..ef62c033 100644 --- a/src/TestData/MsiTransaction/BundleBv2/BundleBv2.wixproj +++ b/src/TestData/MsiTransaction/BundleBv2/BundleBv2.wixproj | |||
@@ -2,6 +2,7 @@ | |||
2 | <Project Sdk="WixToolset.Sdk"> | 2 | <Project Sdk="WixToolset.Sdk"> |
3 | <PropertyGroup> | 3 | <PropertyGroup> |
4 | <OutputType>Bundle</OutputType> | 4 | <OutputType>Bundle</OutputType> |
5 | <SuppressSpecificWarnings>1151</SuppressSpecificWarnings> | ||
5 | <Version>2.0.0.0</Version> | 6 | <Version>2.0.0.0</Version> |
6 | </PropertyGroup> | 7 | </PropertyGroup> |
7 | <ItemGroup> | 8 | <ItemGroup> |
@@ -11,7 +12,7 @@ | |||
11 | <ProjectReference Include="..\PackageF\PackageF.wixproj" /> | 12 | <ProjectReference Include="..\PackageF\PackageF.wixproj" /> |
12 | </ItemGroup> | 13 | </ItemGroup> |
13 | <ItemGroup> | 14 | <ItemGroup> |
14 | <PackageReference Include="WixToolset.Bal.wixext" Version="4.0.72" /> | 15 | <PackageReference Include="WixToolset.Bal.wixext" Version="4.0.75" /> |
15 | <PackageReference Include="WixToolset.NetFx.wixext" Version="4.0.54" /> | 16 | <PackageReference Include="WixToolset.NetFx.wixext" Version="4.0.56" /> |
16 | </ItemGroup> | 17 | </ItemGroup> |
17 | </Project> \ No newline at end of file | 18 | </Project> \ No newline at end of file |
diff --git a/src/TestData/TestBA/TestBAWixlib/testbawixlib.wixproj b/src/TestData/TestBA/TestBAWixlib/testbawixlib.wixproj index 65aab644..18713d5a 100644 --- a/src/TestData/TestBA/TestBAWixlib/testbawixlib.wixproj +++ b/src/TestData/TestBA/TestBAWixlib/testbawixlib.wixproj | |||
@@ -12,6 +12,6 @@ | |||
12 | <ProjectReference Include="..\..\..\Utilities\TestBA\TestBA.csproj" /> | 12 | <ProjectReference Include="..\..\..\Utilities\TestBA\TestBA.csproj" /> |
13 | </ItemGroup> | 13 | </ItemGroup> |
14 | <ItemGroup> | 14 | <ItemGroup> |
15 | <PackageReference Include="WixToolset.Bal.wixext" Version="4.0.72" /> | 15 | <PackageReference Include="WixToolset.Bal.wixext" Version="4.0.75" /> |
16 | </ItemGroup> | 16 | </ItemGroup> |
17 | </Project> \ No newline at end of file | 17 | </Project> \ No newline at end of file |
diff --git a/src/Utilities/TestBA/TestBA.csproj b/src/Utilities/TestBA/TestBA.csproj index e03a4b06..f23235b9 100644 --- a/src/Utilities/TestBA/TestBA.csproj +++ b/src/Utilities/TestBA/TestBA.csproj | |||
@@ -15,7 +15,7 @@ | |||
15 | </ItemGroup> | 15 | </ItemGroup> |
16 | 16 | ||
17 | <ItemGroup> | 17 | <ItemGroup> |
18 | <PackageReference Include="WixToolset.Mba.Core" Version="4.0.44" /> | 18 | <PackageReference Include="WixToolset.Mba.Core" Version="4.0.45" /> |
19 | </ItemGroup> | 19 | </ItemGroup> |
20 | 20 | ||
21 | <ItemGroup> | 21 | <ItemGroup> |