Projektdateien hinzufügen.

master
morpha 2023-04-03 21:41:56 +02:00
parent 1bc3f54486
commit af7a20c8d5
3 changed files with 45 additions and 0 deletions

25
GiteaTest.sln 100644
View File

@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.5.33516.290
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GiteaTest", "GiteaTest\GiteaTest.csproj", "{AB0213D8-C06C-4FC7-96F8-6FBCC31C5C1C}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{AB0213D8-C06C-4FC7-96F8-6FBCC31C5C1C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{AB0213D8-C06C-4FC7-96F8-6FBCC31C5C1C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{AB0213D8-C06C-4FC7-96F8-6FBCC31C5C1C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{AB0213D8-C06C-4FC7-96F8-6FBCC31C5C1C}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {A0722848-914F-4A15-AAF5-60A2E52A033D}
EndGlobalSection
EndGlobal

View File

@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

View File

@ -0,0 +1,10 @@
namespace GiteaTest
{
internal class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
}
}
}