Skip to content

Releases: FabricatorsGuild/FG.AutoLogger

Release-1.5.1.9

28 Mar 14:39

Choose a tag to compare

Fixed exception on tool when loading new CPS projects.
Fixed AI renderer to not crash on duplicate properties set for telemetry

Release-1.5.1.8

31 Jan 12:24

Choose a tag to compare

Allow content includes to be Updated not Included

Release-1.5.1.7

30 Jan 09:47

Choose a tag to compare

Support default output paths for CPS projects also, taking into account

  • TargetFramework
  • RuntimeIdentifier
  • Platform
  • Configuration
    Trying to find output first for AnyCPU then x64

Release-1.5.1.6

29 Jan 13:21

Choose a tag to compare

Added support for CPS projects with wildcard removes in (referencing FG.Utils 1.2.0)

Release-1.5.1.5

29 Jan 10:36

Choose a tag to compare

Use extension methods from reference to AutoLogger.Model

Release-1.5.1.2

29 Jan 08:31

Choose a tag to compare

Problem with Assembly version in released tool, this version upgrades tool assembly version to the same as the release.

Release-1.5.1.1

26 Jan 09:30

Choose a tag to compare

Define TypeTemplates in code instead of json.

public class TemplateEmployee : BaseTemplateExtension<Employee>
{
    public override string Module => @"Samples";

    protected override void BuildArguments(TypeTemplate<Employee> config)
    {
        config
            .AddAllProperties().Except("DontLogMe", "Reports")
            .AddArgument(x => x.Company.Id)
            .AddArgument(x => x.Id)
            .AddArgument(x => x.SomeDate ?? DateTime.MinValue);
    }
}

Release-1.5.0.3

19 Jan 19:10

Choose a tag to compare

  • Fixed Implicit TypeTemplate handling for nullable types

Release-1.5.0.2

19 Jan 09:11

Choose a tag to compare

  • Fixed updates of project files where only properties/metadata have changed
  • Fixed schema writer

Release-1.5.0.1

18 Jan 23:04

Choose a tag to compare

Fixed bug with native dlls in output path crashing the discovery loader