Skip to content

Commit 4539642

Browse files
committed
init new project for final_task
1 parent f85c48d commit 4539642

File tree

7 files changed

+166
-0
lines changed

7 files changed

+166
-0
lines changed

Final_task/Final_task.csproj

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>

Final_task/Program.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// Задача:
2+
// Написать программу, которая из имеющегося массива строк формирует новый массив из строк,
3+
// длина которых меньше, либо равна 3 символам. Первоначальный массив можно ввести с клавиатуры,
4+
// либо задать на старте выполнения алгоритма. При решении не рекомендуется пользоваться коллекциями,
5+
// лучше обойтись исключительно массивами.
6+
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
{
2+
"format": 1,
3+
"restore": {
4+
"C:\\Users\\Blindstudio\\Desktop\\final_work\\Final_test_work_1\\Final_task\\Final_task.csproj": {}
5+
},
6+
"projects": {
7+
"C:\\Users\\Blindstudio\\Desktop\\final_work\\Final_test_work_1\\Final_task\\Final_task.csproj": {
8+
"version": "1.0.0",
9+
"restore": {
10+
"projectUniqueName": "C:\\Users\\Blindstudio\\Desktop\\final_work\\Final_test_work_1\\Final_task\\Final_task.csproj",
11+
"projectName": "Final_task",
12+
"projectPath": "C:\\Users\\Blindstudio\\Desktop\\final_work\\Final_test_work_1\\Final_task\\Final_task.csproj",
13+
"packagesPath": "C:\\Users\\Blindstudio\\.nuget\\packages\\",
14+
"outputPath": "C:\\Users\\Blindstudio\\Desktop\\final_work\\Final_test_work_1\\Final_task\\obj\\",
15+
"projectStyle": "PackageReference",
16+
"configFilePaths": [
17+
"C:\\Users\\Blindstudio\\AppData\\Roaming\\NuGet\\NuGet.Config"
18+
],
19+
"originalTargetFrameworks": [
20+
"net6.0"
21+
],
22+
"sources": {
23+
"https://api.nuget.org/v3/index.json": {}
24+
},
25+
"frameworks": {
26+
"net6.0": {
27+
"targetAlias": "net6.0",
28+
"projectReferences": {}
29+
}
30+
},
31+
"warningProperties": {
32+
"warnAsError": [
33+
"NU1605"
34+
]
35+
}
36+
},
37+
"frameworks": {
38+
"net6.0": {
39+
"targetAlias": "net6.0",
40+
"imports": [
41+
"net461",
42+
"net462",
43+
"net47",
44+
"net471",
45+
"net472",
46+
"net48"
47+
],
48+
"assetTargetFallback": true,
49+
"warn": true,
50+
"frameworkReferences": {
51+
"Microsoft.NETCore.App": {
52+
"privateAssets": "all"
53+
}
54+
},
55+
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json"
56+
}
57+
}
58+
}
59+
}
60+
}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.0" encoding="utf-8" standalone="no"?>
2+
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
4+
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
5+
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
6+
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
7+
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
8+
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Blindstudio\.nuget\packages\</NuGetPackageFolders>
9+
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
10+
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.2.1</NuGetToolVersion>
11+
</PropertyGroup>
12+
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
13+
<SourceRoot Include="C:\Users\Blindstudio\.nuget\packages\" />
14+
</ItemGroup>
15+
</Project>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version="1.0" encoding="utf-8" standalone="no"?>
2+
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />

Final_task/obj/project.assets.json

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
{
2+
"version": 3,
3+
"targets": {
4+
"net6.0": {}
5+
},
6+
"libraries": {},
7+
"projectFileDependencyGroups": {
8+
"net6.0": []
9+
},
10+
"packageFolders": {
11+
"C:\\Users\\Blindstudio\\.nuget\\packages\\": {}
12+
},
13+
"project": {
14+
"version": "1.0.0",
15+
"restore": {
16+
"projectUniqueName": "C:\\Users\\Blindstudio\\Desktop\\final_work\\Final_test_work_1\\Final_task\\Final_task.csproj",
17+
"projectName": "Final_task",
18+
"projectPath": "C:\\Users\\Blindstudio\\Desktop\\final_work\\Final_test_work_1\\Final_task\\Final_task.csproj",
19+
"packagesPath": "C:\\Users\\Blindstudio\\.nuget\\packages\\",
20+
"outputPath": "C:\\Users\\Blindstudio\\Desktop\\final_work\\Final_test_work_1\\Final_task\\obj\\",
21+
"projectStyle": "PackageReference",
22+
"configFilePaths": [
23+
"C:\\Users\\Blindstudio\\AppData\\Roaming\\NuGet\\NuGet.Config"
24+
],
25+
"originalTargetFrameworks": [
26+
"net6.0"
27+
],
28+
"sources": {
29+
"https://api.nuget.org/v3/index.json": {}
30+
},
31+
"frameworks": {
32+
"net6.0": {
33+
"targetAlias": "net6.0",
34+
"projectReferences": {}
35+
}
36+
},
37+
"warningProperties": {
38+
"warnAsError": [
39+
"NU1605"
40+
]
41+
}
42+
},
43+
"frameworks": {
44+
"net6.0": {
45+
"targetAlias": "net6.0",
46+
"imports": [
47+
"net461",
48+
"net462",
49+
"net47",
50+
"net471",
51+
"net472",
52+
"net48"
53+
],
54+
"assetTargetFallback": true,
55+
"warn": true,
56+
"frameworkReferences": {
57+
"Microsoft.NETCore.App": {
58+
"privateAssets": "all"
59+
}
60+
},
61+
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json"
62+
}
63+
}
64+
}
65+
}

Final_task/obj/project.nuget.cache

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"version": 2,
3+
"dgSpecHash": "r3tOSu1jrC6Duq1ZqktTADU71ntdl0th+uOZehTlihiyfeYf3qPyUf6iHsjgmq6Vx7uexK30gkJbiEaQsnUW6Q==",
4+
"success": true,
5+
"projectFilePath": "C:\\Users\\Blindstudio\\Desktop\\final_work\\Final_test_work_1\\Final_task\\Final_task.csproj",
6+
"expectedPackageFiles": [],
7+
"logs": []
8+
}

0 commit comments

Comments
 (0)