-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from AaronSaikovski/v2.0.0_big_refactor
V2.0.0 big refactor
- Loading branch information
Showing
95 changed files
with
947 additions
and
819 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# This workflow will build a .NET project | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net | ||
|
||
name: .NET | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
# pull_request: | ||
# branches: [ "main" ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup .NET | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: 8.0.x | ||
- name: Restore dependencies | ||
run: dotnet restore | ||
- name: Build | ||
run: dotnet build --no-restore | ||
# - name: Test | ||
# run: dotnet test --no-build --verbosity normal |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,19 @@ | ||
# Cyberpuzzles Crossword - CHANGELOG | ||
|
||
## v1.0.0 (2023-12-07) | ||
- Initial v1.0 release for feedback | ||
|
||
## v1.0.1 2023-12-07) | ||
- Initial v1.0 release for feedback | ||
- Added serilog logging to both API and main crossword | ||
- refactored solution structure and namespace cleanup to make it more in line with CLEAN & SOLID principles | ||
- fixed async API call | ||
- Merged parser back into main project and deleted the old parser project | ||
- modified parser to use better class instantiation methods for better memory management | ||
- added newer labels to listboxes | ||
|
||
## v1.0.2 2023-12-20) | ||
- Fixed list box headers | ||
- Refactored and performance improvements. | ||
- Refactored and performance improvements. | ||
|
||
## v1.0.0-Beta2 2024-04-05) | ||
|
||
- Major solution and project restructure to follow a more Clean architecture and easier to follow decoupled object hierarchy. | ||
- Refactored for performance and better memory usage. | ||
- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Crossword.Shared\Crossword.Shared.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
<RootNamespace>Crosssword.Entities</RootNamespace> | ||
</PropertyGroup> | ||
|
||
</Project> |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Crossword.API", "Crossword.API\Crossword.API.csproj", "{B53EE5F7-E852-47C0-814E-6E559D43A774}" | ||
EndProject | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Crossword", "Crossword\Crossword.csproj", "{0BFDE744-5BB3-486D-B194-5826B551CE3F}" | ||
EndProject | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Crossword.Shared", "Crossword.Shared\Crossword.Shared.csproj", "{8061C3BE-083E-415C-B678-394F8EBCCFC6}" | ||
EndProject | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Crossword.Parser", "Crossword.Parser\Crossword.Parser.csproj", "{2FE9007A-7C46-48AD-86A5-FCADA1AA2D34}" | ||
EndProject | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Crossword.Entities", "Crossword.Entities\Crossword.Entities.csproj", "{629F5D51-C8E0-4C64-BE84-48C5DB565FA8}" | ||
EndProject | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Crossword.Data", "Crossword.Data\Crossword.Data.csproj", "{08FAF8BC-DBEA-4FCF-9BF9-B2B3E8FD1122}" | ||
EndProject | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Crossword.Puzzle", "Crossword.Puzzle\Crossword.Puzzle.csproj", "{96B22047-3AAC-44ED-B501-DD8894083A3C}" | ||
EndProject | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Crossword.UI", "Crossword.UI\Crossword.UI.csproj", "{81CBCB4A-2F37-42DF-B001-6E5EEFBC1C14}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{B53EE5F7-E852-47C0-814E-6E559D43A774}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{B53EE5F7-E852-47C0-814E-6E559D43A774}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{B53EE5F7-E852-47C0-814E-6E559D43A774}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{B53EE5F7-E852-47C0-814E-6E559D43A774}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{0BFDE744-5BB3-486D-B194-5826B551CE3F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{0BFDE744-5BB3-486D-B194-5826B551CE3F}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{0BFDE744-5BB3-486D-B194-5826B551CE3F}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{0BFDE744-5BB3-486D-B194-5826B551CE3F}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{8061C3BE-083E-415C-B678-394F8EBCCFC6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{8061C3BE-083E-415C-B678-394F8EBCCFC6}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{8061C3BE-083E-415C-B678-394F8EBCCFC6}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{8061C3BE-083E-415C-B678-394F8EBCCFC6}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{2FE9007A-7C46-48AD-86A5-FCADA1AA2D34}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{2FE9007A-7C46-48AD-86A5-FCADA1AA2D34}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{2FE9007A-7C46-48AD-86A5-FCADA1AA2D34}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{2FE9007A-7C46-48AD-86A5-FCADA1AA2D34}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{629F5D51-C8E0-4C64-BE84-48C5DB565FA8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{629F5D51-C8E0-4C64-BE84-48C5DB565FA8}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{629F5D51-C8E0-4C64-BE84-48C5DB565FA8}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{629F5D51-C8E0-4C64-BE84-48C5DB565FA8}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{08FAF8BC-DBEA-4FCF-9BF9-B2B3E8FD1122}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{08FAF8BC-DBEA-4FCF-9BF9-B2B3E8FD1122}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{08FAF8BC-DBEA-4FCF-9BF9-B2B3E8FD1122}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{08FAF8BC-DBEA-4FCF-9BF9-B2B3E8FD1122}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{96B22047-3AAC-44ED-B501-DD8894083A3C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{96B22047-3AAC-44ED-B501-DD8894083A3C}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{96B22047-3AAC-44ED-B501-DD8894083A3C}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{96B22047-3AAC-44ED-B501-DD8894083A3C}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{81CBCB4A-2F37-42DF-B001-6E5EEFBC1C14}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{81CBCB4A-2F37-42DF-B001-6E5EEFBC1C14}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{81CBCB4A-2F37-42DF-B001-6E5EEFBC1C14}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{81CBCB4A-2F37-42DF-B001-6E5EEFBC1C14}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
EndGlobal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Crossword.Entities\Crossword.Entities.csproj" /> | ||
<ProjectReference Include="..\Crossword.Shared\Crossword.Shared.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Crossword/Parsers/GetColsAndRows.cs → Crossword.Parser/GetColsAndRows.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Crossword/Parsers/GetCybersilver.cs → Crossword.Parser/GetCybersilver.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Crossword/Parsers/GetHintLetters.cs → Crossword.Parser/GetHintLetters.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Crossword/Parsers/GetNumBytes.cs → Crossword.Parser/GetNumBytes.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Crossword/Parsers/GetPuzzleIdAndType.cs → Crossword.Parser/GetPuzzleIdAndType.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
Crossword/Parsers/ParseCrosswordData.cs → Crossword.Parser/ParseCrosswordData.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.