Skip to content

Commit

Permalink
Инициализация
Browse files Browse the repository at this point in the history
  • Loading branch information
c4kef committed Sep 6, 2024
0 parents commit 31f1f13
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
bin/
obj/
/packages/
riderModule.iml
/_ReSharper.Caches/
16 changes: 16 additions & 0 deletions WhatsAppReverse.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}") = "WhatsAppReverse", "WhatsAppReverse\WhatsAppReverse.csproj", "{8500FA34-9915-431E-B471-C159564DBA62}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{8500FA34-9915-431E-B471-C159564DBA62}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8500FA34-9915-431E-B471-C159564DBA62}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8500FA34-9915-431E-B471-C159564DBA62}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8500FA34-9915-431E-B471-C159564DBA62}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
3 changes: 3 additions & 0 deletions WhatsAppReverse/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
// See https://aka.ms/new-console-template for more information

Console.WriteLine("Hello, World!");
10 changes: 10 additions & 0 deletions WhatsAppReverse/WhatsAppReverse.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 31f1f13

Please sign in to comment.