Skip to content

Commit e959948

Browse files
author
RUBIUS\chebanovdd
committed
Renamed Template project to Infrastructure.
1 parent 2f21e51 commit e959948

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+72
-59
lines changed

Match3.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Terminal.Match3", "samples\
1010
EndProject
1111
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Match3.App", "src\Match3.App\Match3.App.csproj", "{6A942A5D-DF32-492D-92C9-E313F6BD219C}"
1212
EndProject
13-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Match3.Template", "src\Match3.Template\Match3.Template.csproj", "{ADD0A36C-A178-4CCC-A7BD-12F1EA01E1C1}"
13+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Match3.Infrastructure", "src\Match3.Infrastructure\Match3.Infrastructure.csproj", "{ADD0A36C-A178-4CCC-A7BD-12F1EA01E1C1}"
1414
EndProject
1515
Global
1616
GlobalSection(SolutionConfigurationPlatforms) = preSolution

Match3.sln.DotSettings

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
2+
<s:Boolean x:Key="/Default/UserDictionary/Words/=deactivatable/@EntryIndexedValue">True</s:Boolean>
23
<s:Boolean x:Key="/Default/UserDictionary/Words/=Spacebar/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary>

samples/Terminal.Match3/DependencyInjection.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using Match3.App;
22
using Match3.App.Interfaces;
3-
using Match3.Template;
4-
using Match3.Template.Interfaces;
5-
using Match3.Template.SequenceDetectors;
3+
using Match3.Infrastructure;
4+
using Match3.Infrastructure.Interfaces;
5+
using Match3.Infrastructure.SequenceDetectors;
66
using Microsoft.Extensions.DependencyInjection;
77
using Terminal.Match3.FillStrategies;
88
using Terminal.Match3.Interfaces;

samples/Terminal.Match3/Extensions/AppModeExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using System;
22
using System.Runtime.CompilerServices;
33
using System.Threading.Tasks;
4-
using Match3.Template.Extensions;
5-
using Match3.Template.Interfaces;
4+
using Match3.Infrastructure.Extensions;
5+
using Match3.Infrastructure.Interfaces;
66

77
namespace Terminal.Match3.Extensions
88
{

samples/Terminal.Match3/FillStrategies/SimpleFillStrategy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Collections.Generic;
33
using Match3.App;
44
using Match3.App.Interfaces;
5-
using Match3.Template.Interfaces;
5+
using Match3.Infrastructure.Interfaces;
66
using Terminal.Match3.FillStrategies.Jobs;
77
using Terminal.Match3.Interfaces;
88
using Terminal.Match3.Extensions;

samples/Terminal.Match3/GameModes/GameInfoMode.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using System;
2-
using Match3.Template.Interfaces;
2+
using Match3.Infrastructure.Interfaces;
33

44
namespace Terminal.Match3.GameModes
55
{

samples/Terminal.Match3/GameModes/GameInitMode.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
22
using Match3.App.Interfaces;
3-
using Match3.Template.Interfaces;
3+
using Match3.Infrastructure.Interfaces;
44
using Terminal.Match3.Interfaces;
55

66
namespace Terminal.Match3.GameModes

samples/Terminal.Match3/GameModes/GamePlayMode.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using Cysharp.Threading.Tasks;
33
using Match3.App;
4-
using Match3.Template.Interfaces;
4+
using Match3.Infrastructure.Interfaces;
55
using Terminal.Match3.Interfaces;
66

77
namespace Terminal.Match3.GameModes

samples/Terminal.Match3/Interfaces/ITerminalGameBoardRenderer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using Match3.Core.Structs;
2-
using Match3.Template.Interfaces;
2+
using Match3.Infrastructure.Interfaces;
33

44
namespace Terminal.Match3.Interfaces
55
{

samples/Terminal.Match3/LevelGoals/CollectRowMaxItems.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Collections.Generic;
33
using Match3.App;
44
using Match3.App.Interfaces;
5-
using Match3.Template.SequenceDetectors;
5+
using Match3.Infrastructure.SequenceDetectors;
66
using Terminal.Match3.Interfaces;
77

88
namespace Terminal.Match3.LevelGoals

0 commit comments

Comments
 (0)