Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add chocolatey-recommended metadata #30

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions pkg/vswhere/vswhere.nuproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,20 @@
<ItemGroup>
<ProjectReference Include="..\..\src\vswhere\vswhere.vcxproj">
<PackageDirectory>Tools</PackageDirectory>
<PackageOutputGroups>BuiltProjectOutputGroup;BuiltProjectOutputGroupDependencies;</PackageOutputGroups>
<PackageOutputGroups>
BuiltProjectOutputGroup;
BuiltProjectOutputGroupDependencies;
</PackageOutputGroups>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Content Include="build\vswhere.props" />
<Content Include="tools\VERIFICATION.txt" />
<Content Include="..\..\LICENSE.txt">
<Link>tools\LICENSE.txt</Link>
</Content>
<None Include="packages.config" />
<Content Include="build\vswhere.props" />
<Content Include="tools\VERIFICATION.txt" />
<None Include="vswhere.nuspec" />
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>87c09ce6-ba2d-4fc3-92e4-44253e87cb69</ProjectGuid>
Expand All @@ -42,17 +46,18 @@
<Owners>Microsoft Corporation</Owners>
<Summary>Locate Visual Studio 2017 and newer installations </Summary>
<Description>Locate Visual Studio 2017 and newer installations </Description>
<ReleaseNotes>
</ReleaseNotes>
<ProjectUrl>https://github.com/Microsoft/vswhere</ProjectUrl>
<LicenseUrl>https://github.com/Microsoft/vswhere/raw/develop/LICENSE.txt</LicenseUrl>
<Copyright>Copyright (C) Microsoft Corporation. All rights reserved.</Copyright>
<DevelopmentDependency>true</DevelopmentDependency>
<Tags>vs vs2017 visualstudio</Tags>
<GenerateSymbolPackage>false</GenerateSymbolPackage>
<NuSpecTemplate>vswhere.nuspec</NuSpecTemplate>
</PropertyGroup>
<Target Name="GetPackageVersion" DependsOnTargets="GetBuildVersion">
<PropertyGroup>
<Version>$(BuildVersionSimple)</Version>
<ReleaseNotes>https://github.com/Microsoft/vswhere/releases/tag/$(PackageVersion)</ReleaseNotes>
</PropertyGroup>
</Target>
<Import Project="$(NuProjPath)\NuProj.targets" />
Expand Down
21 changes: 21 additions & 0 deletions pkg/vswhere/vswhere.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>vswhere</id>
<version>__VALUE_FROM_NUPROJ__</version>
<title>__VALUE_FROM_NUPROJ__</title>
<authors>__VALUE_FROM_NUPROJ__</authors>
<owners>__VALUE_FROM_NUPROJ__</owners>
<licenseUrl>__VALUE_FROM_NUPROJ__</licenseUrl>
<projectUrl>__VALUE_FROM_NUPROJ__</projectUrl>
<description>__VALUE_FROM_NUPROJ__</description>
<summary>__VALUE_FROM_NUPROJ__</summary>
<releaseNotes>__VALUE_FROM_NUPROJ__</releaseNotes>
<copyright>__VALUE_FROM_NUPROJ__</copyright>
<tags>__VALUE_FROM_NUPROJ__</tags>
<packageSourceUrl>https://github.com/Microsoft/vswhere/tree/master/pkg/vswhere</packageSourceUrl>
<docsUrl>https://github.com/Microsoft/vswhere/wiki</docsUrl>
<bugTrackerUrl>https://github.com/Microsoft/vswhere/issues</bugTrackerUrl>
<projectSourceUrl>https://github.com/Microsoft/vswhere/tree/master</projectSourceUrl>
</metadata>
</package>