Skip to content

Commit

Permalink
Add Task1
Browse files Browse the repository at this point in the history
  • Loading branch information
RomaLikhachev committed Jan 28, 2024
0 parents commit 85a24ef
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# IntelliJ
*.iml
.idea/*

# C# Project
bin/
obj/
/packages/
riderModule.iml
/_ReSharper.Caches/
16 changes: 16 additions & 0 deletions CSharpEducation.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@

Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Task1", "Task1\Task1.csproj", "{D0083D4D-28D6-438D-A4BD-04917D0FC77F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{D0083D4D-28D6-438D-A4BD-04917D0FC77F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D0083D4D-28D6-438D-A4BD-04917D0FC77F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D0083D4D-28D6-438D-A4BD-04917D0FC77F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D0083D4D-28D6-438D-A4BD-04917D0FC77F}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
1 change: 1 addition & 0 deletions Task1/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Console.WriteLine("HelloWorld");
10 changes: 10 additions & 0 deletions Task1/Task1.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

</Project>

0 comments on commit 85a24ef

Please sign in to comment.