Skip to main content

Join the .NET Team at Microsoft Build 2023!

Are you ready for Build 2023? Microsoft’s premier developer conference is just around the corner, and there are several exciting .NET sessions that you won’t want to miss!

Microsoft Build 2023 - Scott

This year Microsoft Build is both virtual and in-person in Seattle, Washington! You will be able to watch many sessions live online, but if you are joining us in person this year, the .NET team will be there with in-person only sessions, meet the experts, demo areas, workshps, and more!

.NET Sessions at Build

Be sure to browse all of the Build sessions online, but here is a sampling of some of the .NET sessions that will offer a detailed dive into what we’re currently developing for .NET 8, with a strong technical focus.

All things client and mobile app development with .NET Code, test, ship, and continuously improve your mobile and desktop applications with the latest release of .NET Multi-platform App UI (MAUI). From the latest UI controls and native platform integrations on Android, iOS, macOS, and Windows to sharing more code with web technologies like Blazor, Angular, and ReactJS, learn how can achieve more with .NET MAUI, Visual Studio, and Microsoft Azure.

Cloud-native development with .NET 8 Join us to learn about .NET for cloud-native development. Discover updates in .NET 8.0 with new libraries for high-performance services on any cloud. Native AOT makes apps smaller and faster. .NET’s Open Telemetry support provides end-to-end visibility. See demos of .NET 8.0 and the future of cloud-native development, plus a special announcement. Don’t miss out!

Deep dive into .NET performance and native AOT Join us for a deep dive into .NET performance and native AOT compilation, as we explore the latest advancements and goals for .NET 8. We cover various tools and techniques involved in optimizing .NET apps, including reducing allocations, minimizing startup time, and exploring minimal container constraints. Learn how to build highly performant .NET apps that can run on any platform and meet the demands of modern cloud-native environments.

What’s new in C# 12 and beyond Take a tour of upcoming language features in C#. While still very much in the works, C# 12 is starting to take shape. We touch on some of the longer-term work that the language design team is focused on.

What’s new in .NET 8 for Web, frontends, backends, and futures? Join this session to explore new features in .NET 8 for web frontends, backends, and future development. Discover how .NET 8 enhances web app development with better performance, new APIs, and modern development support. Get guidance on leveraging these tools for scalable, efficient cloud apps. Suitable for both experienced and new .NET developers, this session offers valuable insights into the latest developments in .NET 8 for web development.

Kickstart your .NET modernization journey with the RWA pattern The reliable web app pattern helps migrate web apps to the cloud with high performance, security, reliability, and operations. Based on the Azure Well-Architected Framework, it sets a strong foundation for future modernization in Microsoft Azure. Learn how to optimize cost and performance with minimal changes from on-premises to Azure. Join us to improve your web app’s reliability in Azure with best practices.

Cards with information about event details for sessions, keynotes, and Q&A

Live Q&As with the .NET Teams

In addition to full sessions at Build there will be live Q&A sessions if ou are attending in-person. This give you the opportunity to chat and get your questions answered live.

Hangout with Scott Hanselman

There’s also a featured session with Scott Hanselman that you’ll want to bookmark:

Developer joy with Scott Hanselman and friends Windows is the best platform for developers. Developing should be a joy, and your environment should do everything it can to make you most successful. Join Hanselman and friends as we explore the last half-decade of developer innovation in Windows and offer a sneak peek into what’s coming soon to make Windows even more powerful for devs of all kinds.

Register Today!

Ready to register for Build 2023? Don’t miss out on these exciting sessions and more! Check out the link below to register today for hanging with us in-person at Build or virtually online!

And don’t forget to watch this video from Scott Hanselman to get a sneak peek of what’s in store for Build 2023.

We can’t wait to see you there!

The post Join the .NET Team at Microsoft Build 2023! appeared first on .NET Blog.



source https://devblogs.microsoft.com/dotnet/microsoft-build-2023-and-dotnet/

Comments

Popular posts from this blog

Fake CVR Generator Denmark

What Is Danish CVR The Central Business Register (CVR) is the central register of the state with information on all Danish companies. Since 1999, the Central Business Register has been the authoritative register for current and historical basic data on all registered companies in Denmark. Data comes from the companies' own registrations on Virk Report. There is also information on associations and public authorities in the CVR. As of 2018, CVR also contains information on Greenlandic companies, associations and authorities. In CVR at Virk you can do single lookups, filtered searches, create extracts and subscriptions, and retrieve a wide range of company documents and transcripts. Generate Danish CVR For Test (Fake) Click the button below to generate the valid CVR number for Denmark. You can click multiple times to generate several numbers. These numbers can be used to Test your sofware application that uses CVR, or Testing CVR APIs that Danish Govt provide. Generate

How To Iterate Dictionary Object

Dictionary is a object that can store values in Key-Value pair. its just like a list, the only difference is: List can be iterate using index(0-n) but not the Dictionary . Generally when we try to iterate the dictionary we get below error: " Collection was modified; enumeration operation may not execute. " So How to parse a dictionary and modify its values?? To iterate dictionary we must loop through it's keys or key - value pair. Using keys

How To Append Data to HTML5 localStorage or sessionStorage?

The localStorage property allows you to access a local Storage object. localStorage is similar to sessionStorage. The only difference is that, while data stored in localStorage has no expiration time untill unless user deletes his cache, data stored in sessionStorage gets cleared when the originating window or tab get closed. These are new HTML5 objects and provide these methods to deal with it: The following snippet accesses the current domain's local Storage object and adds a data item to it using Storage.setItem() . localStorage.setItem('myFav', 'Taylor Swift'); or you can use the keyname directly as : localStorage.myFav = 'Taylor Swift'; To grab the value set in localStorage or sessionStorage, we can use localStorage.getItem("myFav"); or localStorage.myFav There's no append function for localStorage or sessionStorage objects. It's not hard to write one though.The simplest solution goes here: But we can kee