Giter Club home page Giter Club logo

Comments (5)

 avatar commented on July 30, 2024

I have a similar issue. No clue how to resolve it, and it's seriously bothering me during development on my own project.

from sharpyaml.

 avatar commented on July 30, 2024

I've tracked this down to AnchorSerializer.cs. Disabling anchoring and aliases would resolve this issue, yet I cannot find any documentation on how to do this.

from sharpyaml.

 avatar commented on July 30, 2024

YamlSharp.Serializer.Settings.EmitAlias is set to 'true' by default. I thought setting it to 'false' would disable this behavior, but rather, it increased it. Now, every variable was given an anchor tag, due to the fact that aliases (but no anchors) were now disabled. @xoofx, is there really no way to outright disable outputting anchors when Serializer.Serialize(object) is called?

from sharpyaml.

 avatar commented on July 30, 2024

Issue #15 ("How do I get Serialize() to stop putting out anchor and reference labels?") was about this same thing, actually, and the response of setting 'SortKeyForMapping' and 'EmitAlias' both to false before serializing simply does not resolve this (at least not anymore). For now, switching to JSON over YAML seems like a good option due to readability concerns.

from sharpyaml.

xoofx avatar xoofx commented on July 30, 2024

You have to use SerializerSettings and disable aliasing.

using System;
using SharpYaml.Serialization;

namespace SharpYaml.Tests
{
    internal class Program
    {
        public static void Main(string[] args)
        {
            var settings = new SerializerSettings {EmitAlias = false};
            var serializer = new Serializer(settings);
            var tester = new Tester() { A = "this is a", B = "this is a"};
            var text = serializer.Serialize(tester);
            Console.WriteLine(text);
        }

        public struct Tester
        {
            public string A { get; set; }

            public string B { get; set; }
        }
    }
}

from sharpyaml.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.