Serializable Attribute Silverlight For Mac

I'm using XmlSerializer. I've had no problems with it until now. I updated Silverlight from 4 to 5 and at the same time also updated the WCF RIA Services from v1 SP1 to v1 SP2. Now the following line gives me an error. XmlSerializer s = new XmlSerializer(typeof(MyCustomObject)); The error is: System.InvalidOperationException: System.ServiceModel.DomainServices.Client.EntityConflict cannot be serialized because it does not have a parameterless constructor. The object I'm using (MyCustomObject in the sample) has not changed in any way so I'm starting to think it's either SL5 or the new RIA Services that is breaking my code. I didn't find any breaking changes document or mentions that this could happen.

I don't know why it has a problem with EntityConflict since I'm not using any entities within my object. Has anyone seen an error like this and/or know how to solve it? The final property that the error message says before EntityConflict is an Entity.

I think that makes a difference but it has been working before. I'd also like to know why the serializer already tries to serialize the object in the constructor?

Is it possible to use [Serializable] attribute in silverlight class? I am working on the code to implement ArrayList in silverlight and need this. One very important factor is the operating system and version number on the Mac. The OS version has to be Macintosh OS 10.5.7 (Intel Based) or greater. To find which operating System version and build information is on a Mac, go to the “Apple” ( ) menu and choose “ About This Mac ” and click the Version number.

.NET Core is getting closer and closer to an RTM release. Only two months ago, we announced the. As part of our validation, we’re working with internal as well as external customers to port their code to.NET Core.

We received many requests from you asking us how you should go about migrating existing code to.NET Core and how you can continue to target.NET Framework. In this post, I want to provide you with an overview of what, what kind of apps are good candidates, what tools we offer to help you port your apps, and how we’re bringing more APIs to.NET Core to help you with being more successful to target.NET Core with existing code. We’d like to talk to you! Did you already migrate an application or class library to.NET Core?

Have you tried to share code between.NET Core and another platform, for instance.NET Framework? If so, I’d like to talk to you about your experiences and whether there is anything we could do to make things even smoother. If you’re interested, please contact me at immol at microsoft dot com and I’ll arrange a phone call. Who has tried to port apps and/or libraries to.NET Core and would be willing to talk to me about their experiences (good and bad)? — Immo Landwerth (@terrajobst) What do you want to port?

Xml

Before porting any source to.NET Core you should understand your current code base, its architecture as well as its external dependencies. Think about the capabilities that.NET Core has to offer and how you want to leverage them. Then you can reverse engineer which sources make sense to port, what shouldn’t be ported, and what new code you need to write specifically for.NET Core.

Let’s start by looking at what.NET Core has to offer. The RTM version of the following application models:.

ASP.NET Core apps and services. Universal Windows Platform (UWP) apps. Console apps Let’s take a quick look at each of them to see what porting would mean in their context. ASP.NET Core applications and services Reasons to port?

The primary reason to migrate your existing ASP.NET app to run cross-platform. For instance, this enables developing your web site on a Mac running OS X while you deploy your web site to a production Linux machine (we’d love this to be Azure, but it’s really your choice).

But even if you stay on Windows you may want to take a look at ASP.NET Core because it offers new features and doesn’t require a machine wide framework installation, which avoids issues such as requiring machine changes, administrative privileges during deployment, and GAC policies. Good porting candidates? The best foundation for ASP.NET Core are web sites using MVC and/or WebAPI. Less ideal for porting?

If the majority of your web application is using WebForms, moving to ASP.NET Core is equivalent to a reimplementation as WebForms isn’t supported. However, if you want to use this as an opportunity to refactor your application anyways, this isn’t a show stopper as MVC/WebAPI is simply the more modern way to write web applications. Universal Windows Applications (UWP) Reasons to port? UWP unifies the Windows device family, ranging from PCs to tablets, phablets, phones, and the Xbox. It now also includes headless Internet of Things (IoT) devices.

UWP provides many great features, such as an app store that allows monetizing your apps more easily. And the Windows Runtime (WinRT) offers much more usable yet fully native and powerful operating system APIs, such as XAML and DirectX composition.

Good porting candidates? If you’re targeting Windows 8 or Windows Phone 8.1, you’re already done: these are.NET Core applications. If you maintain Windows Phone Silverlight apps, you’re pretty close.

Serializable Attribute Silverlight For Mac

In fact, any Silverlight app should be a good candidate because the API set is heavily based on what was available in Silverlight: most APIs are either available in.NET Core or became WinRT APIs, in which case you often get way with minor touch-ups, such as changing the namespace. In fact, there is a even that helps with this conversion. Less ideal for porting? Rich desktop applications that take advantage of Windows Forms or WPF are less ideal because neither technology is supported on.NET Core.

However, WinRT offers a native XAML-based UI technology that is very similar to Silverlight and WPF. So if you were planning to redesign your application to be usable across various form factors, this shouldn’t be a blocker for you. Console Applications Reasons to port? One of the biggest reasons you should look into using.NET Core for console applications is because it allows targeting multiple operating systems (Windows, OS X, and Linux). Another strong reason is.NET Native for console apps will eventually support producing self-contained, single file executables with minimal dependencies.

Good porting candidates? Pretty much any console application is fair game, depending on your dependencies. For example, if your console application automates Windows or Office using COM, it might be harder to port than, say, an application that parses a CSV file and calls a WCF service. As a data point, the C# and VB compilers are.NET Core console applications, so is the. Less ideal for porting? There isn’t a canonical example of a less ideal candidate; it’s a function of your dependencies.

Relationship of.NET Core and.NET Framework Before we go into porting itself, it’s useful to understand how.NET Core and.NET Framework relate, especially with respect to available APIs. This helps you in gaining a picture of how APIs are likely going to evolve and in turn enables you to plan the evolution of your applications and libraries. Many people think of.NET Core as a subset of.NET Framework.

It’s important to understand that this isn’t true. While it’s true that.NET Core today is smaller in terms of available APIs, we also have — and plan to continue to have — certain APIs and technologies that are.NET Core only. This includes tooling, for instance.NET Native, but also includes libraries. However, it’s equally important to understand that the overwhelming majority of.NET Core APIs are shared with the.NET Framework. That makes it fairly easy to write class libraries that can simultaneously work on.NET Core as well as the.NET Framework. In fact, unless you target.NET Framework 4 or Silverlight, all portable class libraries are.NET Core class libraries.

If you want to understand how this is modeled and how.NET Core is essentially simply portable class libraries done right, take a look at this. Of course, the vast majority of existing code is targeting the.NET Framework. Converting an existing.NET Framework class library to.NET Core can be challenging, so let’s take a look at the key differences and API gaps that exist between the two. Differences between.NET Core and.NET Framework The differences between the two can be summarized in these three points:. NuGet-based.NET Core is distributed as a set of NuGet packages that allow app-local deployments. In contrast, the.NET Framework is always installed in a system-wide location.

This difference doesn’t matter so much for class libraries; but it matters for applications as those are expected to deploy the closure of their dependencies. But we expect this model to change how quickly class library authors can take advantage of new functionality.

Since the applications can simply deploy a new version (as opposed to having to wait until a given.NET Framework version is widely adopted), there is less of a penalty for component authors to take advantage of the latest features. Well layered.NET Core was specifically designed to be layered. Was to create a.NET stack that can accommodate a wide variety of capabilities and system constraints without forcing customers to recompile their binaries and/or produce new assets.

This means that we had to remove certain APIs because they tied lower level components to higher level components. In those cases, we provide alternatives, often in the form of extension methods. Free of problematic tech.NET Core doesn’t include certain technologies we decided to discontinue because we found them to be problematic, for instance AppDomain and sandboxing. If the scenario still makes sense for.NET Core, our plan is to have replacements. For example, AssemblyLoadContext replaces AppDomains for loading and isolating assemblies. The first point means that we now fully embrace NuGet as a first class concept for the core development experience. We believe this to be a natural progression as many of you already use NuGet to acquire third party dependencies.

The second and third point mean that there are certain APIs that aren’t available when targeting.NET Core. Let’s look at some areas you should be aware of. Reflection With the advent of.NET Native, we have a technology that allows us to statically link your application with the framework and third party dependencies. For the linking to be viable, it’s important that it can identify the parts of the framework that you’re not using.

In other technologies, such as C, this is somewhat straightforward as these systems don’t have dynamisms such as reflection. Of course,.NET Native still supports reflection but we wanted to make the platform more pay-for-play friendly, meaning that you don’t have to pay for features that you don’t use. This is especially true for reflection, as it imposes significant constraints on what the runtime and compilers can do based on static information.

So ideally, reflection should be an optional component in.NET Core that you might decide not to use in your application at all. The tricky part is that System.Object has a dependency on reflection via Object.GetType. In order to break that dependency, that System.Type no longer represents the full-blown reflection type information but only the type name. This means that System.Type in.NET Core no longer contains APIs such as GetMembers, but continues to expose APIs such as Name. In order to get access to the additional type information you have to invoke an extension method called GetTypeInfo that lives in System.Reflection.

It returns the new type TypeInfo which is what Type used to be. In other words, a line of code like this: C# var members = obj.GetType.GetMembers; becomes C# using System.Reflection.

Var members = obj.GetType.GetTypeInfo.GetMembers; As you’ll see later, there is tooling to help you with migrating your code. If you already have experiences with using, you probably noticed that certain API concepts, such as BindingFlags, were also removed. Based on your feedback, to bring back many of these APIs. Technologies discontinued for.NET Core The.NET platform is a very mature stack that is almost 15 years old. We’ve built a large set of technologies into the platform.

Iserializable Vs Serializable Attribute

Over the years, we’ve learned a lot about them, how they are used, what architectures they create and what limitations they have. As a result, we’ve identified a set of technologies we no longer promote for authoring modern.NET applications and thus did not bring them to.NET Core. Of course, we haven’t removed any technologies from the.NET Framework. If you’re currently using them, you don’t have to change anything. We’ll continue to support those in the context of.NET Framework. However, we encourage you to avoid taking dependencies on those for new applications, as this will make it harder for you to port these assets to.NET Core. Also, in those areas we’ll generally not add new features, so you’re better off using the preferred alternatives.

Let’s take a look at some of those. I’ll explain why they are problematic and what you should use instead. For more details and the full list of discontinued technologies, read. App Domains Why was it discontinued? AppDomains require runtime support and are generally quite expensive.

While still implemented by CoreCLR, it’s not available in.NET Native and we don’t plan on adding this capability there. What should I use instead? AppDomains were used for different purposes. For code isolation, we recommend processes and/or containers. For dynamic loading of assemblies, we recommend the new AssemblyLoadContext class. Remoting Why was it discontinued?

The idea of.NET remoting — which is transparent remote procedure calls — has been identified as a problematic architecture. Outside of that realm, it’s also used for cross AppDomain communication. On top of that, remoting requires runtime support and is quite heavyweight. What should I use instead? For communication across processes, inter-process communication (IPC) should be used, such as pipes or memory mapped files. Across machines, you should use a network based solution, preferably a low-overhead plain text protocol such as HTTP.

Binary serialization Why was it discontinued? After a decade of servicing, we’ve learned that serialization is incredibly complicated and a huge compatibility burden for the types supporting it. Thus, we made the decision that serialization should be a protocol implemented on top of the available public APIs.

However, binary serialization requires intimate knowledge of the types because it allows to serialize object graphs, which includes private state. What should I use instead? Choose the serialization technology that fits your goals for formatting and footprint. Popular choices include,. Sandboxing Why was it discontinued? Sandboxing, i.e. Relying on the runtime or the framework to constrain which resources a managed application can access, is considered a non-goal for.NET Core.

Sandboxing applications and components is also really hard to get right, which is why generally recommend customers not to rely on it. It also makes the implementation more complicated and often negatively affects performance of applications that don’t use sandboxing. Hence, we do not offer sandboxing features in.NET Core. What should I use instead? Use operating system provided security boundaries, such as user accounts for running processes with the least set of privileges. Considered for porting Of course, just because something isn’t available in.NET Core today doesn’t mean we discontinued it.

In most cases, it simply means we haven’t had the time to investigate whether porting would make sense or didn’t think it was relevant to the application models.NET Core currently offers. Thus, this is an area we’re highly interested in getting your feedback. Some of these APIs will likely have replacements from the community. Please let us know in the comments which ones you use and whether you’re happy with them. This allows us to reach out to the authors to make sure that these libraries work well on.NET Core. Many of you already, asking for specific components to be ported. We’re currently aware of these items:.

System.Data. While the base layer is already part of.NET Core, i.e.

The provider model and SQL client, some features are currently not available, such as schema support and DataTable/ DataSet. System.DirectoryServices. There is currently no support in.NET Core to communicate with LDAP or Active Directory. System.Drawing. While strictly speaking it’s a client API, many developers use the drawing API on servers to provide thumbnail generation or watermarking. We currently don’t have support for these APIs in.NET Core. System.Transactions.

While ADO.NET supports transactions, there is no support for distributed transactions, which includes the notion of ambient transactions and enlistment. System.Xml.Xsl and System.Xml.Schema.NET Core has support for XmlDocument as well as Linq’s XDocument, including XPath. However, currently there is no support for XSD ( XmlSchema) or XSLT ( XslTransform).

System.Net.Mail. There is currently no support for sending emails from.NET Core using these APIs.

System.IO.Ports.NET Core currently doesn’t include the ability to communicate with a serial port. System.Workflow. The Windows Workflow Foundation (WF) is currently unavailable on.NET Core. System.Xaml.

When creating UWP applications, developers will use the WinRT XAML APIs. Hence,.NET Core currently doesn’t include the managed XAML framework, which includes the ability to parse XAML documents and instantiate the described object graph. For a full list, take a look at. Please note that this list doesn’t represent a commitment from us to open source all these components or even bring them to.NET Core — they are simply capturing the desire from the community to do so. That being said, if you care about any of the components listed above, consider participating in the discussions on GitHub so that your voice can be heard. And if you think something is missing,. Would you be interested in helping us to port a component?

In some cases, the source code of the.NET Framework implementation has been made available under MIT, as part of. We’re looking into ways to enable the community to support our porting efforts. If you’re willing to participate, shoot me an email at immol at microsoft dot com.

Also, we’re actively looking into areas that customers find particularly challenging to port. For instance, we recently had several design meetings on minimizing the.

Understanding how portable your code is Before you even attempt to port, you should run on your binaries. This will produce a report that provides two useful pieces of information:. High-level summary.

The summary gives you a percentage for each of your assemblies, telling you how much of your framework usage is portable to.NET Core. This shows you which of your components are harder to port and which ones are easier.

List of non-portable APIs. It provides a table that lists all the usages of APIs that aren’t portable. It also includes a list of recommended changes, calling out the replacements. Sometimes, the high-level summary can be misleading. Make sure to take a look at the list of non-portable APIs — sometimes many issues can have the same fix.

For instance, many reflection APIs have moved but the fix is pretty simple by inserting a call to GetTypeInfo. We highly encourage you to use API Port. Not only this tool is super useful to you, it also helps us to prioritize APIs to ported because it sends us telemetry back. The data we receive is basically just the list of framework APIs you were calling in your code. This way, we know which APIs are often used by customers that wish to target.NET Core. Our goal is to prioritize those.

Don’t worry — we will not collect any information about your code. You don’t have to take my word for it: API Port is open source and is. If you want to learn how API Port works, you should take a look at this interview with the API Port team: Porting to.NET Core Now that you’ve got a good understanding of the features.NET Core offers and how it differs from the.NET Framework, let’s talk about porting. Before you start porting, you should understand your application architecture and which parts you want to port. There are roughly three approaches you can take:. Co-evolution.

In this case you want to keep your existing.NET Framework assets (such as a desktop application) but you also want to take advantage of the.NET Core app models, such as UWP for targeting mobile devices. Another common approach is a.NET Framework based desktop application that communicates with an ASP.NET Core based service. In both cases, the goal is to share some functionality between.NET Core and.NET Framework. In this case, you have an existing application, for instance an ASP.NET 4 MVC app, that you want to move entirely to ASP.NET Core. Thus the goal isn’t continuing to target both,.NET Framework and.NET Core, but being able to quickly adapt your code so that it can be compiled for.NET Core. Start from scratch. In this case you don’t really care about existing assets as you’re starting an application from scratch for.NET Core.

But eventually you most likely have to use samples or incorporate snippets of code that were meant for the.NET Framework. So you still want to understand how you can tweak code to make it work for.NET Core. I’ll focus on the first and second approach as the third is merely a microscopic combination of the techniques discussed by the others. General approach Keep in mind that every code base is different. Thus, the porting process will vary and will highly depend on the state of your code base and therefore I cannot provide you with a silver bullet that will cover all of the potential cases. The approaches and techniques I list below will probably not always work as described. You’ll likely have to adapt them to fit your case.

Here is a rough approach for porting:. Identify the projects that you want to move to.NET Core. Understand the external dependencies these projects have and ensure they are either compatible with.NET Core, have equivalent alternatives, or can be factored out. Change those projects to target.NET Framework 4.6.1. This ensures that you can use API alternatives we’ve introduced for cases where.NET Core couldn’t support existing APIs. Make sure to also upgrade any consuming projects, otherwise you’ll get compilation errors due to inconsistent.NET Framework versions.

Recompile. Run API Port.

Change your code to address API Port issues Repeat steps 4 – 6 until all API Port issues are addressed. Then, create the new.NET Core projects and move your code in.

Unless there are more issues that API Port couldn’t detect, you should be able to compile your code successfully. Co-evolving.NET Core and.NET Framework applications In this scenario you want to share code between an existing.NET Framework application and a to-be-created.NET Core application. There are you can take to share code:. Share sources. Shared projects allow you link source files at the project level: when referencing a shared project all these assets become part of the project they are referenced from. This allows you to use conditional compilation and partial classes to adapt your code to either platform. Share binaries.

You can also factor the code you want to share into a portable class library that can then be referenced from both,.NET Framework as well as the.NET Core application. Sharing source code is much easier in case you want to adapt your code by using #if. However, you want to make sure that you don’t create spaghetti code by littering the source with #if conditions. Try to centralize code that handles differences as much as possible. Another neat trick is to use partial classes where one part of the class is in the shared project while another part is provided by the platform specific project. Depending on the size of your team and the application, it might be a better and more sustainable solution to use shared binaries. The reason being that libraries are real building blocks that can be deployed and tested as individual artifacts.

Enforcing layering in source is obviously also possible but requires more discipline because it’s based on conventions. To share binaries, you’ll create libraries that are fully portable between.NET Framework and.NET Core. To do this, you need to identify the components you want to share. I recommend that you first make sure that components you want to share are not in the same project as components you don’t want to share. In other words, a project is either shared entirely or not shared at all. Once that’s done, create the portable class libraries and move the code there. As a rule of thumb I’d say that the sharing binaries is ideal for your business logic and your core layers, while sharing sources is more suitable for components that highly depend on the target platform, i.e.

You need to interact with UI components or call operating system specific APIs. It’s worth pointing out that the intersection of.NET Core and.NET Framework is pretty large. In fact, almost all of the APIs.NET Core provides are also available in.NET Framework so the second approach isn’t as limiting as it may sound. For more details on how these two approaches compare, take a look at this. Migrating code to.NET Core To make migration easier, I suggest you target the.NET Framework as long as possible during your migration, use API Port to identify porting issues, and only make the big switch when most are addressed. This way, you don’t have the problem of having to deal with a code base that doesn’t build for a long time. When planning your migration you should also think about your tests and treat them as a part of your product when porting.

Migration often result in huge code churns so you want to make sure that you didn’t introduce bugs along the way. The area that needs the most work is probably going to be application model, be that a desktop application or ASP.NET:. For desktop applications, it might be worthwhile to use the co-evolution approach because it avoids not having any interim versions of your application. For ASP.NET, a good approach would be to compile the application as a.NET Framework application. As a first step, replace ASP.NET 4 with ASP.NET Core. You could decide to leave your app like this and simply benefit from the new ASP.NET Core app model. Or, if you want to move to.NET Core entirely, run API Port and address the issues.

Once that’s done you can move the entire application to.NET Core. But if your app is small, it might best to use the big hammer approach: simply create the new project, copy & paste the existing code and fix up all the compiler errors. Want more details? For more details, take a look at these resources:.NET Core Progress. API Port. Summary In this post, I outlined the benefits that.NET Core brings and which apps and components are most likely benefiting from it.

We also looked at ways you can leverage.NET Core from existing applications, by either adding a.NET Core based experience to your portfolio or by migrating your assets completely on top of.NET Core. I showed you how you can use that can help you to understand your components and how portable they are. If you have any questions or concerns, let us know by leaving a comment. If you have experiences with porting code to.NET Core and would like to talk about them, I’d appreciate if you’d drop me a line at immol at microsoft dot com. I’d love to learn what we can do to improve your porting experience!

Happy porting! Article said: “MVC/WebAPI is simply the more modern way to write web applications” Really? We knew this before Webforms were introduced, in fact, we used Webforms more like MVVM than MCV, talking to SOAP Webservices, the forerunner of WebAPI! You guys keep spinning this lame excuse that there is something inherently wrong with Webforms, and it’s simply not true! What was wrong was the way you guys taught people to use it and the silly controls which we never used, and that thinking is flowing over into this new stuff! I don’t say we’re the norm, but all I need from you is an “Active Server Page”, you know what that is, simply a page that I can load with initial data from the server through any form of markup you care to deliver, and I’ll let javascript/html/css and SignalR(once you figure out that we need that transport) do the rest!

Ok, now let me complement you on what’s great! I love Middleware!

I didn’t like that we have to convert code, but it’s really nice, and that goes for the rest of the new structure good stuff! You’re on the right track, but the platform is basically useless for all but the simple apps, but that’s to be expected. My biggest advice is to remember the simple stuff, when you omit enough of the things that were productive from the previous platform, it soon becomes an unusable mess, productivity wise, and people have to leave! How about FileStream? Just tried the following in a.NET Core app — using System.IO; using (var s = new FileStream(@”c: temp a.txt”, FileMode.Create)) using (var sw = new StreamWriter(s)) sw.WriteLine(“it worked!”); — And I got that error Program.cs(13,32,13,42): DNX Core 5.0 error CS0246: The type or namespace name ‘FileStream’ could not be found (are you missing a using directive or an assembly reference?) Program.cs(13,61,13,69): DNX Core 5.0 error CS0103: The name ‘FileMode’ does not exist in the current context. From my interaction on Twitter and GitHub it’s clear that you’re not alone in your sentiment with respect to renaming and our communication.

I can see how this can be overwhelming or even irritating at times. But there is another way to look at this:.NET used to be closed source, with technological advances and branding decided and discussed behind closed doors. Since we open sourced.NET Core one and a half years ago, those debates are now happening in public, on GitHub.

In other words, you can observe how the sausage is being made. As with all projects, the precise destination is rarely known up front; engineering is an exercise in trading different goals and building compromises that result in great experiences. Sometimes it takes a while for an idea to gain critical mass and suddenly you observe a shift from the outside. To me, the take away of feedback like yours is that we need to become better at separating our day-to-day discussions on GitHub from our broader messaging we do via blog posts and conferences. The take away shouldn’t be that we become afraid to change our mind, despite having evidence and customer feedback to the contrary. Otherwise we lose the benefit that open source and a transparent development process bring to.NET.

Yes, but you didn’t address his concern and the reason why he is mad. You guys are doing great work but you guys should have never released RC1 knowing that the.NET CLI was being changed or the fact that almost every api was in flux. You should of used Beta or even Alpha but not RC. And now we don’t even know when we will be able to port as all the API’s are changing and all the nuget monikers have changed.

This should never happen in any RC. This is the reason I think some people are a bit angry (but we mean the best).

Yes, the major disappointment here is that when RC1 was released back in November it was claimed as “Production Ready” with some tech support available from Microsoft for those brave who decide to use it. And that lead to people start using this technology with expectation that just a polishing left between a few RC’s. And then we receive a huge kick in a face from Microsoft. I don’t know about other people but I think it’d be long way for.NET team to recover trust in their releases.

C# xml serialization attributes

It’s like “never install windows before SP1” now i.e. Don’t even try new.NET Framework tools before official release because these guys will rewrite everything before release anyway. I feel like I drank the cool-aid and it was tainted. We were just beginning a new MVC and EF project so I felt with it being in a supported RC, it would be the smart way to go.

While I am very excited about some of the improvements and a leaner, meaner.NET, I’ve been struggling through the RC since it was released and progress has been slow going. I’ve spent days trying to get something to work only to find that its currently (a) unsupported, or (b) not working and may come out in a future daily build. And, to make real use of it, even the tutorials provided by MSFT staff, you need to include packages that are in BETA, so I also feel that RC1 was rushed out, is really just a BETA, and is currently undergoing major architectural shifts. While I support this effort the team is making, I have to agree with John here. This is a good in-depth look at decisions taken and I appreciate the openness.

However, what I have struggled with on the UWP platform (and the Win RT APIs previously) is the lack of maturity on the automated testing side. A lot of the.NET development community use nUnit, Rhino Mocks, SpecFlow etc. I understand these are third party but the gap has simply not closed. The removal of the reflection APIs makes porting these libraries difficult/impossible. Using PCLs is not an answer either from my (limited) experiments with them – the available APIs were simply too limited. BDD and TDD is a core part of app development today – please can you make sure that.NET Core provides the necessary support for testing frameworks to become first class citizens? Removal of Binary Formatter means that porting Paint.NET to anything other than classic.NET Framework is a 100% non-starter.

That means I’m completely blocked from even hoping to port to UWP. This is used for the.PDN file format (EXTREMELY problematic), as well as internal state machine management (much less problematic, I could create my own solution here). Can you at least provide this as a library on github? Otherwise I would have to dump it via a disassembler and that has all sorts of ickiness associated with it. I would prefer to not be using BinaryFormatter for the native Paint.NET file format, but that decision was made at the beginning of 2004. It’s just something I’ve learned to live with. We looked at Core and really wanted to use it for a new Saas we are building.

But within a few hours, we’d ditched that idea and decided to stick with MVC 5. Main reasons: 1. Core is missing important things, system.drawing is useful for any site that has image that need thumbnailing or other processing. DAL facilities seem to be missing. The primary benefit of cross-platform deployment doesn’t really give us any benefit. We’re going to put it on IIS or Azure anyway.

Core doesn’t seem to be stable, namespaces still changing. We don’t want to be doing rewrites in a few months with a bunch of stuff that has changed, we want something mature and stable. I like some of the things in Core, the structure with wwwroot so the majority of code and config stays off the web space. JSON for configuration files seems pointless.

The JSON spec doesn’t support comments, it looks to me like it’s put in there because it looks fashionable and ‘web 2.0’, even thought it has no real utility and XML makes more sense (I understand can use XML too, just don’t see the point of JSON for this to be honest). It seems to me that a whole load of utility and features has been dropped to make it cross-platform.

It’s been dumbed down. I am pretty sure that in 5 years time, you’ll find a fraction of a percent of people are actually running Core outside of Windows, and at some point Microsoft will realize this great idea that if they just make it for Windows, they can put a whole load of awesome features like image processing in it.

Hey Paul, I noticed your comment in regards to JSON configuration in.NET Core. They chose JSON as the default, but by no means do you have to use it. They don’t have configuration as a hardcoded class anymore. They have it as an interface of configuration providers. So you could get the configuration from xml files, from JSON or if you feel inclined to write classes yourself, flat text key/value pairs or from a database. As some examples of it in use, they have UserSecrets feeding into their configuration system, as well as the environment variables. I tried to jump up to UWP 6 month ago and meanwhile i have to say, that it is really frustrating programming UWP apps.

UWP is made for windows phone programming and that’s it. Nearly all tools from 3rd parties like teleriks and componentone are missing since they did not jump on that train.

One simple example: you will not find a screen recorder, nowhere. Isn’t this strange. Did you not think about that?

Missing: screen class to write a screen recorder the reason is, that the super security wants to prevent from hacking screens. Remote Desktop is missing: depends on the previous point.

So you can’t create a pushing mouse to somewhere hooks are missing. What about listening on global keyboard or mouse events? This should be done now by backgroundtasks.

But a lot of triggers are missing there. What shall i do with a time zone changing event? I need an event when the clipboard changes for example Windows store: only UWP projects may be uploaded and listed. And that’s nearly only the phone apps. And one or two demo apps. No word about the touted project centennial since april last year.

At the moment i would like to switch back to wpf but this is also dead now. Making money with android apps and ios seems to be more trendsetting. Microsoft’s current stage of traditional user interface applications in Windows is confusing at best. Ironically, it’s easier to see the path forward if you develop on Windows for iOS, Android, or Linux. Just use.NET Core or Xamarin. WPF seems to be dying and UWP has this very odd place in the Windows world where it’s hamstrung by a “weakest link” which is Windows Phone, in turn a platform that is on a distant third place behind the top two. So many will be hamstrung for nothing if they are to develop for Windows using the latest & greatest user interface API.

ASP.NET MVC as another user mentioned seems to be the most logical way forward. For Windows desktop apps. Which is just weird and makes you wonder why you even bother anymore. Just coming back to WIndows world after a long hiatus in Android land. And I am thoroughly confused by the current landscape in Windows World.

I’m right in the middle of backing a project out of a Portble library implementation due to ommissions in the native stack. The specific omissions that made it impossible to do what I want in that platform are: No reflection.emit (I need to construct classes with members fields or properties at runtime); the.rd.xml stuff which was unmanageable in my intended iplementation; and indications that Linq.Expressions are interpreted rather than compiled in.net native. You provide list of omissions on the platform, but none of these bits are mentioned explictly (although all of the bits that are mentioned rely critically on these bits). Could you clarify please, whether (1) Refelection.Emit (acutally emission of code, not just a handful of types) is in or out; (2) are Linq.Expressions interpreted? (3) Can generic types be created, instantiated and reflected upon at runtime without prior declaration in an rd.xml file? And how does.net native related to.net core? Hello Thanks for the article.

Tried to port my code to UWP, for it to be able to run on Windows 10 on Raspberry Pi But its limitations makes it close to impossible or at least impractical. The code relies heavily on System.Drawing for drawing graphs provided to clients viewing content on the device (via a web server running on the device), System.Xml.Xsl and System.Xml.Schema for validation, version control, transformations. Other resitrictions, some of which have workarounds, others not, in Reflection and Security add to these problems, making it easier to continue to run the code using Raspbian & MONO, than to port the code to UWP. Best regards, Peter. I want to know Do have Microsoft any plan for introduce WCF,WPF,WF,WinForm,SignalR in.NET Core for another OSes and platforms?

Can we create WPF application in Linux or Mac? (something like JavaFX) or Can we create any service oriented applications based on WCF features in those Oses?

I ask these questions because Microsoft introduces two types of Application based on.NET Core 1.0 (DNX) ASP.NET MVC (WEB) Console Application and seems does not have any plan for alternative WCF,WPF,WF,WindowsForms,SignalR in.NET Core. I just posted a comment on your older thread on the topic: But it would make more sense here. Pushing so much.NET Core over the.NET Framework leaves the impression that the.NET Framework could be deprecated one day in favor to the.NET Core. As you said,.NET Framework is mature, feature rich and enterprise ready.NET Core is not yet there Moreover, in the current situation, AKAIK, we can’t build a WPF or console app with.NET Core. So instead of a full port, for desktop app, the “co-evolving path” makes indeed more sense: putting as much code as possible to a “shared project”. This is called by e.g. A “BusinessLogicDesktop” class library, itself used by a “console app” (still the easiest for quick testing), WPF or Winforms app; and e.g.

A “BusinessLogicUWP” used by a UWP app. I did so to migrate a IO tool to synchronize directories. Does not make much sense however as UWP since the UWP app have limited access to the filesystem (e.g. System.Security not supported, I cannot check if the current user is allowed to delete or write a file). Anyway,the concept of the “shared project” is however that there is no output and is only a bunch of code. I wonder if we could have a alternative to this “shared project” with yet another project template to build a class library that is using the common part between the frameworks, i.e. Basic logic built only with the base class libraries (BCL).

Depends how much the code is shared between.NET Core and.NET Framework. If not already the case, it would be eventually much easier that the common part would be extracted to a lower “BCL Framework” and both.NET Core and.NET Framework would be build on top of it.

Then, my “bcl class lilbrary” would be “compiled” towards this “BCL Framework”. Any though on that? Hi Immo, Thanks for this great post.

I am a newbie to.Net Core. Actually we have a dynmic library (dll used as wrapper library) build in.Net Framework v4.0 which has Interop and other code(Managed plus Unmanaged) in clr:/oldsyntax format. Internally through this wrapper library we make C/C calls using Interop and Marshalling. Now we want this X dll to be used in.Net Core environment. Is this really possible using your above steps? Since my concern is about clr:/oldsyntax, whether this type of code will be supported in.Net Core or not? Can you post on how to use 3rd-party.Net4.0 libraries from NetCore1.1?

I (unwisely) jumped into writing my web-api and libraries as NetCore1.1, I (again unwisely) jumped in and used EF-Core, Dependency injections, and may features Core had to offer. What i didn’t realize, is that i have a “leaf” 3rd-party library for handling Ebay actions, it is a.NET FW 4.0. I don’t want to refactor and port my code to Net4.0. How can I Load this Ebay assembly in it’s own.NET-FW AppContext while providing the interface between my NETCore1.1 App and my Net4.0 Library? I pulled the.Net Portability Analyzer and ran it on one of our PIAs.

We use tlbimp.exe to generate our PIAs. The tool finds a number of issues with the PIA. For instance, here is one of the Excel report lines: T:System.Runtime.InteropServices.ImportedFromTypeLibAttribute T:System.Runtime.InteropServices.ImportedFromTypeLibAttribute interop.SolidEdgeFrameworkLib Supported: 1.1+ Not supported Remove usage. Most of our issues are with InteropServices.

We have a couple System.Collections.ArrayList issues but they are supported in.Net Standard 2.0. So how would I go about removing these issues? Is there a tlbimp.exe parameter that helps avoid these issues? Or are COM apps that use PIAs just flat out of luck? Support Linq2Sql.

I really don’t care how marvellous EFnext is, I don’t want it. I already have a middle tier in which to place any business logic more complex than CRUD – my web services. I just need a minimal ORM with a simple designer that gets type mapping right and I only need it to talk to MSSQL. Linq2Sql provided that right from the beginning. EF on the other hand provides a raft of stuff I neither need nor want. In particular I don’t need or want you redesigning my access layer every ten minutes.

I need and want you to fsck off and leave it alone. So: please port Linq2Sql, and then stop. We’ve received a ton of feedback on this in.NET Core v1 and.NET Standard v2 and as a result, we’ve drastically reduced the number of packages needed in.NET Core 2.0 and.NET Standard 2.0. With respect to the usage of NuGet: the community has used NuGet well before us.

From the very beginning one of our key design tenets for.NET Core was meeting our customers where they already are. Whether that was the decision to use GitHub, to making our stack cross-platform, or whether it’s about making much more of the existing APIs available on.NET Core. You can argue that using NuGet has technological challenges as higher usage tends to push the envelope but I believe that pushing boundaries is what ensures we’re making the right investments to provide an experience our customers desire.

Posted :