/SparkleLib/Defines.cs.in

http://github.com/hbons/SparkleShare · Autoconf · 31 lines · 26 code · 5 blank · 0 comment · 1 complexity · 7e3783f444fef1da0e619b508587710b MD5 · raw file

  1. // SparkleShare, a collaboration and sharing tool.
  2. // Copyright (C) 2010 Hylke Bons <hylkebons@gmail.com>
  3. //
  4. // This program is free software: you can redistribute it and/or modify
  5. // it under the terms of the GNU Lesser General Public License as
  6. // published by the Free Software Foundation, either version 3 of the
  7. // License, or (at your option) any later version.
  8. //
  9. // This program is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. // GNU General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU General Public License
  15. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. using System;
  17. using System.Reflection;
  18. [assembly:AssemblyTitle ("SparkleLib")]
  19. [assembly:AssemblyVersion ("@VERSION@")]
  20. [assembly:AssemblyCopyright ("Copyright (c) 2010 Hylke Bons and others")]
  21. [assembly:AssemblyTrademark ("SparkleShare is a trademark of SparkleShare Ltd.")]
  22. namespace SparkleLib {
  23. public class Defines {
  24. public const string INSTALL_DIR = "@expanded_datadir@/sparkleshare";
  25. }
  26. }