Ups version to 1.0.4 and adds nuspec file for distributing VSTestHost DLL as a reference assembly.

This commit is contained in:
Steve Dower 2016-03-08 16:01:54 -08:00
Родитель 72f87f4b76
Коммит 58afe1fdcc
2 изменённых файлов: 19 добавлений и 2 удалений

Просмотреть файл

@ -29,8 +29,8 @@ using System.Runtime.InteropServices;
[assembly: CLSCompliant(false)]
[assembly: NeutralResourcesLanguage("en-US")]
[assembly: AssemblyVersion(AssemblyVersionInfo.VSVersion + ".0.3.0")]
[assembly: AssemblyFileVersion(AssemblyVersionInfo.VSVersion + ".0.3.0")]
[assembly: AssemblyVersion(AssemblyVersionInfo.VSVersion + ".0.4.0")]
[assembly: AssemblyFileVersion(AssemblyVersionInfo.VSVersion + ".0.4.0")]
class AssemblyVersionInfo {
#if DEV10

Просмотреть файл

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Microsoft.VisualStudioTools.VSTestHost.$VSTarget$</id>
<version>1.0.4</version>
<authors>Microsoft Corporation</authors>
<owners>Microsoft Corporation</owners>
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<projectUrl>https://github.com/Microsoft/VisualStudio-TestHost</projectUrl>
<description>Allows UI testing of the Visual Studio IDE.</description>
<summary>Allows UI testing of the Visual Studio IDE.</summary>
</metadata>
<files>
<file src="..\BuildOutput\Release$VSTarget$\raw\Microsoft.VisualStudioTools.VSTestHost.$VSTarget$.dll" target="lib\net45"/>
</files>
</package>