0% found this document useful (0 votes)
13 views1 page

Dot Net 678

The document provides commands for creating .NET console and WinForms applications in both C# and VB using .NET 6.0. It includes a sample project file configuration for a VB.NET application and lists Visual Studio 2022 and 2017 product keys for different editions. Additionally, it references the official documentation for the .NET CLI tools.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views1 page

Dot Net 678

The document provides commands for creating .NET console and WinForms applications in both C# and VB using .NET 6.0. It includes a sample project file configuration for a VB.NET application and lists Visual Studio 2022 and 2017 product keys for different editions. Additionally, it references the official documentation for the .NET CLI tools.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

CONSOLE

dotnet new console -o MyApp -f net6.0


dotnet new console --language VB -o MyApp -f net6.0

Windows
dotnet new winforms --language VB -o MyVBApp -f net6.0
dotnet new winforms --language C# -o MyApp -f net6.0

Run
dotnet run [path]

https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-new

<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<AssemblyName>VB_DotNet_Framework_6.0</AssemblyName>
<Version>1.0.0.0</Version>
<Authors>Lawrence Albert Pardo-Ilao</Authors>
<Company>Unlock For Us</Company>
<Product>VB DotNet Framework 6.0</Product>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
<NeutralLanguage>en</NeutralLanguage>
<Description>Vb.Net Compiler for .Net Framework 6.0</Description>
<Copyright>Copyright @ 2022 All rights will be served.</Copyright>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<RootNamespace>MyVBApp</RootNamespace>
<StartupObject>Sub Main</StartupObject>
<UseWindowsForms>true</UseWindowsForms>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>

<ItemGroup>
<Import Include="System.Data" />
<Import Include="System.Drawing" />
<Import Include="System.Windows.Forms" />
</ItemGroup>

</Project>

Visual Studio 2022 - KEYS


Enterprise : VHF9H-NXBBB-638P6-6JHCY-88JWH
Professional: TD244-P4NB7-YQ6XK-Y8MMM-YWV2J

Visual Studio 2017


Test Professional:
VG622-NKFP4-GTWPH-XB2JJ-JFHVF

Professional:
KBJFW-NXHK6-W4WJM-CRMQB-G3CDH
4F3PR-NFKDB-8HFP7-9WXGY-K77T7

Enterprise:
NJVYC-BMHX2-G77MM-4XJMR-6Q8QF
N2VYX-9VR2K-T733M-MWD9X-KQCDF

You might also like