Skip to content

Commit

Permalink
include openssl.cnf
Browse files Browse the repository at this point in the history
  • Loading branch information
zivillian committed May 30, 2023
1 parent 2e83ed0 commit c43c780
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/ism7config/ServiceProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public ServiceProvider(BundleQueueWorker bundleQueueWorker, ParameterStore param
_unitOfWork = unitOfWork;
}

public object? GetService(Type serviceType)
public object GetService(Type serviceType)
{
return GetInstance(serviceType);
}
Expand Down
7 changes: 6 additions & 1 deletion src/ism7config/ism7config.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
Expand All @@ -13,6 +12,12 @@
<Content Include="..\ism7mqtt\Resources\ParameterTemplates.xml" Link="Resources\parametertemplates.xml" />
</ItemGroup>

<ItemGroup>
<None Include="..\..\openssl.cnf" Link="openssl.cnf">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>

<ItemGroup>
<PackageReference Include="CommonServiceLocator" Version="2.0.6" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="6.0.0" />
Expand Down
1 change: 0 additions & 1 deletion src/oldism7proxy/oldism7proxy.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit c43c780

Please sign in to comment.