Skip to content
This repository was archived by the owner on Jan 3, 2023. It is now read-only.

Commit bfd0e79

Browse files
author
Joe Bickley
authored
Merge pull request #3 from JoeBickley/autofaq-reference-bug
Fixing references to BouncyCastle and Autofac, and a null string check.
2 parents a793a69 + 6d103ea commit bfd0e79

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CacheInitializer/CacheInitializer.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@
3535
<PropertyGroup />
3636
<ItemGroup>
3737
<Reference Include="Autofac">
38-
<HintPath>..\..\..\..\..\..\LaptopData\Laptop\Benutzer\RVA\Documents\Beispiele\qliksense\cache initializer joe bickley\QlikSense.NetSDK3.0.1.0\autofac.dll</HintPath>
38+
<HintPath>..\packages\Autofac.3.5.0\lib\net40\Autofac.dll</HintPath>
3939
</Reference>
4040
<Reference Include="BouncyCastle.CryptoExt">
41-
<HintPath>..\..\..\..\..\..\LaptopData\Laptop\Benutzer\RVA\Documents\Beispiele\qliksense\cache initializer joe bickley\QlikSense.NetSDK3.0.1.0\BouncyCastle.CryptoExt.dll</HintPath>
41+
<HintPath>..\packages\QlikSense.NetSDK.2.2.3.0\lib\net452\BouncyCastle.CryptoExt.dll</HintPath>
4242
</Reference>
4343
<Reference Include="CommandLine">
4444
<HintPath>..\packages\CommandLineParser.1.9.71\lib\net45\CommandLine.dll</HintPath>

CacheInitializer/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ static void Main(string[] args)
4343
{
4444
serverURL = new Uri(options.server);
4545
appname = options.appname;
46-
virtualProxy = (options.virtualProxy.Length > 0) ? options.virtualProxy : "" ;
46+
virtualProxy = !string.IsNullOrEmpty(options.virtualProxy) ? options.virtualProxy : "" ;
4747
openSheets = options.fetchobjects;
4848
if (options.selectionfield != null)
4949
{

0 commit comments

Comments
 (0)