Coder Social home page Coder Social logo

Comments (33)

niemyjski avatar niemyjski commented on May 19, 2024 3

I'm working on this starting right now!

from exceptionless.net.

hmvs avatar hmvs commented on May 19, 2024 1

@VQuery
There is no such overload. Instead, you can create Exceptionless client on your own and use it.

Option 1:

ExceptionlessClient.Default.Configuration.ServerUrl = "http://your-url.com";
ExceptionlessClient.Default.Configuration.ApiKey = "http://your-url.com";
            
app.UseExceptionless(ExceptionlessClient.Default);

Option 2:

app.UseExceptionless(new ExceptionlessClient(c => {
          c.ApiKey = "key";
          c.ServerUrl = "http://your-url.com";
}));

I believe option 1 is more preferable because you can use the default client.

from exceptionless.net.

niemyjski avatar niemyjski commented on May 19, 2024

This is something we really want as well. We are planning on releasing and porting the server to vnext after it's released as well. Yesterday I went to Build Chicago and asked some of the employees / mvps how we can do this and they were all stumped. I think we can use VS multi-targeting to do this. But then again... I'm wondering however, if we should just create a new NuGet package for this. What do you think would be a good name for this?

from exceptionless.net.

barranger avatar barranger commented on May 19, 2024

I wonder if creating a temp NuGet package (named Exceptionless.vNext) at least until MS does the official release (which I'm assuming will include a way to properly multi-target)?

from exceptionless.net.

niemyjski avatar niemyjski commented on May 19, 2024

Do you know what others are naming their vnext packages?

from exceptionless.net.

barranger avatar barranger commented on May 19, 2024

I don't, sorry

from exceptionless.net.

niemyjski avatar niemyjski commented on May 19, 2024

@barranger Have you had any luck writing a client for vnext?

from exceptionless.net.

hmvs avatar hmvs commented on May 19, 2024

Any news? We started writing new project on asp.net core 1.0. Have you tried to integrate exceptionless for web api?

from exceptionless.net.

rbaz avatar rbaz commented on May 19, 2024

Hi Vadim,
Well, I have quit my job. I have no idea if the plug-in keep used or not.
thank's.

2016-04-25 4:02 GMT-04:00 Vadim Kurachevsky [email protected]:

Any news? We started writing new project on asp.net core 1.0. Have you
tried to integrate exceptionless for web api?


You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub
#28 (comment)

Cordialement.

................

Bouazza Rochdi (B.Ing)
Consultant .Net *
*+(514)-326-0315

from exceptionless.net.

hmvs avatar hmvs commented on May 19, 2024

Hi, @rbaz.
Thanks for the answer.
Will wait for comment from @niemyjski

from exceptionless.net.

niemyjski avatar niemyjski commented on May 19, 2024

We are looking to migrate everything to the new project format and add support for .net core. However, we are waiting until rc2 before even starting as there are so many breaking changes and all the tooling has changed between rc1 and rc2. If someone wants to start working on it we can help out but I think it's best to wait for rc2.

from exceptionless.net.

hmvs avatar hmvs commented on May 19, 2024

I see. Would be great if you can try to integrate current version of exceptionless to the rc1 web api project and post a sample. For dnx451 as target.
Thanks

from exceptionless.net.

niemyjski avatar niemyjski commented on May 19, 2024

@hmvs Can you take a stab at this and let us know? I'm just worried that we may be waisting our time on rc1 as we know so many things have changed (apis and tooling). I mean one could look at rc2 nightlies I don't know how locked down they are but they said the tooling is 3-6 weeks out.

from exceptionless.net.

ejsmith avatar ejsmith commented on May 19, 2024

I feel like we should wait for rc2. Unless someone wants to take a stab at it.

from exceptionless.net.

niemyjski avatar niemyjski commented on May 19, 2024

We have a public slack channel here: http://slack.exceptionless.com if you want to join and chat about .net core.

from exceptionless.net.

rbaz avatar rbaz commented on May 19, 2024

Hello Vadim,
What's new I have sometimes. What can I do?
Thanks.

2016-04-25 10:51 GMT-04:00 Blake Niemyjski [email protected]:

We have a public slack channel here: http://slack.exceptionless.com if
you want to join and chat about .net core.


You are receiving this because you were mentioned.
Reply to this email directly or view it on GitHub
#28 (comment)

Cordialement.

................

Bouazza Rochdi (B.Ing)
Consultant .Net *
*+(514)-326-0315

from exceptionless.net.

niemyjski avatar niemyjski commented on May 19, 2024

@rbaz I think it's best to start on upgrading the project to the new project format using rc2 bits (not sure how that's sitting).

from exceptionless.net.

ejsmith avatar ejsmith commented on May 19, 2024

Yeah, we've been waiting for RC2 to start because of all the churn.

from exceptionless.net.

rbaz avatar rbaz commented on May 19, 2024

Ok, I will look for that this week!
Le 2016-05-04 2:38 PM, "Eric J. Smith" [email protected] a écrit :

Yeah, we've been waiting for RC2 to start because of all the churn.


You are receiving this because you were mentioned.
Reply to this email directly or view it on GitHub
#28 (comment)

from exceptionless.net.

ejsmith avatar ejsmith commented on May 19, 2024

Yeah, I think they are very close to releasing it.

from exceptionless.net.

rbaz avatar rbaz commented on May 19, 2024

Ok, I took a look for that. And I think I will beginning to create the
structure for the project -- Solution --- Class Librairie -- projects test
and ...
After that we will wait for the RC2.
I think is safe like this.

2016-05-04 14:41 GMT-04:00 Eric J. Smith [email protected]:

Yeah, I think they are very close to releasing it.


You are receiving this because you were mentioned.
Reply to this email directly or view it on GitHub
#28 (comment)

Cordialement.

................

Bouazza Rochdi (B.Ing)
Consultant .Net *
*+(514)-326-0315

from exceptionless.net.

hmvs avatar hmvs commented on May 19, 2024

Hi guys, RC2 released :)

from exceptionless.net.

rbaz avatar rbaz commented on May 19, 2024

Hi,
Yeah!

2016-05-17 3:46 GMT-04:00 Vadim Kurachevsky [email protected]:

Hi guys, RC2 released :)


You are receiving this because you were mentioned.
Reply to this email directly or view it on GitHub
#28 (comment)

Cordialement.

................

Bouazza Rochdi (B.Ing)
Consultant .Net *
*+(514)-326-0315

from exceptionless.net.

niemyjski avatar niemyjski commented on May 19, 2024

Yeah! I'm excited

from exceptionless.net.

niemyjski avatar niemyjski commented on May 19, 2024

@ejsmith not sure if the first step is to upgrade everything to the new project format or just the new project we will create. Might be a good idea to upgrade everything (some things might change after release but I think we might be good (dotnet/aspnetcore#1451). Appveyor will be updating there base images real shortly with the new dotnet cli but looks like all the appveyor scripts change (http://help.appveyor.com/discussions/questions/2249-how-to-use-latest-dotnet-cli).

@Bartmax was kind enough to start upgrading foundation: FoundatioFx/Foundatio#44 there are some notes in there

Does someone want to start on just converting to the new project format so we can get our build and ci's going and then iterate from there? This would be a huge help.

from exceptionless.net.

niemyjski avatar niemyjski commented on May 19, 2024

I just wanted to let you know that we have the client written in the netstandard branch and we should be pulling it into master soonish.

We'd love your feedback on the client.. You should be able to get the latest prerelease client from the following nuget feed: https://ci.appveyor.com/nuget/exceptionless-net

from exceptionless.net.

niemyjski avatar niemyjski commented on May 19, 2024

​Hey, I wanted to let you know that we have a nightly build which is stable and will become a beta release. It's on nuget as a prerelease v4 build. It's a major version because we got rid of the portable package and merged everything in to the Exceptionless package and made it pcl + .net standard. Please feel free to update your nuget packages to this release and let us know about any issues. If you want just core clr support install the Exceptionless package, if you want asp.net core support please install the Exceptionless.AspNetCore package :) and follow the readme. Please let us know if you have any feedback or run into any issues.

from exceptionless.net.

niemyjski avatar niemyjski commented on May 19, 2024

A beta is now available: https://github.com/exceptionless/Exceptionless.Net/releases/tag/v4.0.0-beta

from exceptionless.net.

niemyjski avatar niemyjski commented on May 19, 2024

Has anyone had a chance to try the beta? I'd love your feedback.

from exceptionless.net.

hmvs avatar hmvs commented on May 19, 2024

Will try to integrate it on Monday. Our first product on asp.net core is close to release so as usual we will integrate exceptionless into it.
Thanks for the efforts.

from exceptionless.net.

niemyjski avatar niemyjski commented on May 19, 2024

https://exceptionless.com/exceptionless-4-0-net-core-asp-net-core-support/ It has shipped! Let me know if you run into any issues.

from exceptionless.net.

hmvs avatar hmvs commented on May 19, 2024

Seems we integrated it, and it's working fine :) Thanks

from exceptionless.net.

VQuery avatar VQuery commented on May 19, 2024

How to specify the server URL in .netcore as like api key?

app.exceptionless("Apikey");

from exceptionless.net.

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.