From df3a3eba860a853495579bdb32ec6e00aa7a67f2 Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Sun, 3 Jan 2021 15:25:43 -0600 Subject: Update dependencies. --- NetFx.wixext.sln | 2 ++ appveyor.cmd | 5 ++--- global.json | 2 +- src/Cpp.Build.props | 8 ++++++++ src/CustomizedNativeRecommendedRules.ruleset | 8 ++++++++ src/wixext/WixToolset.Netfx.wixext.csproj | 15 ++++++++++++--- src/wixext/WixToolset.Netfx.wixext.nuspec | 26 ++++++++++++++++++++++++++ src/wixlib/netfx.wixproj | 6 ++++++ 8 files changed, 65 insertions(+), 7 deletions(-) create mode 100644 src/CustomizedNativeRecommendedRules.ruleset create mode 100644 src/wixext/WixToolset.Netfx.wixext.nuspec diff --git a/NetFx.wixext.sln b/NetFx.wixext.sln index 94047f8d..e830aeea 100644 --- a/NetFx.wixext.sln +++ b/NetFx.wixext.sln @@ -27,6 +27,7 @@ Global {F72D34CA-48DA-4DFD-91A9-A0C78BEF6981}.Debug|x86.ActiveCfg = Debug|Win32 {F72D34CA-48DA-4DFD-91A9-A0C78BEF6981}.Debug|x86.Build.0 = Debug|Win32 {F72D34CA-48DA-4DFD-91A9-A0C78BEF6981}.Release|Any CPU.ActiveCfg = Release|Win32 + {F72D34CA-48DA-4DFD-91A9-A0C78BEF6981}.Release|Any CPU.Build.0 = Release|Win32 {F72D34CA-48DA-4DFD-91A9-A0C78BEF6981}.Release|x64.ActiveCfg = Release|Win32 {F72D34CA-48DA-4DFD-91A9-A0C78BEF6981}.Release|x86.ActiveCfg = Release|Win32 {F72D34CA-48DA-4DFD-91A9-A0C78BEF6981}.Release|x86.Build.0 = Release|Win32 @@ -36,6 +37,7 @@ Global {45E4A6AC-3190-4E17-83F0-9935FFA5DC2B}.Debug|x86.ActiveCfg = Debug|x86 {45E4A6AC-3190-4E17-83F0-9935FFA5DC2B}.Debug|x86.Build.0 = Debug|x86 {45E4A6AC-3190-4E17-83F0-9935FFA5DC2B}.Release|Any CPU.ActiveCfg = Release|x86 + {45E4A6AC-3190-4E17-83F0-9935FFA5DC2B}.Release|Any CPU.Build.0 = Release|x86 {45E4A6AC-3190-4E17-83F0-9935FFA5DC2B}.Release|x64.ActiveCfg = Release|x86 {45E4A6AC-3190-4E17-83F0-9935FFA5DC2B}.Release|x86.ActiveCfg = Release|x86 {45E4A6AC-3190-4E17-83F0-9935FFA5DC2B}.Release|x86.Build.0 = Release|x86 diff --git a/appveyor.cmd b/appveyor.cmd index 50bd492d..2e91654b 100644 --- a/appveyor.cmd +++ b/appveyor.cmd @@ -3,12 +3,11 @@ nuget restore || exit /b -msbuild -p:Configuration=Release -t:Restore || exit /b +msbuild -p:Configuration=Release -Restore || exit /b -msbuild -p:Configuration=Release src\test\WixToolsetTest.Netfx\WixToolsetTest.Netfx.csproj || exit /b dotnet test -c Release --no-build src\test\WixToolsetTest.Netfx || exit /b -msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.NetFx.wixext.csproj || exit /b +msbuild -p:Configuration=Release -p:NoBuild=true -t:Pack src\wixext\WixToolset.NetFx.wixext.csproj || exit /b @popd @endlocal \ No newline at end of file diff --git a/global.json b/global.json index 6d38bce4..70abf3dd 100644 --- a/global.json +++ b/global.json @@ -1,5 +1,5 @@ { "msbuild-sdks": { - "WixToolset.Sdk": "4.0.0-build-0175" + "WixToolset.Sdk": "4.0.0-build-0176" } } diff --git a/src/Cpp.Build.props b/src/Cpp.Build.props index 9b7a1bb5..e7bba117 100644 --- a/src/Cpp.Build.props +++ b/src/Cpp.Build.props @@ -6,12 +6,20 @@ Win32 $(BaseIntermediateOutputPath)$(Configuration)\$(Platform)\ $(OutputPath)$(Platform)\ + + + $(Company) + $(Copyright) $([Microsoft.Build.Utilities.ToolLocationHelper]::GetLatestSDKTargetPlatformVersion('Windows', '10.0')) + + $(MSBuildThisFileDirectory)CustomizedNativeRecommendedRules.ruleset + + $(DisableSpecificCompilerWarnings) diff --git a/src/CustomizedNativeRecommendedRules.ruleset b/src/CustomizedNativeRecommendedRules.ruleset new file mode 100644 index 00000000..142b141c --- /dev/null +++ b/src/CustomizedNativeRecommendedRules.ruleset @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/src/wixext/WixToolset.Netfx.wixext.csproj b/src/wixext/WixToolset.Netfx.wixext.csproj index 725b9c39..2e59f0c4 100644 --- a/src/wixext/WixToolset.Netfx.wixext.csproj +++ b/src/wixext/WixToolset.Netfx.wixext.csproj @@ -7,9 +7,10 @@ WixToolset.Netfx WiX Toolset .NET Framework Extension WiX Toolset .NET Framework Extension - true - true - build + embedded + $(MSBuildThisFileName).nuspec + true + Id=$(MSBuildThisFileName);Authors=$(Authors);Copyright=$(Copyright);Description=$(Description);Title=$(Title) @@ -18,6 +19,7 @@ + @@ -29,4 +31,11 @@ + + + + $(OutputPath)..\ + $(NuspecProperties);Version=$(BuildVersionSimple);RepositoryCommit=$(SourceRevisionId);RepositoryType=$(RepositoryType);RepositoryUrl=$(PrivateRepositoryUrl);ProjectFolder=$(MSBuildThisFileDirectory) + + diff --git a/src/wixext/WixToolset.Netfx.wixext.nuspec b/src/wixext/WixToolset.Netfx.wixext.nuspec new file mode 100644 index 00000000..280ccad5 --- /dev/null +++ b/src/wixext/WixToolset.Netfx.wixext.nuspec @@ -0,0 +1,26 @@ + + + + $id$ + $version$ + $authors$ + $authors$ + MS-RL + https://github.com/wixtoolset/Netfx.wixext + false + $title$ + $description$ + $copyright$ + + + + + + + + + + + + + diff --git a/src/wixlib/netfx.wixproj b/src/wixlib/netfx.wixproj index 8ee73326..efe66e8e 100644 --- a/src/wixlib/netfx.wixproj +++ b/src/wixlib/netfx.wixproj @@ -27,4 +27,10 @@ + + + + + + -- cgit v1.2.3-55-g6feb