<?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: Abbos Haydarov</title>
    <description>The latest articles on DEV Community by Abbos Haydarov (@abboshaydarov).</description>
    <link>https://dev.to/abboshaydarov</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%2F2290568%2Ff762cc23-5eab-492d-b508-1f7d69c12afe.png</url>
      <title>DEV Community: Abbos Haydarov</title>
      <link>https://dev.to/abboshaydarov</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/abboshaydarov"/>
    <language>en</language>
    <item>
      <title>🚀 **Essential Terminal Commands for C#/.NET Developers** 🚀</title>
      <dc:creator>Abbos Haydarov</dc:creator>
      <pubDate>Mon, 28 Oct 2024 07:23:41 +0000</pubDate>
      <link>https://dev.to/abboshaydarov/essential-terminal-commands-for-cnet-developers-3bl</link>
      <guid>https://dev.to/abboshaydarov/essential-terminal-commands-for-cnet-developers-3bl</guid>
      <description>&lt;p&gt;Today, I'm sharing a list of super useful terminal commands that can simplify your daily work in C#/.NET and boost your productivity. Whether you’re navigating folders, managing projects, or running .NET applications, these commands have you covered. Let’s dive in! 💻&lt;/p&gt;

&lt;h3&gt;
  
  
  🌲 Basic Navigation and File Commands
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;&lt;code&gt;ls&lt;/code&gt;&lt;/strong&gt; - Lists all folders and files in the current directory.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&lt;code&gt;mkdir &amp;lt;foldername&amp;gt;&lt;/code&gt;&lt;/strong&gt; - Creates a new folder with the specified name.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&lt;code&gt;cd &amp;lt;foldername&amp;gt;&lt;/code&gt;&lt;/strong&gt; - Changes the directory to the specified folder.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  🛠️ Creating and Managing .NET Projects
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;&lt;code&gt;dotnet new sln&lt;/code&gt;&lt;/strong&gt; - Creates a new solution file for managing projects.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&lt;code&gt;dotnet new console -n &amp;lt;projectname&amp;gt;&lt;/code&gt;&lt;/strong&gt; - Creates a new console application project. You can change &lt;code&gt;&amp;lt;projectname&amp;gt;&lt;/code&gt; to any name you like!&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&lt;code&gt;dotnet sln add &amp;lt;projectname&amp;gt;&lt;/code&gt;&lt;/strong&gt; - Adds a created project to your solution file for easy management.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  🚀 Building and Running Your Project
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;&lt;code&gt;dotnet build&lt;/code&gt;&lt;/strong&gt; - Builds your .NET project, checking for errors and preparing it to run.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&lt;code&gt;dotnet run&lt;/code&gt;&lt;/strong&gt; - Runs the .NET project you’ve built, helping you quickly test it.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  🔍 Additional Handy Commands
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;&lt;code&gt;dotnet restore&lt;/code&gt;&lt;/strong&gt; - Restores dependencies and project-specific tools, useful if you have a &lt;code&gt;*.csproj&lt;/code&gt; file with NuGet packages to manage.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&lt;code&gt;dotnet clean&lt;/code&gt;&lt;/strong&gt; - Cleans up the build output, often used before building a fresh version of your project.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&lt;code&gt;dotnet publish -c Release&lt;/code&gt;&lt;/strong&gt; - Publishes your project in Release mode, optimizing it for deployment.&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;With these commands in your toolkit, navigating projects and managing your C#/.NET solutions in the terminal becomes a breeze! 🌬️ Happy coding! 👨‍💻👩‍💻&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
