Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion SimcProfileParser/Interfaces/DataSync/ICacheService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace SimcProfileParser.Interfaces.DataSync
/// <summary>
/// A service for keeping local parsed json files ready for use.
/// </summary>
public interface ICacheService
internal interface ICacheService
{
/// <summary>
/// The base directory the cache service stores its files
Expand Down
2 changes: 1 addition & 1 deletion SimcProfileParser/Interfaces/ISimcItemCreationService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace SimcProfileParser.Interfaces
{
public interface ISimcItemCreationService
internal interface ISimcItemCreationService
{
Task<SimcItem> CreateItemAsync(SimcParsedItem parsedItemData);
Task<SimcItem> CreateItemAsync(SimcItemOptions itemOptions);
Expand Down
2 changes: 1 addition & 1 deletion SimcProfileParser/Interfaces/ISimcParserService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace SimcProfileParser.Interfaces
{
public interface ISimcParserService
internal interface ISimcParserService
{
SimcParsedProfile ParseProfileAsync(List<string> profileString);
}
Expand Down
2 changes: 1 addition & 1 deletion SimcProfileParser/Interfaces/ISimcSpellCreationService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace SimcProfileParser.Interfaces
{
public interface ISimcSpellCreationService
internal interface ISimcSpellCreationService
{
Task<SimcSpell> GenerateItemSpellAsync(SimcItem item, uint spellId);
Task<SimcSpell> GenerateItemSpellAsync(SimcSpellOptions spellOptions);
Expand Down
2 changes: 1 addition & 1 deletion SimcProfileParser/Interfaces/ISimcTalentService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace SimcProfileParser.Interfaces
{
public interface ISimcTalentService
internal interface ISimcTalentService
{
Task<SimcTalent> GetTalentDataAsync(int talentId, int rank);
Task<List<SimcTalent>> GetAvailableTalentsAsync(int classId, int specId);
Expand Down
2 changes: 1 addition & 1 deletion SimcProfileParser/Interfaces/ISimcVersionService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace SimcProfileParser.Interfaces
{
public interface ISimcVersionService
internal interface ISimcVersionService
{
Task<string> GetGameDataVersionAsync();
}
Expand Down
2 changes: 1 addition & 1 deletion SimcProfileParser/SimcGenerationService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public class SimcGenerationService : ISimcGenerationService
/// <param name="simcVersionService">Service for retrieving game data version information.</param>
/// <param name="simcTalentService">Service for fetching and processing talent data.</param>
/// <param name="cacheService">Service for caching and retrieving raw game data files.</param>
public SimcGenerationService(ILogger<SimcGenerationService> logger,
internal SimcGenerationService(ILogger<SimcGenerationService> logger,
ISimcParserService simcParserService,
ISimcItemCreationService simcItemCreationService,
ISimcSpellCreationService simcSpellCreationService,
Expand Down
2 changes: 1 addition & 1 deletion SimcProfileParser/SimcParserService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

namespace SimcProfileParser
{
public class SimcParserService : ISimcParserService
internal class SimcParserService : ISimcParserService
{
private readonly ILogger<SimcParserService> _logger;

Expand Down
6 changes: 3 additions & 3 deletions SimcProfileParser/SimcProfileParser.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<PropertyGroup>
<TargetFrameworks>net9.0</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>3.1.1</Version>
<AssemblyVersion>3.1.1</AssemblyVersion>
<FileVersion>3.1.1</FileVersion>
<Version>3.1.2</Version>
<AssemblyVersion>3.1.2</AssemblyVersion>
<FileVersion>3.1.2</FileVersion>
<Authors>Mechanical Priest</Authors>
<Company>Mechanical Priest</Company>
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
Expand Down