Code Conversations - Channel 9

Follow Code Conversations - Channel 9
Share on
Copy link to clipboard

Join Jon Galloway and Maria Naggaga every Tuesday and Thursday as they chat with .NET open source developers. These are bite-sized conversations about open source libraries, cool .NET features, things you can use today. Code Conversations is brought to you by the .NET Foundation.

Microsoft

  • Aug 29, 2017 LATEST EPISODE
  • infrequent NEW EPISODES
  • 7m AVG DURATION
  • 25 EPISODES


Search for episodes from Code Conversations - Channel 9 with a specific topic:

Latest episodes from Code Conversations - Channel 9

Sayed Hashimi on Open Source .NET Core Project Templates

Play Episode Listen Later Aug 29, 2017 14:03


Sayed I. Hashimi overviews the new templating system for .NET Core 2.0.For more info, see this video which explains how to create templates for Visual Studio 2017 and dotnet new.

Sebastien Ros on ASP.NET Core MVC Resource Management

Play Episode Listen Later Aug 22, 2017 11:14


Shows how to manage resources like scripts and styles in ASP.NET Core MVC using the Orchard.ResourceManagement package (available for use independently as a NuGet package. This allows you to do some advanced things like inject scripts and styles from View Components and Partials, prevent duplicate registrations, and define resource dependencies.Code for this episode is available here: https://github.com/OrchardCMS/Orchard2/tree/master/src/OrchardCore/Orchard.ResourceManagement

Sebastien Ros on jint: a Javascript Interpreter for .NET

Play Episode Listen Later Aug 22, 2017 8:28


Sebastien Ros show how to use Jint. Jint is a Javascript interpreter for .NET which provides full ECMA 5.1 compliance and can run on any .NET platform. Because it doesn't generate any .NET bytecode nor use the DLR it runs relatively small scripts faster. It's available as a PCL on Nuget at https://www.nuget.org/packages/Jint.Code for this week's show: https://github.com/sebastienros/jint

Building Visual Studio Code Extensions with Sean McBreen

Play Episode Listen Later Aug 17, 2017 10:51


In this video, Sean McBreen gives us a quick tutorial on how to build Visual Studio Code extensions. To learn more about Visual Studio Code check out the following links:Visual Studio Code Roadmap How to build Visual Studio Code extensions.

The File API in IIS Administration API with Jimmy Campbell

Play Episode Listen Later Aug 15, 2017 9:05


Jimmy Campbell shows how you can use the IIS Administration API to manipulate files on your servers running IIS, then digs into the code to show how they secured remote file administration in .NET Core.Source code for this presentation: https://github.com/microsoft/iis.administration

Website Resource Implementation in IIS Administration API with Jimmy Campbell

Play Episode Listen Later Aug 15, 2017 7:31


Jimmy Campbell digs into the resources exposed by the IIS Administration API, then shows how they implemented the website resource.Source code for this presentation: https://github.com/microsoft/iis.administration

.NET Core Plugin Architecture in the IIS Administration API with Jimmy Campbell

Play Episode Listen Later Aug 15, 2017 6:14


Jimmy Campbell gives a tour of the IIS Administration API then shows how they implemented a plugin architecture in .NET Core.Source code for this presentation: https://github.com/microsoft/iis.administration

Getting Started with .NET Standard 2.0 Part 2 - with Immo Landwerth

Play Episode Listen Later Aug 10, 2017 4:34


In this video Immo gives a quick introduction to .NET Standard 2.0. To learn more about this please check out:Videos GitHub

Getting Started with .NET Standard 2.0 Part 1 with Immo Landwerth

Play Episode Listen Later Aug 10, 2017 7:21


In this video Immo gives a quick introduction to .NET Standard 2.0. To learn more about this please check out:Videos GitHub

Multi-stage build in Docker with Kendra Havens

Play Episode Listen Later Aug 3, 2017 8:49


In this video, Kendra Havens shows us the work her team has been doing on the multi-stage build in Docker. To learn more about this please check out https://github.com/dotnet/dotnet-docker

Introduction to .NET Docker Images with Kendra Havens

Play Episode Listen Later Aug 3, 2017 7:11


Kendra Havens gives us an inside look at the .NET Docker images. To get started on .NET on Docker check out the following links https://hub.docker.com/r/microsoft/dotnet/

Sharing MSBuild Tasks as NuGet Packages with Nate McMaster

Play Episode Listen Later Jul 18, 2017 3:17


Nate McMaster shows how to publish an MSBuild task as a NuGet package, allowing you to share it and reuse it in your own projects.The code for this episode is available here: https://github.com/CodeConversations/MSBuild-Features-With-Nate-McMaster/tree/master/Video-2

Advanced MSBuild Extensibility with Nate McMaster

Play Episode Listen Later Jul 18, 2017 3:49


Nate McMaster shows how to write your own MSBuild tasks in C#. Since you're developing your tasks in C#, you can use standard .NET libraries, debug your code, etc.The code for this episode is available here: https://github.com/CodeConversations/MSBuild-Features-With-Nate-McMaster/tree/master/Video-1

Introduction to MSBuild in .NET Core with Nate McMaster

Play Episode Listen Later Jul 13, 2017 5:08


Nate McMaster gives and introduction to using MSBuild in .NET Core project files. Watch as he runs through the basics in a new .NET Core application (using Visual Studio Code on a Mac), then shows off a few useful tricks including property imports, directory build properties, and running custom tasks like Gulp as part of your build.The code for this episode is available here: https://github.com/CodeConversations/MSBuild-Features-With-Nate-McMaster/tree/master/Video-0

LibraryInstaller with Mads Kristensen

Play Episode Listen Later Jul 6, 2017 6:38


Mads Kristensen show the code for a new Visual Studio feature that makes it easy to add client side libraries to your projects.Code for this episode is here: https://github.com/aspnet/libraryinstaller

Compiling LESS in Visual Studio with Mads Kristensen

Play Episode Listen Later Jul 6, 2017 6:26


Mads Kristensen shows off LessCompiler, an open source Visual Studio extension he built that makes it easy to compile LESS to CSS. He shows off some cool tips in the Visual Studio extension code that optimally loads and shells out to Node and npm packages.Code for this episode is here: https://github.com/madskristensen/lesscompiler

Build a chat app with SignalR Core - Mikael Mengistu

Play Episode Listen Later Jun 29, 2017 6:49


In this video Mikael Mengistu shows us how to build a simple chat app with SignalR Core.

Introduction to SignalR Core with Mikael Mengistu

Play Episode Listen Later Jun 29, 2017 3:53


Joins us as Mikael Mengistu gives us a quick overview of SignalR Core.To start exploring SignalR Core please checkout our repo.

Creating Custom Tag Helper Components with Jass Bagga

Play Episode Listen Later Jun 20, 2017 7:11


In this video Jass Bagga as she shows us how to Create Custom Tag Helper Components.To get started:download Visual Studio 2017 and .NET Core 2.0.0 preview1.Clone the repository and open the TagHelperComponentSample.sln

Introduction to Tag Helper Components with Jass Bagga

Play Episode Listen Later Jun 20, 2017 8:57


Jass Bagga gives as quick introduction to Tag Helper Components.Joins us as Jass shows us how to modify the HeadTagHelper and the BodyTagHelper in ASP.NET Core MVC 2.0.To get started:download Visual Studio 2017 and .NET Core 2.0.0 preview1.Clone the repository

Creating your own Tag Helpers

Play Episode Listen Later Jun 13, 2017 11:14


Taylor Mullen shows us how to create custom Tag Helpers. The TagHelper that was added in the show was the Markdown TagHelper. It enables you to write Markdown in your Views.Here's the repo for this episode: https://github.com/CodeConversations/Tag-Helper-with-Taylor-Mullen

Introduction to Tag Helpers with Taylor Mullen

Play Episode Listen Later Jun 13, 2017 10:05


Taylor Mullen gives us a quick introduction to Tag Helpers. Here's the repo for this episode : Introduction to Tag Helpers

How C# is Developed In The Open with Mads Torgersen

Play Episode Listen Later Jun 8, 2017 8:04


Mads Torgersen shows the C# Language is designed in the open.He shows how issues in the csharplang repository become proposals and shows a few language proposals. The proposals then go to language design meetings, and all the notes for those meetings are included in the repository as well. This open process allows for the community to proposed ideas and interact with the team all the way through release as an official language feature.Here's the repo for this episode: https://github.com/dotnet/csharplang

C# 7 Features with Mads Torgersen

Play Episode Listen Later Jun 8, 2017 14:03


Mads Torgersen takes us on a quick look at some C# 7 features by refactoring a fibonacci series generator.Here's the code: https://github.com/CodeConversations/csharp7-features-with-mads-torgersen

Welcome to Code Conversations!

Play Episode Listen Later Jun 8, 2017 0:38


Hi, welcome to Code Conversations! Jon and Maria introduce the show, where you'll see short, code focused interviews with .NET open source developers every Tuesday and Thursday.

Claim Code Conversations - Channel 9

In order to claim this podcast we'll send an email to with a verification link. Simply click the link and you will be able to edit tags, request a refresh, and other features to take control of your podcast page!

Claim Cancel