Skip to content

Commit

Permalink
Huge project rename
Browse files Browse the repository at this point in the history
  • Loading branch information
jakeahumphreys committed Sep 6, 2022
1 parent f291159 commit d2f1c85
Show file tree
Hide file tree
Showing 44 changed files with 90 additions and 85 deletions.
1 change: 1 addition & 0 deletions .idea/.idea.PokeApiTechDemo/.idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions .idea/.idea.PokeApiTool/.idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .idea/.idea.PokeApiTool/.idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/.idea.PokeApiTool/.idea/indexLayout.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions .idea/.idea.PokeApiTool/.idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/.idea.PokeApiTool/.idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions App.config
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<configSections>
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<section name="PokeApiTechDemo.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
<section name="PokeApiTool.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
Expand Down Expand Up @@ -31,10 +31,10 @@
</assemblyBinding>
</runtime>
<userSettings>
<PokeApiTechDemo.Properties.Settings>
<PokeApiTool.Properties.Settings>
<setting name="DebugLogging" serializeAs="String">
<value>False</value>
</setting>
</PokeApiTechDemo.Properties.Settings>
</PokeApiTool.Properties.Settings>
</userSettings>
</configuration>
2 changes: 1 addition & 1 deletion Common/Randomiser.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace PokeApiTechDemo.Common
namespace PokeApiTool.Common
{
public static class Randomiser
{
Expand Down
2 changes: 1 addition & 1 deletion Common/Types/ResultSourceType.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace PokeApiTechDemo.Common.Types
namespace PokeApiTool.Common.Types
{
public static class ResultSourceType
{
Expand Down
2 changes: 1 addition & 1 deletion Common/Types/SearchResult.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using PokemonApiClient.Types;

namespace PokeApiTechDemo.Common.Types
namespace PokeApiTool.Common.Types
{
public sealed class SearchResult
{
Expand Down
2 changes: 1 addition & 1 deletion Common/ValidationHelper.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Linq;
using System.Text.RegularExpressions;

namespace PokeApiTechDemo.Common
namespace PokeApiTool.Common
{
public static class ValidationHelper
{
Expand Down
4 changes: 2 additions & 2 deletions Data/Cache/CacheRepository.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
using System.Data;
using System.Data.SQLite;
using System.Windows.Forms;
using PokeApiTechDemo.Data.Cache.Types;
using PokeApiTool.Data.Cache.Types;

namespace PokeApiTechDemo.Data.Cache
namespace PokeApiTool.Data.Cache
{
public interface ICacheRepository
{
Expand Down
4 changes: 2 additions & 2 deletions Data/Cache/CacheService.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using System;
using System.Collections.Generic;
using PokeApiTechDemo.Data.Cache.Types;
using PokeApiTool.Data.Cache.Types;

namespace PokeApiTechDemo.Data.Cache
namespace PokeApiTool.Data.Cache
{
public class CacheService
{
Expand Down
2 changes: 1 addition & 1 deletion Data/Cache/CacheSqlCommands.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace PokeApiTechDemo.Data.Cache
namespace PokeApiTool.Data.Cache
{
public static class CacheSqlCommands
{
Expand Down
2 changes: 1 addition & 1 deletion Data/Cache/Types/CacheEntry.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace PokeApiTechDemo.Data.Cache.Types
namespace PokeApiTool.Data.Cache.Types
{
public class CacheEntry
{
Expand Down
2 changes: 1 addition & 1 deletion Data/ConnectionStrings.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace PokeApiTechDemo.Data
namespace PokeApiTool.Data
{
public static class ConnectionStrings
{
Expand Down
2 changes: 1 addition & 1 deletion Data/Validation/DataValidationService.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Data.SQLite;

namespace PokeApiTechDemo.Data.Validation
namespace PokeApiTool.Data.Validation
{
public class DataValidationService
{
Expand Down
2 changes: 1 addition & 1 deletion Data/Validation/DataValidationSqlCommands.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace PokeApiTechDemo.Data.Validation
namespace PokeApiTool.Data.Validation
{
public static class DataValidationSqlCommands
{
Expand Down
2 changes: 1 addition & 1 deletion MainForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions MainForm.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using System;
using System.Windows.Forms;
using Newtonsoft.Json;
using PokeApiTechDemo.Common;
using PokeApiTool.Common;
using PokemonApiClient.Types;

namespace PokeApiTechDemo
namespace PokeApiTool
{
public partial class MainForm : Form
{
Expand Down
19 changes: 0 additions & 19 deletions PokeApiTechDemo.sln.DotSettings.user

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
using System.Linq;
using Moq;
using NUnit.Framework;
using PokeApiTechDemo.Data.Cache;
using PokeApiTechDemo.Data.Cache.Types;
using PokeApiTool.Data.Cache;
using PokeApiTool.Data.Cache.Types;

namespace PokeApiTechDemo.Tests.Cache.GivenASearchForEntries
namespace PokeApiTool.Tests.Cache.GivenASearchForEntries
{
[TestFixture]
public class WhenTheCacheHasAValidEntry
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
using System.Collections.Generic;
using Moq;
using NUnit.Framework;
using PokeApiTechDemo.Data.Cache;
using PokeApiTechDemo.Data.Cache.Types;
using PokeApiTool.Data.Cache;
using PokeApiTool.Data.Cache.Types;

namespace PokeApiTechDemo.Tests.Cache.GivenAnEntryToCache
namespace PokeApiTool.Tests.Cache.GivenAnEntryToCache
{
[TestFixture]
[Parallelizable]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using System.Collections.Generic;
using Moq;
using NUnit.Framework;
using PokeApiTechDemo.Data.Cache;
using PokeApiTechDemo.Data.Cache.Types;
using PokeApiTool.Data.Cache;
using PokeApiTool.Data.Cache.Types;

namespace PokeApiTechDemo.Tests.Cache.GivenAnEntryToCache
namespace PokeApiTool.Tests.Cache.GivenAnEntryToCache
{
[TestFixture]
[Parallelizable]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<ProjectTypeGuids>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>PokeApiTechDemo.Tests</RootNamespace>
<AssemblyName>PokeApiTechDemo.Tests</AssemblyName>
<RootNamespace>PokeApiTool.Tests</RootNamespace>
<AssemblyName>PokeApiTool.Tests</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
Expand Down Expand Up @@ -69,9 +69,9 @@
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\PokeApiTechDemo.csproj">
<ProjectReference Include="..\PokeApiTool.csproj">
<Project>{a590856d-c9f4-4288-8725-abe29508d87c}</Project>
<Name>PokeApiTechDemo</Name>
<Name>PokeApiTool</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("PokeApiTechDemo.Tests")]
[assembly: AssemblyTitle("PokeApiTool.Tests")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("PokeApiTechDemo.Tests")]
[assembly: AssemblyProduct("PokeApiTool.Tests")]
[assembly: AssemblyCopyright("Copyright © 2022")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion PokeApiTechDemo.csproj → PokeApiTool.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{A590856D-C9F4-4288-8725-ABE29508D87C}</ProjectGuid>
<OutputType>WinExe</OutputType>
<RootNamespace>PokeApiTechDemo</RootNamespace>
<RootNamespace>PokeApiTool</RootNamespace>
<AssemblyName>PokeApi Tool</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
Expand Down
4 changes: 2 additions & 2 deletions PokeApiTechDemo.sln → PokeApiTool.sln
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@

Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PokeApiTechDemo", "PokeApiTechDemo.csproj", "{A590856D-C9F4-4288-8725-ABE29508D87C}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PokeApiTool", "PokeApiTool.csproj", "{A590856D-C9F4-4288-8725-ABE29508D87C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PokeApiTechDemo.Tests", "PokeApiTechDemo.Tests\PokeApiTechDemo.Tests.csproj", "{56C30AE6-BE7D-4EA7-B262-C5AAD64FC7D3}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PokeApiTool.Tests", "PokeApiTool.Tests\PokeApiTool.Tests.csproj", "{56C30AE6-BE7D-4EA7-B262-C5AAD64FC7D3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PokemonApiClient", "PokemonApiClient\PokemonApiClient.csproj", "{D16A56CD-DEF7-49DC-9486-F5511BB808F8}"
EndProject
Expand Down
4 changes: 2 additions & 2 deletions Program.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using System;
using System.Windows.Forms;
using PokeApiTechDemo.Data.Validation;
using PokeApiTool.Data.Validation;

namespace PokeApiTechDemo
namespace PokeApiTool
{
static class Program
{
Expand Down
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("PokeApiTechDemo")]
[assembly: AssemblyTitle("PokeApiTool")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("PokeApiTechDemo")]
[assembly: AssemblyProduct("PokeApiTool")]
[assembly: AssemblyCopyright("Copyright © 2022")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
Expand Down
4 changes: 2 additions & 2 deletions Properties/Resources.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Properties/Settings.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions SearchService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
using System.Linq;
using System.Windows.Forms;
using Newtonsoft.Json;
using PokeApiTechDemo.Common;
using PokeApiTechDemo.Common.Types;
using PokeApiTechDemo.Data.Cache;
using PokeApiTool.Common;
using PokeApiTool.Common.Types;
using PokeApiTool.Data.Cache;
using PokemonApiClient;
using PokemonApiClient.Types;

namespace PokeApiTechDemo
namespace PokeApiTool
{
public class SearchService
{
Expand Down
Binary file modified bin/Debug/resultCache.sqlite
Binary file not shown.
18 changes: 0 additions & 18 deletions obj/Debug/PokeApiTechDemo.csproj.FileListAbsolute.txt
Original file line number Diff line number Diff line change
@@ -1,18 +0,0 @@
C:\Users\jakeh\RiderProjects\PokeApiTechDemo\bin\Debug\PokeApi Tool.exe.config
C:\Users\jakeh\RiderProjects\PokeApiTechDemo\bin\Debug\PokeApi Tool.exe
C:\Users\jakeh\RiderProjects\PokeApiTechDemo\bin\Debug\PokeApi Tool.pdb
C:\Users\jakeh\RiderProjects\PokeApiTechDemo\bin\Debug\Newtonsoft.Json.dll
C:\Users\jakeh\RiderProjects\PokeApiTechDemo\bin\Debug\PokemonApiClient.dll
C:\Users\jakeh\RiderProjects\PokeApiTechDemo\bin\Debug\System.Data.SQLite.dll
C:\Users\jakeh\RiderProjects\PokeApiTechDemo\bin\Debug\PokemonApiClient.pdb
C:\Users\jakeh\RiderProjects\PokeApiTechDemo\bin\Debug\Newtonsoft.Json.xml
C:\Users\jakeh\RiderProjects\PokeApiTechDemo\bin\Debug\System.Data.SQLite.xml
C:\Users\jakeh\RiderProjects\PokeApiTechDemo\obj\Debug\PokeApiTechDemo.csproj.AssemblyReference.cache
C:\Users\jakeh\RiderProjects\PokeApiTechDemo\obj\Debug\PokeApiTechDemo.csproj.SuggestedBindingRedirects.cache
C:\Users\jakeh\RiderProjects\PokeApiTechDemo\obj\Debug\PokeApiTechDemo.MainForm.resources
C:\Users\jakeh\RiderProjects\PokeApiTechDemo\obj\Debug\PokeApiTechDemo.Properties.Resources.resources
C:\Users\jakeh\RiderProjects\PokeApiTechDemo\obj\Debug\PokeApiTechDemo.csproj.GenerateResource.cache
C:\Users\jakeh\RiderProjects\PokeApiTechDemo\obj\Debug\PokeApiTechDemo.csproj.CoreCompileInputs.cache
C:\Users\jakeh\RiderProjects\PokeApiTechDemo\obj\Debug\PokeApiTechDemo.csproj.CopyComplete
C:\Users\jakeh\RiderProjects\PokeApiTechDemo\obj\Debug\PokeApi Tool.exe
C:\Users\jakeh\RiderProjects\PokeApiTechDemo\obj\Debug\PokeApi Tool.pdb
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit d2f1c85

Please sign in to comment.