1234567891011121314151617181920 |
- using System;
- namespace CakeScript
- {
- partial class Program
- {
- const string FRLOGO192PNG = "frlogo192.png";
- const string MIT_LICENSE = "FastReport MIT license.md";
- const string NET_LICENSE = "FastReport .NET-license.md";
- const string tfmStandard20 = ".NETStandard2.0";
- const string tfmStandard21 = ".NETStandard2.1";
- const string tfmNet40 = ".NETFramework4.0";
- const string tfmCore30 = ".NETCoreApp3.0";
- const string tfmCore31 = ".NETCoreApp3.1";
- const string tfmNet5win7 = "net5.0-windows7.0";
- }
- }
|