Skip to content

Commit

Permalink
Merge pull request #2 from microsoft/scottj1s_nuget
Browse files Browse the repository at this point in the history
nuget package
  • Loading branch information
Scottj1s authored Oct 3, 2019
2 parents 6eb23fe + 7358caa commit 04f13a5
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 0 deletions.
23 changes: 23 additions & 0 deletions nuget/Microsoft.Windows.WinMD.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata minClientVersion="2.5">
<id>Microsoft.Windows.WinMD</id>
<version>1.0.0.0</version>
<title>Windows Metadata Parsing Library</title>
<authors>Microsoft</authors>
<owners>Microsoft</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Microsoft.Windows.WinMD is a pure C++ header library for parsing Windows Metadata (WinMD) files.</description>
<releaseNotes></releaseNotes>
<tags>native C++ WinRT WinMD nativepackage</tags>
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
<license type="file">LICENSE</license>
<projectUrl>https://github.com/Microsoft/winmd/tree/master/</projectUrl>
</metadata>
<files>
<file src="..\LICENSE"/>
<file src="..\src\**\*.h"/>
<file src="Microsoft.Windows.WinMD.props"/>
<file src="readme.txt"/>
</files>
</package>
18 changes: 18 additions & 0 deletions nuget/Microsoft.Windows.WinMD.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!--
***********************************************************************************************
Copyright (C) Microsoft Corporation. All rights reserved.
***********************************************************************************************
-->
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

<PropertyGroup>
<WinMDPackageDir>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)))</WinMDPackageDir>
</PropertyGroup>

<ItemDefinitionGroup>
<ClCompile>
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories);$(WinMDPackageDir)</AdditionalIncludeDirectories>
</ClCompile>
</ItemDefinitionGroup>

</Project>
7 changes: 7 additions & 0 deletions nuget/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Microsoft.Windows.WinMD NuGet Package

## Overview

Please visit [Microsoft.Windows.WinMD](https://www.nuget.org/packages/Microsoft.Windows.WinMD/) for official Microsoft-signed builds of the NuGet package.

The Microsoft.Windows.WinMD NuGet package provides a pure C++ header metadata parsing library. Adding a reference to this package adds the library to the project's additional include directories. For details on library use, please consult the Microsoft.Windows.WinMD github repo's [readme.md](https://github.com/microsoft/winmd/blob/master/README.md).
11 changes: 11 additions & 0 deletions nuget/readme.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
========================================================================
Microsoft.Windows.WinMD C++ metadata parsing library
========================================================================

The Microsoft.Windows.WinMD NuGet package provides a pure C++ header metadata parsing library.
Adding a reference to this package adds the library to the project's additional include directories.

========================================================================
For more information, visit:
https://github.com/microsoft/winmd/
========================================================================

0 comments on commit 04f13a5

Please sign in to comment.