{"id":2343,"date":"2024-06-12T06:36:40","date_gmt":"2024-06-12T06:36:40","guid":{"rendered":"https:\/\/www.techcronus.com\/blog\/?p=2343"},"modified":"2025-03-03T06:14:10","modified_gmt":"2025-03-03T06:14:10","slug":"get-started-with-dotnet-ai-quickstarts","status":"publish","type":"post","link":"https:\/\/www.techcronus.com\/blog\/get-started-with-dotnet-ai-quickstarts\/","title":{"rendered":"Getting Started with .NET 8 and AI: Quickstart Tutorials"},"content":{"rendered":"<div id=\"ez-toc-container\" class=\"ez-toc-v2_0_76 counter-hierarchy ez-toc-counter ez-toc-grey ez-toc-container-direction\">\n<div class=\"ez-toc-title-container\">\n<p class=\"ez-toc-title\" style=\"cursor:inherit\">Table of Contents<\/p>\n<span class=\"ez-toc-title-toggle\"><\/span><\/div>\n<nav><ul class='ez-toc-list ez-toc-list-level-1 ' ><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-1\" href=\"https:\/\/www.techcronus.com\/blog\/get-started-with-dotnet-ai-quickstarts\/#Introduction\" >Introduction<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-2\" href=\"https:\/\/www.techcronus.com\/blog\/get-started-with-dotnet-ai-quickstarts\/#Prerequisites\" >Prerequisites<\/a><ul class='ez-toc-list-level-3' ><li class='ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-3\" href=\"https:\/\/www.techcronus.com\/blog\/get-started-with-dotnet-ai-quickstarts\/#Tutorial_1_Setting_Up_Your_NET_8_Environment\" >Tutorial 1: Setting Up Your .NET 8 Environment<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-4\" href=\"https:\/\/www.techcronus.com\/blog\/get-started-with-dotnet-ai-quickstarts\/#Tutorial_2_Building_Your_First_AI_Model\" >Tutorial 2: Building Your First AI Model<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-5\" href=\"https:\/\/www.techcronus.com\/blog\/get-started-with-dotnet-ai-quickstarts\/#Tutorial_3_Integrating_AI_into_Your_Application\" >Tutorial 3: Integrating AI into Your Application<\/a><\/li><\/ul><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-6\" href=\"https:\/\/www.techcronus.com\/blog\/get-started-with-dotnet-ai-quickstarts\/#Conclusion\" >Conclusion<\/a><\/li><\/ul><\/nav><\/div>\n<h2><span class=\"ez-toc-section\" id=\"Introduction\"><\/span><strong>Introduction<\/strong><span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p><span style=\"font-weight: 400;\">With the release of .NET 8, Microsoft has introduced powerful new features and enhancements that make it an excellent choice for developing AI applications. Whether you are a seasoned developer or just starting with AI, <\/span><a href=\"https:\/\/www.techcronus.com\/blog\/dot-net-8-features\"><span style=\"font-weight: 400;\">.NET 8<\/span><\/a><span style=\"font-weight: 400;\"> provides a robust framework and tools to streamline your development process. In this article, we&#8217;ll explore some quickstart tutorials to help you dive into .NET 8 and AI.<\/span><\/p>\n<h2><span class=\"ez-toc-section\" id=\"Prerequisites\"><\/span><strong>Prerequisites<\/strong><span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p><span style=\"font-weight: 400;\">Before diving into the tutorials, ensure you have the following prerequisites installed:<\/span><\/p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><b>.NET 8 SDK<\/b><span style=\"font-weight: 400;\">: Download and install the .NET 8 SDK from dotnet.microsoft.com.<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Visual Studio or Visual Studio Code<\/b><span style=\"font-weight: 400;\">: Choose your preferred IDE. Visual Studio provides a rich integrated environment, while Visual Studio Code offers lightweight flexibility.<\/span><\/li>\n<\/ol>\n<h3><span class=\"ez-toc-section\" id=\"Tutorial_1_Setting_Up_Your_NET_8_Environment\"><\/span><strong>Tutorial 1: Setting Up Your .NET 8 Environment<\/strong><span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p><b style=\"font-family: var(--list--font-family); background-color: var(--global--color-background); color: var(--global--color-primary); font-size: var(--global--font-size-base);\">1. Create a New Project<\/b><span style=\"font-weight: 400;\">:<\/span><\/p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Open your IDE (Visual Studio or Visual Studio Code).<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Create a new .NET 8 project:<\/span><\/li>\n<\/ul>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0dotnet new console -n MyAIProject<\/span><\/p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">This command creates a new console application named <\/span><span style=\"font-weight: 400;\">MyAIProject<\/span><span style=\"font-weight: 400;\">.<\/span><\/li>\n<\/ul>\n<p><b>2. Install Required Packages<\/b><span style=\"font-weight: 400;\">:<\/span><\/p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Navigate to your project directory and install the required AI packages:<\/span><\/li>\n<\/ul>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0dotnet add package Microsoft.ML<\/span><\/p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">This package includes the necessary libraries for machine learning in .NET.<\/span><\/li>\n<\/ul>\n<h3><span class=\"ez-toc-section\" id=\"Tutorial_2_Building_Your_First_AI_Model\"><\/span><strong>Tutorial 2: Building Your First AI Model<\/strong><span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p><b style=\"font-family: var(--list--font-family); background-color: var(--global--color-background); color: var(--global--color-primary); font-size: var(--global--font-size-base);\">1. Import Necessary Libraries<\/b><span style=\"font-weight: 400;\">:<\/span><\/p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Open your <\/span><span style=\"font-weight: 400;\">Program.cs<\/span><span style=\"font-weight: 400;\"> file.<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Add the following using the statement at the top:<\/span><\/li>\n<\/ul>\n<p><span style=\"font-weight: 400;\">\u00a0using<\/span><span style=\"font-weight: 400;\"> Microsoft.ML;<\/span><\/p>\n<p><b style=\"font-family: var(--list--font-family); background-color: var(--global--color-background); color: var(--global--color-primary); font-size: var(--global--font-size-base);\">2. Define Your Model<\/b><span style=\"font-weight: 400;\">:<\/span><\/p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Add code to define and train your model. For example:<\/span><\/li>\n<\/ul>\n<p><span style=\"font-weight: 400;\">\/\/ Define your data model<\/span><\/p>\n<p><span style=\"font-weight: 400;\">public class SampleData<\/span><\/p>\n<p><span style=\"font-weight: 400;\">{<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0public float Feature1 { get; set; }<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0public float Feature2 { get; set; }<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0public float Label { get; set; }<\/span><\/p>\n<p><span style=\"font-weight: 400;\">}<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\/\/ Load data<\/span><\/p>\n<p><span style=\"font-weight: 400;\">var data = new List&lt;SampleData&gt;<\/span><\/p>\n<p><span style=\"font-weight: 400;\">{<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0new SampleData { Feature1 = 0.2f, Feature2 = 0.5f, Label = 1.0f },<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0new SampleData { Feature1 = 0.4f, Feature2 = 0.7f, Label = 1.0f },<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0\/\/ Add more data&#8230;<\/span><\/p>\n<p><span style=\"font-weight: 400;\">};<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\/\/ Create a learning pipeline<\/span><\/p>\n<p><span style=\"font-weight: 400;\">var pipeline = mlContext.Transforms.Concatenate(&#8220;Features&#8221;, &#8220;Feature1&#8221;, &#8220;Feature2&#8221;)<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0.Append(mlContext.BinaryClassification.Trainers.LbfgsLogisticRegression());<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\/\/ Train your model<\/span><\/p>\n<p><span style=\"font-weight: 400;\">var model = pipeline.Fit(mlContext.Data.LoadFromEnumerable(data));<\/span><\/p>\n<p><b style=\"font-family: var(--list--font-family); background-color: var(--global--color-background); color: var(--global--color-primary); font-size: var(--global--font-size-base);\">3. Evaluate and Use Your Model<\/b><span style=\"font-weight: 400;\">:<\/span><\/p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Add code to evaluate and use your trained model for predictions.<\/span><\/li>\n<\/ul>\n<h3><span class=\"ez-toc-section\" id=\"Tutorial_3_Integrating_AI_into_Your_Application\"><\/span><strong>Tutorial 3: Integrating AI into Your Application<\/strong><span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p><b style=\"font-family: var(--list--font-family); background-color: var(--global--color-background); color: var(--global--color-primary); font-size: var(--global--font-size-base);\">1. Build a Prediction Engine<\/b><span style=\"font-weight: 400;\">:<\/span><\/p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Modify your <\/span><span style=\"font-weight: 400;\">Program.cs<\/span><span style=\"font-weight: 400;\"> to include a prediction engine:<\/span><\/li>\n<\/ul>\n<p><span style=\"font-weight: 400;\">\/\/ Create a prediction engine<\/span><\/p>\n<p><span style=\"font-weight: 400;\">var predictionEngine = mlContext.Model.CreatePredictionEngine&lt;SampleData, Prediction&gt;(model);<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\/\/ Make predictions<\/span><\/p>\n<p><span style=\"font-weight: 400;\">var prediction = predictionEngine.Predict(new SampleData { Feature1 = 0.1f, Feature2 = 0.3f });<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Console.WriteLine($&#8221;Prediction: {prediction.PredictedLabel}&#8221;);<\/span><\/p>\n<p><b>2. Run Your Application<\/b><span style=\"font-weight: 400;\">:<\/span><\/p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Build and run your application to see the AI model in action:<\/span><\/li>\n<\/ul>\n<p><span style=\"font-weight: 400;\">dotnet run<\/span><\/p>\n<h2><span class=\"ez-toc-section\" id=\"Conclusion\"><\/span><strong>Conclusion<\/strong><span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p><span style=\"font-weight: 400;\">In this article, we&#8217;ve covered the basics of getting started with <\/span><span style=\"font-weight: 400;\">ASP NET 8<\/span><span style=\"font-weight: 400;\"> and AI through quickstart tutorials. From setting up your development environment to building and integrating your first AI model, .NET 8 offers a seamless experience for AI development. As you continue your journey, explore additional features and libraries available in .NET 8 to enhance your AI applications further.<\/span><\/p>\n<p><a href=\"https:\/\/www.techcronus.com\/contact-us\"><span style=\"font-weight: 400;\">Connect with us<\/span><\/a><span style=\"font-weight: 400;\"> to start building intelligent applications with .NET 8 today and unleash the power of AI in your projects!<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction With the release of .NET 8, Microsoft has introduced powerful new features and enhancements that make it an excellent choice for developing AI applications. Whether you are a seasoned developer or just starting with AI, .NET 8 provides a robust framework and tools to streamline your development process. In this article, we&rsquo;ll explore some&hellip; <a class=\"more-link\" href=\"https:\/\/www.techcronus.com\/blog\/get-started-with-dotnet-ai-quickstarts\/\">Continue reading <span class=\"screen-reader-text\">Getting Started with .NET 8 and AI: Quickstart Tutorials<\/span><\/a><\/p>\n","protected":false},"author":7,"featured_media":2345,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[20,243],"class_list":["post-2343","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-net-development","category-chatbot-development","entry"],"acf":[],"aioseo_notices":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Getting Started with .NET 8 and AI: Quickstart Tutorials<\/title>\n<meta name=\"description\" content=\"Learn how to leverage .NET 8 for AI development with new quickstart tutorials. Start building an AI-powered app quickly and efficiently.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.techcronus.com\/blog\/get-started-with-dotnet-ai-quickstarts\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Getting Started with .NET 8 and AI: Quickstart Tutorials\" \/>\n<meta property=\"og:description\" content=\"Learn how to leverage .NET 8 for AI development with new quickstart tutorials. Start building an AI-powered app quickly and efficiently.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.techcronus.com\/blog\/get-started-with-dotnet-ai-quickstarts\/\" \/>\n<meta property=\"og:site_name\" content=\"Techcronus Tech Blog &amp; Insights\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Techcronus\" \/>\n<meta property=\"article:published_time\" content=\"2024-06-12T06:36:40+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-03-03T06:14:10+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.techcronus.com\/blog\/wp-content\/uploads\/2024\/06\/Getting-Started-with-.NET-8-and-AI-Quickstart-Tutorials.png\" \/>\n\t<meta property=\"og:image:width\" content=\"2048\" \/>\n\t<meta property=\"og:image:height\" content=\"1152\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Niket Shah\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"Getting Started with .NET 8 and AI: Quickstart Tutorials\" \/>\n<meta name=\"twitter:description\" content=\"Learn how to leverage .NET 8 for AI development with new quickstart tutorials. Start building an AI-powered app quickly and efficiently.\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/www.techcronus.com\/blog\/wp-content\/uploads\/2024\/06\/Getting-Started-with-.NET-8-and-AI-Quickstart-Tutorials.png\" \/>\n<meta name=\"twitter:creator\" content=\"@Techcronus\" \/>\n<meta name=\"twitter:site\" content=\"@Techcronus\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Niket Shah\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Getting Started with .NET 8 and AI: Quickstart Tutorials","description":"Learn how to leverage .NET 8 for AI development with new quickstart tutorials. Start building an AI-powered app quickly and efficiently.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.techcronus.com\/blog\/get-started-with-dotnet-ai-quickstarts\/","og_locale":"en_US","og_type":"article","og_title":"Getting Started with .NET 8 and AI: Quickstart Tutorials","og_description":"Learn how to leverage .NET 8 for AI development with new quickstart tutorials. Start building an AI-powered app quickly and efficiently.","og_url":"https:\/\/www.techcronus.com\/blog\/get-started-with-dotnet-ai-quickstarts\/","og_site_name":"Techcronus Tech Blog &amp; Insights","article_publisher":"https:\/\/www.facebook.com\/Techcronus","article_published_time":"2024-06-12T06:36:40+00:00","article_modified_time":"2025-03-03T06:14:10+00:00","og_image":[{"width":2048,"height":1152,"url":"https:\/\/www.techcronus.com\/blog\/wp-content\/uploads\/2024\/06\/Getting-Started-with-.NET-8-and-AI-Quickstart-Tutorials.png","type":"image\/png"}],"author":"Niket Shah","twitter_card":"summary_large_image","twitter_title":"Getting Started with .NET 8 and AI: Quickstart Tutorials","twitter_description":"Learn how to leverage .NET 8 for AI development with new quickstart tutorials. Start building an AI-powered app quickly and efficiently.","twitter_image":"https:\/\/www.techcronus.com\/blog\/wp-content\/uploads\/2024\/06\/Getting-Started-with-.NET-8-and-AI-Quickstart-Tutorials.png","twitter_creator":"@Techcronus","twitter_site":"@Techcronus","twitter_misc":{"Written by":"Niket Shah","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["Article","BlogPosting"],"@id":"https:\/\/www.techcronus.com\/blog\/get-started-with-dotnet-ai-quickstarts\/#article","isPartOf":{"@id":"https:\/\/www.techcronus.com\/blog\/get-started-with-dotnet-ai-quickstarts\/"},"author":{"name":"Niket Shah","@id":"https:\/\/www.techcronus.com\/blog\/#\/schema\/person\/d439d6c8fdcadddaa7b8b72b815bc895"},"headline":"Getting Started with .NET 8 and AI: Quickstart Tutorials","datePublished":"2024-06-12T06:36:40+00:00","dateModified":"2025-03-03T06:14:10+00:00","mainEntityOfPage":{"@id":"https:\/\/www.techcronus.com\/blog\/get-started-with-dotnet-ai-quickstarts\/"},"wordCount":470,"commentCount":0,"publisher":{"@id":"https:\/\/www.techcronus.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.techcronus.com\/blog\/get-started-with-dotnet-ai-quickstarts\/#primaryimage"},"thumbnailUrl":"https:\/\/www.techcronus.com\/blog\/wp-content\/uploads\/2024\/06\/Getting-Started-with-.NET-8-and-AI-Quickstart-Tutorials.png","keywords":[".Net 8 Features",".NET 8 for AI",".NET 8 for AI development",".net application development company",".NET Core Development","AI development","asp net application development services","ASP.NET Development company","OpenAI chatbot development company","OpenAI\u2019s ChatGPT"],"articleSection":[".Net Development","Chatbot Development"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.techcronus.com\/blog\/get-started-with-dotnet-ai-quickstarts\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.techcronus.com\/blog\/get-started-with-dotnet-ai-quickstarts\/","url":"https:\/\/www.techcronus.com\/blog\/get-started-with-dotnet-ai-quickstarts\/","name":"Getting Started with .NET 8 and AI: Quickstart Tutorials","isPartOf":{"@id":"https:\/\/www.techcronus.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.techcronus.com\/blog\/get-started-with-dotnet-ai-quickstarts\/#primaryimage"},"image":{"@id":"https:\/\/www.techcronus.com\/blog\/get-started-with-dotnet-ai-quickstarts\/#primaryimage"},"thumbnailUrl":"https:\/\/www.techcronus.com\/blog\/wp-content\/uploads\/2024\/06\/Getting-Started-with-.NET-8-and-AI-Quickstart-Tutorials.png","datePublished":"2024-06-12T06:36:40+00:00","dateModified":"2025-03-03T06:14:10+00:00","description":"Learn how to leverage .NET 8 for AI development with new quickstart tutorials. Start building an AI-powered app quickly and efficiently.","breadcrumb":{"@id":"https:\/\/www.techcronus.com\/blog\/get-started-with-dotnet-ai-quickstarts\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.techcronus.com\/blog\/get-started-with-dotnet-ai-quickstarts\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.techcronus.com\/blog\/get-started-with-dotnet-ai-quickstarts\/#primaryimage","url":"https:\/\/www.techcronus.com\/blog\/wp-content\/uploads\/2024\/06\/Getting-Started-with-.NET-8-and-AI-Quickstart-Tutorials.png","contentUrl":"https:\/\/www.techcronus.com\/blog\/wp-content\/uploads\/2024\/06\/Getting-Started-with-.NET-8-and-AI-Quickstart-Tutorials.png","width":2048,"height":1152,"caption":".NET 8 for AI"},{"@type":"BreadcrumbList","@id":"https:\/\/www.techcronus.com\/blog\/get-started-with-dotnet-ai-quickstarts\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/www.techcronus.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Getting Started with .NET 8 and AI: Quickstart Tutorials"}]},{"@type":"WebSite","@id":"https:\/\/www.techcronus.com\/blog\/#website","url":"https:\/\/www.techcronus.com\/blog\/","name":"Techcronus Business Solutions","description":"","publisher":{"@id":"https:\/\/www.techcronus.com\/blog\/#organization"},"alternateName":"Techcronus","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.techcronus.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.techcronus.com\/blog\/#organization","name":"Techcronus Business Solutions Pvt. Ltd.","url":"https:\/\/www.techcronus.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.techcronus.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.techcronus.com\/blog\/wp-content\/uploads\/2022\/06\/tech-blck-logo.png","contentUrl":"https:\/\/www.techcronus.com\/blog\/wp-content\/uploads\/2022\/06\/tech-blck-logo.png","width":434,"height":88,"caption":"Techcronus Business Solutions Pvt. Ltd."},"image":{"@id":"https:\/\/www.techcronus.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/Techcronus","https:\/\/x.com\/Techcronus","https:\/\/www.instagram.com\/techcronus","https:\/\/www.behance.net\/techcronus","https:\/\/in.linkedin.com\/company\/techcronus-business-solutions"]},{"@type":"Person","@id":"https:\/\/www.techcronus.com\/blog\/#\/schema\/person\/d439d6c8fdcadddaa7b8b72b815bc895","name":"Niket Shah","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.techcronus.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/80f975e03586d914de7222a7e6120ec91c31ee31c47b752dc61074dd7f9ddc2f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/80f975e03586d914de7222a7e6120ec91c31ee31c47b752dc61074dd7f9ddc2f?s=96&d=mm&r=g","caption":"Niket Shah"},"description":"Steering Techcronus Business Solutions through a transformative era in operations, my expertise in process optimization and quality management systems has been pivotal. With over two years at the helm, our team has enhanced practices across tech verticals, driving efficiency and quality in project deliverables."}]}},"_links":{"self":[{"href":"https:\/\/www.techcronus.com\/blog\/wp-json\/wp\/v2\/posts\/2343","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.techcronus.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.techcronus.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.techcronus.com\/blog\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/www.techcronus.com\/blog\/wp-json\/wp\/v2\/comments?post=2343"}],"version-history":[{"count":4,"href":"https:\/\/www.techcronus.com\/blog\/wp-json\/wp\/v2\/posts\/2343\/revisions"}],"predecessor-version":[{"id":3560,"href":"https:\/\/www.techcronus.com\/blog\/wp-json\/wp\/v2\/posts\/2343\/revisions\/3560"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.techcronus.com\/blog\/wp-json\/wp\/v2\/media\/2345"}],"wp:attachment":[{"href":"https:\/\/www.techcronus.com\/blog\/wp-json\/wp\/v2\/media?parent=2343"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.techcronus.com\/blog\/wp-json\/wp\/v2\/categories?post=2343"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}