Constants.cs 588 B

1234567891011121314151617181920
  1. using System;
  2. namespace CakeScript
  3. {
  4. partial class Program
  5. {
  6. const string FRLOGO192PNG = "frlogo192.png";
  7. const string MIT_LICENSE = "FastReport MIT license.md";
  8. const string NET_LICENSE = "FastReport .NET-license.md";
  9. const string tfmStandard20 = ".NETStandard2.0";
  10. const string tfmStandard21 = ".NETStandard2.1";
  11. const string tfmNet40 = ".NETFramework4.0";
  12. const string tfmCore30 = ".NETCoreApp3.0";
  13. const string tfmCore31 = ".NETCoreApp3.1";
  14. const string tfmNet5win7 = "net5.0-windows7.0";
  15. }
  16. }