Skip to content
Snippets Groups Projects
Commit e5c17def authored by bionic85's avatar bionic85
Browse files

init project

parent c58c19b3
No related branches found
No related tags found
No related merge requests found
{
"ExpandedNodes": [
""
],
"SelectedNode": "\\C:\\Users\\Drake\\Source\\Repos\\puzzleplayer",
"PreviewInSolutionExplorer": false
}
\ No newline at end of file
File deleted
{
"Version": 1,
"WorkspaceRootPath": "C:\\Users\\Drake\\source\\repos\\puzzleplayer\\",
"Documents": [],
"DocumentGroupContainers": [
{
"Orientation": 0,
"VerticalTabListWidth": 256,
"DocumentGroups": [
{
"DockedWidth": 200,
"SelectedChildIndex": -1,
"Children": [
{
"$type": "Bookmark",
"Name": "ST:0:0:{1c4feeaa-4718-4aa9-859d-94ce25d182ba}"
}
]
}
]
}
]
}
\ No newline at end of file
File deleted
using System;
public class Class1
{
public Class1()
{
}
}
using System;
using System.Windows.Forms;
static class Program
{
[STAThreadAttribute]
static void Main()
{
Console.WriteLine("hey");
}
}
\ No newline at end of file
using System;
using System.Drawing;
using System.Windows.Forms;
class Program
{
internal static void Main(string[] args)
{
Application.Run(new MainForm());
}
}
class MainForm : Form
{
}
\ No newline at end of file
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<RootNamespace>PuzzlePlayer_Namespace</RootNamespace>
<Nullable>disable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>disable</ImplicitUsings>
</PropertyGroup>
</Project>
\ No newline at end of file

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.11.35303.130
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PuzzlePlayer", "PuzzlePlayer.csproj", "{FED8B142-5A6F-4F72-9F63-7A298451D2DB}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{FED8B142-5A6F-4F72-9F63-7A298451D2DB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FED8B142-5A6F-4F72-9F63-7A298451D2DB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FED8B142-5A6F-4F72-9F63-7A298451D2DB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FED8B142-5A6F-4F72-9F63-7A298451D2DB}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {00AE3CDE-3FFE-4FB7-9671-0B4ACAD3F14C}
EndGlobalSection
EndGlobal
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment