Initial commit
This commit is contained in:
commit
b3a6a06e22
4 changed files with 38 additions and 0 deletions
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
.idea/
|
||||
obj/
|
||||
bin/
|
16
PublicPrivate.sln
Normal file
16
PublicPrivate.sln
Normal 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
9
PublicPrivate/Program.cs
Normal file
|
@ -0,0 +1,9 @@
|
|||
namespace PublicPrivate;
|
||||
|
||||
public private static class Program
|
||||
{
|
||||
public static void Main()
|
||||
{
|
||||
Console.WriteLine("Hello, World!");
|
||||
}
|
||||
}
|
10
PublicPrivate/PublicPrivate.csproj
Normal file
10
PublicPrivate/PublicPrivate.csproj
Normal 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>
|
Loading…
Reference in a new issue