Skip to content

Commit

Permalink
Merge pull request #40 from IowaComputerGurus/feature/updates
Browse files Browse the repository at this point in the history
Feature/updates
  • Loading branch information
kenny-sellers authored Jun 26, 2023
2 parents f6549bb + 6da0712 commit 58c0c5c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 38 deletions.
34 changes: 0 additions & 34 deletions .github/workflows/codeql.yml

This file was deleted.

2 changes: 1 addition & 1 deletion src/ICG NetCore Utilities.sln
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NetCore.Utilities.Tests", "
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Utility", "Utility", "{0A7D0BD5-800E-4B7D-A351-916BE3DDE518}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EncryptionKeyGenerator", "EncryptionKeyGenerator\EncryptionKeyGenerator.csproj", "{F2ADCF9A-3688-47AF-9998-95930BC034AB}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EncryptionKeyGenerator", "EncryptionKeyGenerator\EncryptionKeyGenerator.csproj", "{F2ADCF9A-3688-47AF-9998-95930BC034AB}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ public static void UseIcgNetCoreUtilities(this IServiceCollection services, ICon
services.AddTransient<IDirectoryProvider, DirectoryProvider>();
services.AddTransient<IAesEncryptionService, AesEncryptionService>();
services.AddTransient<IAesDerivedKeyEncryptionService, AesDerivedKeyEncryptionService>();
services.Configure<AesEncryptionServiceOptions>(configuration.GetSection(nameof(AesEncryptionServiceOptions)));
services.Configure<AesEncryptionServiceOptions>(
configuration.GetSection(nameof(AesEncryptionServiceOptions)));
services.Configure<AesDerivedKeyEncryptionServiceOptions>(configuration.GetSection(nameof(AesDerivedKeyEncryptionServiceOptions)));

}
}
}
5 changes: 4 additions & 1 deletion src/NetCore.Utilities/NetCore.Utilities.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
Expand Down Expand Up @@ -37,7 +37,10 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Options" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="6.0.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down

0 comments on commit 58c0c5c

Please sign in to comment.