diff options
author | Rob Mensching <rob@firegiant.com> | 2021-04-08 07:29:26 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2021-04-08 07:33:08 -0700 |
commit | a3fcca48e4258f37ce2f51502f7863942e8b23fe (patch) | |
tree | 7dad7afa711251fb30e3ebb035570bdce0898957 /src/wixext | |
parent | 660671d107d44965856ba8d40106c6565521bcdc (diff) | |
download | wix-a3fcca48e4258f37ce2f51502f7863942e8b23fe.tar.gz wix-a3fcca48e4258f37ce2f51502f7863942e8b23fe.tar.bz2 wix-a3fcca48e4258f37ce2f51502f7863942e8b23fe.zip |
Update dependencies
Diffstat (limited to 'src/wixext')
-rw-r--r-- | src/wixext/WixToolset.UI.wixext.csproj | 13 | ||||
-rw-r--r-- | src/wixext/WixToolset.UI.wixext.nuspec | 23 |
2 files changed, 30 insertions, 6 deletions
diff --git a/src/wixext/WixToolset.UI.wixext.csproj b/src/wixext/WixToolset.UI.wixext.csproj index 5300e78f..67c949b2 100644 --- a/src/wixext/WixToolset.UI.wixext.csproj +++ b/src/wixext/WixToolset.UI.wixext.csproj | |||
@@ -7,23 +7,24 @@ | |||
7 | <RootNamespace>WixToolset.UI</RootNamespace> | 7 | <RootNamespace>WixToolset.UI</RootNamespace> |
8 | <Description>WiX Toolset UI Extension</Description> | 8 | <Description>WiX Toolset UI Extension</Description> |
9 | <Title>WiX Toolset UI Extension</Title> | 9 | <Title>WiX Toolset UI Extension</Title> |
10 | <IsTool>true</IsTool> | 10 | <DebugType>embedded</DebugType> |
11 | <ContentTargetFolders>build</ContentTargetFolders> | 11 | <IncludeSymbols>true</IncludeSymbols> |
12 | </PropertyGroup> | 12 | </PropertyGroup> |
13 | |||
13 | <ItemGroup> | 14 | <ItemGroup> |
14 | <Content Include="$(MSBuildThisFileName).targets" /> | ||
15 | <EmbeddedResource Include="$(OutputPath)..\ui.wixlib" /> | 15 | <EmbeddedResource Include="$(OutputPath)..\ui.wixlib" /> |
16 | </ItemGroup> | 16 | </ItemGroup> |
17 | |||
17 | <ItemGroup> | 18 | <ItemGroup> |
18 | <PackageReference Include="WixToolset.Data" Version="4.0.*" PrivateAssets="all" /> | 19 | <ProjectReference Include="..\wixlib\ui.wixproj" ReferenceOutputAssembly="false" Condition=" '$(NCrunch)'=='' " /> |
19 | <PackageReference Include="WixToolset.Extensibility" Version="4.0.*" PrivateAssets="all" /> | ||
20 | </ItemGroup> | 20 | </ItemGroup> |
21 | 21 | ||
22 | <ItemGroup> | 22 | <ItemGroup> |
23 | <ProjectReference Include="..\wixlib\ui.wixproj" ReferenceOutputAssembly="false" Condition=" '$(NCrunch)'=='' " /> | 23 | <PackageReference Include="WixToolset.Extensibility" Version="4.0.*" PrivateAssets="all" /> |
24 | </ItemGroup> | 24 | </ItemGroup> |
25 | 25 | ||
26 | <ItemGroup> | 26 | <ItemGroup> |
27 | <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" /> | ||
27 | <PackageReference Include="Nerdbank.GitVersioning" Version="3.3.37" PrivateAssets="All" /> | 28 | <PackageReference Include="Nerdbank.GitVersioning" Version="3.3.37" PrivateAssets="All" /> |
28 | </ItemGroup> | 29 | </ItemGroup> |
29 | </Project> | 30 | </Project> |
diff --git a/src/wixext/WixToolset.UI.wixext.nuspec b/src/wixext/WixToolset.UI.wixext.nuspec new file mode 100644 index 00000000..51c9708e --- /dev/null +++ b/src/wixext/WixToolset.UI.wixext.nuspec | |||
@@ -0,0 +1,23 @@ | |||
1 | <?xml version="1.0"?> | ||
2 | <package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
3 | <metadata minClientVersion="4.0"> | ||
4 | <id>$id$</id> | ||
5 | <version>$version$</version> | ||
6 | <title>$title$</title> | ||
7 | <description>$description$</description> | ||
8 | <authors>$authors$</authors> | ||
9 | <license type="expression">MS-RL</license> | ||
10 | <requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
11 | <copyright>$copyright$</copyright> | ||
12 | <projectUrl>$projectUrl$</projectUrl> | ||
13 | <repository type="$repositorytype$" url="$repositoryurl$" commit="$repositorycommit$" /> | ||
14 | </metadata> | ||
15 | |||
16 | <files> | ||
17 | <file src="$projectFolder$$id$.targets" target="build" /> | ||
18 | |||
19 | <file src="netstandard2.0\$id$.dll" target="tools" /> | ||
20 | |||
21 | <file src="x86\*.pdb" target="pdbs\x86" /> | ||
22 | </files> | ||
23 | </package> | ||