Directory.Build.props 903 B

1234567891011121314151617181920
  1. <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  2. <PropertyGroup>
  3. <PackageId>Jint</PackageId>
  4. <AssemblyTitle>Jint</AssemblyTitle>
  5. <Description>Javascript interpreter for .NET which provides full ECMA 5.1 compliance.</Description>
  6. <VersionPrefix>2.11.$(BuildNumber)</VersionPrefix>
  7. <VersionSuffix></VersionSuffix>
  8. <PackageId>Jint</PackageId>
  9. <PackageTags>javascript, interpreter</PackageTags>
  10. <PackageProjectUrl>https://github.com/sebastienros/jint</PackageProjectUrl>
  11. <PackageLicenseUrl>https://raw.githubusercontent.com/sebastienros/jint/master/LICENSE.txt</PackageLicenseUrl>
  12. <RepositoryType>git</RepositoryType>
  13. <RepositoryUrl>git://github.com/sebastienros/jint</RepositoryUrl>
  14. </PropertyGroup>
  15. <!-- Called after so that the <VersionSuffix> is built after the local ones -->
  16. <Import Project="../Common.props"/>
  17. </Project>