Skip to content

Commit 31bc4cd

Browse files
author
CSDotNET
committedJul 23, 2023
first commit
0 parents  commit 31bc4cd

File tree

3 files changed

+36
-0
lines changed

3 files changed

+36
-0
lines changed
 

‎.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
bin/
2+
obj/
3+
/packages/
4+
riderModule.iml
5+
/_ReSharper.Caches/

‎TetrLoader.sln

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TetrLoader", "TetrLoader\TetrLoader.csproj", "{36DAFF26-F157-4622-9FCE-20574BBC395C}"
4+
EndProject
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConsoleApp", "ConsoleApp\ConsoleApp.csproj", "{C1BCBD4E-4B68-4CD9-B046-F59E350211D4}"
6+
EndProject
7+
Global
8+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
9+
Debug|Any CPU = Debug|Any CPU
10+
Release|Any CPU = Release|Any CPU
11+
EndGlobalSection
12+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
13+
{36DAFF26-F157-4622-9FCE-20574BBC395C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14+
{36DAFF26-F157-4622-9FCE-20574BBC395C}.Debug|Any CPU.Build.0 = Debug|Any CPU
15+
{36DAFF26-F157-4622-9FCE-20574BBC395C}.Release|Any CPU.ActiveCfg = Release|Any CPU
16+
{36DAFF26-F157-4622-9FCE-20574BBC395C}.Release|Any CPU.Build.0 = Release|Any CPU
17+
{C1BCBD4E-4B68-4CD9-B046-F59E350211D4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
18+
{C1BCBD4E-4B68-4CD9-B046-F59E350211D4}.Debug|Any CPU.Build.0 = Debug|Any CPU
19+
{C1BCBD4E-4B68-4CD9-B046-F59E350211D4}.Release|Any CPU.ActiveCfg = Release|Any CPU
20+
{C1BCBD4E-4B68-4CD9-B046-F59E350211D4}.Release|Any CPU.Build.0 = Release|Any CPU
21+
EndGlobalSection
22+
EndGlobal

‎TetrLoader/TetrLoader.csproj

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net7.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
</PropertyGroup>
8+
9+
</Project>

0 commit comments

Comments
 (0)
Please sign in to comment.