Releases: FabricatorsGuild/FG.AutoLogger
Releases · FabricatorsGuild/FG.AutoLogger
Release-1.5.1.9
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
Allow content includes to be Updated not Included
Release-1.5.1.7
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
Added support for CPS projects with wildcard removes in (referencing FG.Utils 1.2.0)
Release-1.5.1.5
Use extension methods from reference to AutoLogger.Model
Release-1.5.1.2
Problem with Assembly version in released tool, this version upgrades tool assembly version to the same as the release.
Release-1.5.1.1
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
- Fixed Implicit TypeTemplate handling for nullable types
Release-1.5.0.2
- Fixed updates of project files where only properties/metadata have changed
- Fixed schema writer
Release-1.5.0.1
Fixed bug with native dlls in output path crashing the discovery loader