<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Yash Jayesh Chauhan</title>
    <description>The latest articles on DEV Community by Yash Jayesh Chauhan (@iyashjayesh).</description>
    <link>https://dev.to/iyashjayesh</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F453861%2Fb71d861e-c585-41d8-a20c-4b5abcf33256.jpeg</url>
      <title>DEV Community: Yash Jayesh Chauhan</title>
      <link>https://dev.to/iyashjayesh</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/iyashjayesh"/>
    <language>en</language>
    <item>
      <title>ASP.NET — Create your first “Hello World!” web app in 5 minutes</title>
      <dc:creator>Yash Jayesh Chauhan</dc:creator>
      <pubDate>Tue, 27 Oct 2020 11:37:30 +0000</pubDate>
      <link>https://dev.to/iyashjayesh/asp-net-create-your-first-hello-world-web-app-in-5-minutes-2fai</link>
      <guid>https://dev.to/iyashjayesh/asp-net-create-your-first-hello-world-web-app-in-5-minutes-2fai</guid>
      <description>&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--KJ57dkx8--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/iowowkw8e4h7k5ibh580.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--KJ57dkx8--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/iowowkw8e4h7k5ibh580.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  ASP.NET is an open-source web framework, created by Microsoft, for building modern web apps and services with .NET. ASP.NET is cross-platform and runs on Windows, Linux, macOS, and Docker.
&lt;/h1&gt;

&lt;h2&gt;
  
  
  Purpose
&lt;/h2&gt;

&lt;p&gt;We’ll be Installing and creating our very first Hello World ASP.NET web app that displays a Hello World! message on a web page.&lt;/p&gt;

&lt;h2&gt;
  
  
  Prerequisites
&lt;/h2&gt;

&lt;p&gt;None.&lt;br&gt;
But I’ll be using Visual Studio Code. You guys can choose whatever IDE you’re comfy with. &lt;br&gt;
So let’s dive into it!&lt;br&gt;
Step 1: (Installation)&lt;br&gt;
To start building .NET apps, download and install the .NET SDK (Software Development Kit). (Link to Download) If you’re using an older version of windows (Windows 7 / Vista / 8.1 / Server 2008 R2 / Server 2012) you need to install additional dependencies.&lt;br&gt;
After successfully installing .NET SDK into the system just verify it using our command prompt by using the following command:&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--TLMiZgYO--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/pe2vhfh28urtxjrci4yq.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--TLMiZgYO--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/pe2vhfh28urtxjrci4yq.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;br&gt;
If the command runs, printing out information about how to use dotnet, then you’re good to go.&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 2: (Create the Web app)
&lt;/h2&gt;

&lt;p&gt;Open your command prompt and run the following command:&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--AO3QjHx3--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/37niz0v30jqklc9algpq.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--AO3QjHx3--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/37niz0v30jqklc9algpq.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--omtis-3c--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/ms7pry3wt3mq6s4mkt86.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--omtis-3c--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/ms7pry3wt3mq6s4mkt86.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;br&gt;
The dotnet new is the command to creates a new application. The webApp parameter selects what template to use when creating your app. The -o parameter creates a directory named TestWebApp where your app is stored and the --no-https flag specifies not to enable HTTPS.&lt;/p&gt;

&lt;h2&gt;
  
  
  Several files were created in the TestWebApp directory, to give you a simple web application that is ready to run.
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--ivq8ctP5--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/h3mendfuskomyrudjnkk.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ivq8ctP5--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/h3mendfuskomyrudjnkk.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;br&gt;
Startup.cs contains all the settings and the configurations.&lt;br&gt;
The TestWebApp/Pages the directory contains some example web pages for the application.&lt;br&gt;
TestWebApp.csproj defines what libraries are referenced etc.&lt;/p&gt;

&lt;h1&gt;
  
  
  Step 3: (Run your Web App)
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--scDgw4Z6--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/qstap5l8hjwmb4llfqut.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--scDgw4Z6--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/qstap5l8hjwmb4llfqut.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Once the command completes, browse to &lt;a href="http://localhost:5000"&gt;http://localhost:5000&lt;/a&gt; ##Congratulations, you’ve built and run your first .NET web app!
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--xDZnIfGh--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/gkzao7tcfy2mxb7wdwkm.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--xDZnIfGh--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/gkzao7tcfy2mxb7wdwkm.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;br&gt;
To Edit your code:&lt;br&gt;
Open Pages/Index.cshtml in any text editor and replace all of the code with the following, then save the file.&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--vE7u6Rgk--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/592is4dr1n42vn1g0pkf.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--vE7u6Rgk--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/592is4dr1n42vn1g0pkf.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Re-run your app using the previous dotnet run the command that is running the site locally, then run the following command to re-launch the site:
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--78iXBfrL--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/vrvvmcig5a8zgwygk8pn.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--78iXBfrL--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/vrvvmcig5a8zgwygk8pn.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;br&gt;
Here you go!&lt;br&gt;
If I have missed something, please add it so other readers can benefit from it.&lt;/p&gt;

&lt;h1&gt;
  
  
  Linkedin: &lt;a href="https://www.linkedin.com/in/iyashjayesh/"&gt;https://www.linkedin.com/in/iyashjayesh/&lt;/a&gt;
&lt;/h1&gt;

&lt;h2&gt;
  
  
  Thanks for reading and keep coding 😄
&lt;/h2&gt;

</description>
      <category>dotnet</category>
      <category>vscode</category>
      <category>computerscience</category>
      <category>webdev</category>
    </item>
    <item>
      <title>What should a Microsoft Learn Student Ambassador follow?</title>
      <dc:creator>Yash Jayesh Chauhan</dc:creator>
      <pubDate>Mon, 17 Aug 2020 05:36:13 +0000</pubDate>
      <link>https://dev.to/iyashjayesh/what-should-a-microsoft-learn-student-ambassador-follow-9ej</link>
      <guid>https://dev.to/iyashjayesh/what-should-a-microsoft-learn-student-ambassador-follow-9ej</guid>
      <description>&lt;p&gt;Here are some key points that every #MSFT Learn Student Ambassador should follow:&lt;/p&gt;

&lt;p&gt;-&amp;gt; Learn more about the latest technologies and particularly Microsoft technologies.&lt;/p&gt;

&lt;p&gt;To learn about the latest technologies and particularly Microsoft technologies Microsoft Learn is the resource for an MSLA and It is a free, online training platform that provides interactive learning for Microsoft products and more.&lt;br&gt;
Here's the link- &lt;a href="https://lnkd.in/dwCq27R"&gt;https://lnkd.in/dwCq27R&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;-&amp;gt; Grow your skills and build a reputation as a tech insider&lt;/p&gt;

&lt;p&gt;-&amp;gt; Host tech events, workshops, and hackathons&lt;br&gt;
You can also consider what technology skills your peers and fellow students would love to learn. You can also download some ready-to-go content from Major League Hacking and use it as a workshop in a box with all the materials needed to get started.&lt;/p&gt;

&lt;p&gt;Here's the link- &lt;a href="https://localhost.mlh.io/"&gt;https://localhost.mlh.io/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You can also use some resources from Microsoft Learn- &lt;a href="https://lnkd.in/dCpJZp2"&gt;https://lnkd.in/dCpJZp2&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;-&amp;gt; Build and grow a community of students on-campus and online.&lt;/p&gt;

&lt;p&gt;Feel free to add more in the comment section. Thanks for reading!&lt;/p&gt;

</description>
      <category>computerscience</category>
    </item>
  </channel>
</rss>
