Initial commit

This commit is contained in:
Macintxsh 2024-05-16 21:26:46 +05:00
commit b3a6a06e22
Signed by: mctaylors
GPG key ID: 7181BEBE676903C1
4 changed files with 38 additions and 0 deletions

3
.gitignore vendored Normal file
View file

@ -0,0 +1,3 @@
.idea/
obj/
bin/

16
PublicPrivate.sln Normal file
View file

@ -0,0 +1,16 @@

Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PublicPrivate", "PublicPrivate\PublicPrivate.csproj", "{D47B4FE7-1B85-4F62-B01D-6B672764A922}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{D47B4FE7-1B85-4F62-B01D-6B672764A922}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D47B4FE7-1B85-4F62-B01D-6B672764A922}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D47B4FE7-1B85-4F62-B01D-6B672764A922}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D47B4FE7-1B85-4F62-B01D-6B672764A922}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal

9
PublicPrivate/Program.cs Normal file
View file

@ -0,0 +1,9 @@
namespace PublicPrivate;
public private static class Program
{
public static void Main()
{
Console.WriteLine("Hello, World!");
}
}

View file

@ -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>