Skip to content

Commit

Permalink
Added missing file.
Browse files Browse the repository at this point in the history
  • Loading branch information
Canming Huang committed Jun 7, 2024
1 parent 05b9f3a commit c8785b8
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions cmake/Emgu.TF.Protobuf.Directory.Build.props.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<?xml version="1.0"?>
<Project>
<PropertyGroup>
<PackageId>${EMGUTF_PROTOBUF_NUGET_ID}</PackageId>
<title>${EMGUTF_PROTOBUF_NUGET_TITLE}</title>
<version>${CPACK_PACKAGE_VERSION}${TENSORFLOW_VERSION_SUFFIX}</version>
<authors>${CPACK_PACKAGE_VENDOR}</authors>
<owners>${CPACK_PACKAGE_VENDOR}</owners>
<summary>Protobuf generated Tensorflow classes for Emgu TF</summary>
<Description>Emgu TF is a cross platform .Net wrapper for the Google Tensorflow library. Allows Tensorflow functions to be called from .NET compatible languages such as C#, VB, VC++, IronPython.</Description>
<PackageReleaseNotes>This is the Emgu.TF.Protobuf component for the ${CPACK_PACKAGE_VERSION}${TENSORFLOW_VERSION_SUFFIX} release of Emgu TF. For online documentation please visit
http://www.emgu.com/wiki/files/emgutf/${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}/document/</PackageReleaseNotes>

<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageIcon>nuget_icon.png</PackageIcon>
<PackageReadmeFile>docs/README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<RepositoryUrl>${GITHUB_REPO_URL}</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<PackageOutputPath>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\..\platforms\nuget))</PackageOutputPath>
<PackageTags>tensorflow emgu emgutf ai protobuf</PackageTags>
<PackageProjectUrl>${NUGET_EMGU_URL}</PackageProjectUrl>
<copyright>© ${CPACK_PACKAGE_VENDOR} ${CURRENT_YEAR}. All rights reserved.</copyright>

</PropertyGroup>

<ItemGroup>
<None Include="..\..\LICENSE.txt">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="..\..\miscellaneous\nuget_icon.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<None Include="docs\README.md">
<Pack>True</Pack>
<PackagePath>docs\</PackagePath>
</None>
</ItemGroup>

<!-- https://learn.microsoft.com/en-us/visualstudio/msbuild/customize-by-directory?view=vs-2022 -->
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))" />
${EMGUTF_POST_PROCESS_BINARY}
</Project>

0 comments on commit c8785b8

Please sign in to comment.