Coder Social home page Coder Social logo

Comments (10)

IgorBuchelnikov avatar IgorBuchelnikov commented on May 24, 2024

The current repository version is unstable (I'm working on v.2.0).
Stable versions are in NuGet packages only.
What version of the NuGet package do you use?
What error do you encounter?
Please, provide some code.

from observablecomputations.

IgorBuchelnikov avatar IgorBuchelnikov commented on May 24, 2024

If you want to build, check out the revision whose comment contains the version of the NuGet package you are using. That revision also contains documentation that is relevant to the NuGet package.

For example, if you use v1.4.0:

Revision id: af0e50f

Url to download sources for v.1.4.0: https://github.com/IgorBuchelnikov/ObservableComputations/archive/af0e50ffa7376b160ae8fb3c0b9c1709779fb961.zip

Url to view repository of v1.4.0: https://github.com/IgorBuchelnikov/ObservableComputations/tree/af0e50ffa7376b160ae8fb3c0b9c1709779fb961

from observablecomputations.

asusralis avatar asusralis commented on May 24, 2024

Thank you for the help! I was able to build it from the link you sent, and Unity gave no problems.

from observablecomputations.

IgorBuchelnikov avatar IgorBuchelnikov commented on May 24, 2024

Please let me know how you fixed the build issue. I want to fix future NuGet packages.

from observablecomputations.

asusralis avatar asusralis commented on May 24, 2024

Fixed it for Unity? I just built the project you sent and used the .net standard 2.0 output. The build from the nuget, if I remember correctly, wouldn't load because of a missing dependency or something.

from observablecomputations.

IgorBuchelnikov avatar IgorBuchelnikov commented on May 24, 2024

Can you please put here the build log from the NuGet?

from observablecomputations.

asusralis avatar asusralis commented on May 24, 2024

Sorry, I didn't see this. I can shortly ) I've been loving this library, by the way; super useful with Noesis GUI!

from observablecomputations.

asusralis avatar asusralis commented on May 24, 2024

I get this:

Unloading broken assembly Assets/Plugins/ObservableComputations/ObservableComputations.dll, this assembly can cause crashes in the runtime

Error: Could not load signature of ObservableComputations.Ordering`2[TSourceItem,TOrderingValue]:get_SortDirectionScalar due to: Could not resolve type with token 01000044 (from typeref, class/assembly System.ComponentModel.ListSortDirection, System.ComponentModel.TypeConverter, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a) assembly:System.ComponentModel.TypeConverter, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a type:System.ComponentModel.ListSortDirection member:(null) signature:

from observablecomputations.

IgorBuchelnikov avatar IgorBuchelnikov commented on May 24, 2024

Thank you for response! I cannot reproduce the error on my machine, so your additional help is needed.
Please execute in your app following code:

Assembly assembly = AppDomain.CurrentDomain.GetAssemblies().Single(a =>a.FullName.Contains("System.ComponentModel.TypeConverter"));

Console.WriteLine(assembly.CodeBase);
Console.WriteLine(assembly.FullName);
TypeInfo typeInfo = assembly.DefinedTypes.SingleOrDefault(t => t.Name.Contains("ListSortDirection"));
if (typeInfo != null)
    Console.WriteLine(typeInfo.AssemblyQualifiedName);

Send me output and System.ComponentModel.TypeConverter.dll assembly located in the directory pointed by "assembly.CodeBase"

from observablecomputations.

IgorBuchelnikov avatar IgorBuchelnikov commented on May 24, 2024

There is no response from the issue opener for a long time

from observablecomputations.

Related Issues (12)

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.