-
Notifications
You must be signed in to change notification settings - Fork 179
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Nuget package for managed (.NET) projects
Signed-off-by: Maxime Gervais <[email protected]>
- Loading branch information
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netcoreapp2.1</TargetFramework> | ||
<RootNamespace>MediaInfoLib.Wrapper</RootNamespace> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Compile Include="..\..\..\Source\MediaInfoDLL\MediaInfoDLL.cs" Link="MediaInfoDLL.cs" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/2012/06/nuspec.xsd"> | ||
<metadata> | ||
<id>MediaInfoLib.Wrapper</id> | ||
<version>18.8.1</version> | ||
<title>MediaInfoLib DLL wrapper for .NET projects</title> | ||
<authors>MediaArea.net</authors> | ||
<owners>MediaArea.net</owners> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<licenseUrl>https://github.com/MediaArea/MediaInfoLib/blob/master/LICENSE</licenseUrl> | ||
<projectUrl>https://mediaarea.net/MediaInfo</projectUrl> | ||
<iconUrl>https://mediaarea.net/_/img/MediaInfo_90x90.png</iconUrl> | ||
<description>MediaInfo is a convenient unified display of the most relevant technical and tag data for video and audio files.</description> | ||
<copyright>Copyright (c) MediaArea.net SARL.</copyright> | ||
<language>en-US</language> | ||
<tags>mediainfo mediainfolib libmediainfo</tags> | ||
<dependencies> | ||
<group targetFramework=".NETStandard2.0" /> | ||
</dependencies> | ||
</metadata> | ||
</package> |