Skip to content

Commit 67fe61a

Browse files
committed
add example002elloser
1 parent b7e3a0a commit 67fe61a

8 files changed

+48
-1
lines changed

example001Helloconsole/obj/Debug/net6.0/example001Helloconsole.GeneratedMSBuildEditorConfig.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ build_property.InvariantGlobalization =
77
build_property.PlatformNeutralAssembly =
88
build_property._SupportedPlatformList = Linux,macOS,Windows
99
build_property.RootNamespace = example001Helloconsole
10-
build_property.ProjectDir = C:\Users\mamae\OneDrive\Рабочий стол\C#\example001Helloconsole\
10+
build_property.ProjectDir = c:\Users\mamae\OneDrive\Рабочий стол\C#\example001Helloconsole\
Binary file not shown.

example002_helloUser/Program.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Console.WriteLine("Введите ваше имя");
2+
string username = Console.ReadLine();
3+
Console.Write("Привет, ");
4+
Console.WriteLine(username);
5+
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"runtimeTarget": {
3+
"name": ".NETCoreApp,Version=v6.0",
4+
"signature": ""
5+
},
6+
"compilationOptions": {},
7+
"targets": {
8+
".NETCoreApp,Version=v6.0": {
9+
"example002_helloUser/1.0.0": {
10+
"runtime": {
11+
"example002_helloUser.dll": {}
12+
}
13+
}
14+
}
15+
},
16+
"libraries": {
17+
"example002_helloUser/1.0.0": {
18+
"type": "project",
19+
"serviceable": false,
20+
"sha512": ""
21+
}
22+
}
23+
}
Binary file not shown.
Binary file not shown.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"runtimeOptions": {
3+
"tfm": "net6.0",
4+
"framework": {
5+
"name": "Microsoft.NETCore.App",
6+
"version": "6.0.0"
7+
}
8+
}
9+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>net6.0</TargetFramework>
6+
<ImplicitUsings>enable</ImplicitUsings>
7+
<Nullable>enable</Nullable>
8+
</PropertyGroup>
9+
10+
</Project>

0 commit comments

Comments
 (0)