Lower framework requirements and add nuspec

This commit is contained in:
2018-02-12 17:36:39 -05:00
parent 886307c4af
commit be2a0bd4ce
2 changed files with 18 additions and 1 deletions

View File

@@ -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.

View 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>