mirror of
https://github.com/ckaczor/WixFileVersionExtension.git
synced 2026-01-14 01:25:44 -05:00
Lower framework requirements and add nuspec
This commit is contained in:
@@ -10,7 +10,7 @@
|
|||||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||||
<RootNamespace>WixFileVersionExtension</RootNamespace>
|
<RootNamespace>WixFileVersionExtension</RootNamespace>
|
||||||
<AssemblyName>WixFileVersionExtension</AssemblyName>
|
<AssemblyName>WixFileVersionExtension</AssemblyName>
|
||||||
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
|
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
|
||||||
<FileAlignment>512</FileAlignment>
|
<FileAlignment>512</FileAlignment>
|
||||||
<SccProjectName>
|
<SccProjectName>
|
||||||
</SccProjectName>
|
</SccProjectName>
|
||||||
@@ -40,6 +40,7 @@
|
|||||||
<IsWebBootstrapper>false</IsWebBootstrapper>
|
<IsWebBootstrapper>false</IsWebBootstrapper>
|
||||||
<UseApplicationTrust>false</UseApplicationTrust>
|
<UseApplicationTrust>false</UseApplicationTrust>
|
||||||
<BootstrapperEnabled>true</BootstrapperEnabled>
|
<BootstrapperEnabled>true</BootstrapperEnabled>
|
||||||
|
<TargetFrameworkProfile />
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
<DebugSymbols>true</DebugSymbols>
|
<DebugSymbols>true</DebugSymbols>
|
||||||
@@ -90,6 +91,7 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Include="LICENSE.md" />
|
<None Include="LICENSE.md" />
|
||||||
<None Include="README.md" />
|
<None Include="README.md" />
|
||||||
|
<None Include="WixFileVersionExtension.nuspec" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||||
|
|||||||
15
WixFileVersionExtension.nuspec
Normal file
15
WixFileVersionExtension.nuspec
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
|
||||||
|
<metadata>
|
||||||
|
<id>WixFileVersionExtension</id>
|
||||||
|
<version>$version$</version>
|
||||||
|
<authors>Chris Kaczor</authors>
|
||||||
|
<description>A WiX extension to read values from FileVersionInfo for a file on disk.</description>
|
||||||
|
<projectUrl>https://github.com/ckaczor/WixFileVersionExtension</projectUrl>
|
||||||
|
<licenseUrl>https://raw.githubusercontent.com/ckaczor/WixFileVersionExtension/master/LICENSE.md</licenseUrl>
|
||||||
|
<tags>wix</tags>
|
||||||
|
</metadata>
|
||||||
|
<files>
|
||||||
|
<file src="bin\$configuration$\WixFileVersionExtension.dll" target="lib" />
|
||||||
|
</files>
|
||||||
|
</package>
|
||||||
Reference in New Issue
Block a user