Code Monkey home page Code Monkey logo

core's People

Contributors

antonfirsov avatar dlemstra avatar iamcarbon avatar jimbobsquarepants avatar mertsch avatar synercoder avatar tocsoft avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

core's Issues

Missing contribution guidelines

I just created a pull request, I hope I did it correctly, my PR was based on the PR template for ImageSharp. This because this repo does not contain a PR template or any other contribution guidelines.

Mayhaps interesting to add guidelines (or copy from ImageSharp) to encourage other people to contribute.

Beta5 introduces error with System.Buffers

Hello All,

I'm currently building an application that's targeting a few different framework versions, including .net 4.5.2. (we're stuck with this for a little while on that project).

We are getting this odd build issue when targetting version beta0005 of SixLabors.ImageSharp, which references SicLabors.Core version beta0006.

The issue is that when running under .net 4.5.2 (this may happen elsewhere too), we get the following error:
Exception has been thrown by the target of an invocation. There was an error trying to auto-sign the label file. The type initializer for 'SixLabors.ImageSharp.Configuration' threw an exception. Could not load file or assembly 'System.Buffers, Version=4.0.2.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)

The version being loaded of System.Buffers is 4.0.3.0 and not 4.0.2.0, which is why things fail. If we copy 4.0.2.0 back in, everything seems to work just fine again.

I reverted back to beta4 (which uses beta5 of core), and things are working again, everything is pointing back to the right versions.

Any idea why this is happening?

Thanks!

Rectangle.Contains does not include right and bottom edges

currently we have
public bool Contains(int x, int y) => this.X <= x && x < this.Right && this.Y <= y && y < this.Bottom;

should read
public bool Contains(int x, int y) => this.X <= x && x <= this.Right && this.Y <= y && y <= this.Bottom;

Please add netstandard2.0 target to NuGet package

Adding any netstandard1.x package to a project only using netstandard2.0 refs tends to introduce some weird NuGet relationship hell which may output a large amount of unnecessary warnings upstream to all referencing projects.

Please just add the additional netstandard2.0 target.
Or maybe you just should change netcoreapp2.0 to netstandard2.0? It's a library, not an app. Even 100% of the ASP.NET Core 2.1 libs just target netstandard2.0.

Couldn't find assembly.

Exception: Could not load file or assembly 'SixLabors.Core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
I don't know why it is saying that.
I tried reinstalling the package, but that didn't help.

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.