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

Commit 5f77fe8

Browse files
author
Joe Bickley
committed
Merge pull request #1 from kolsrud/nuget
Nuget
2 parents 6339ad3 + 0f778d8 commit 5f77fe8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+45
-5712
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,10 @@ $RECYCLE.BIN/
4141
Network Trash Folder
4242
Temporary Items
4343
.apdisk
44+
45+
# Binaries and other generated files
46+
*/bin
47+
*/obj
48+
CacheInitializer.v12.suo
49+
packages
50+
CacheInitializer/readme.txt

CacheInitializer/App.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33
<startup>
4-
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.1"/>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2"/>
55
</startup>
66
</configuration>

CacheInitializer/CacheInitializer.csproj

Lines changed: 31 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<AppDesignerFolder>Properties</AppDesignerFolder>
1010
<RootNamespace>CacheInitializer</RootNamespace>
1111
<AssemblyName>CacheInitializer</AssemblyName>
12-
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
12+
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
<TargetFrameworkProfile />
1515
</PropertyGroup>
@@ -34,14 +34,36 @@
3434
</PropertyGroup>
3535
<PropertyGroup />
3636
<ItemGroup>
37+
<Reference Include="Autofac">
38+
<HintPath>..\packages\Autofac.3.5.0\lib\net40\Autofac.dll</HintPath>
39+
</Reference>
40+
<Reference Include="BouncyCastle.CryptoExt">
41+
<HintPath>..\packages\QlikSense.NetSDK.2.2.3.0\lib\net452\BouncyCastle.CryptoExt.dll</HintPath>
42+
</Reference>
3743
<Reference Include="CommandLine">
3844
<HintPath>..\packages\CommandLineParser.1.9.71\lib\net45\CommandLine.dll</HintPath>
3945
</Reference>
46+
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
47+
<SpecificVersion>False</SpecificVersion>
48+
<HintPath>..\packages\Newtonsoft.Json.6.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
49+
</Reference>
4050
<Reference Include="Qlik.Engine">
41-
<HintPath>..\..\_shared\QlikSense.NetSDK.1.1.0\Qlik.Engine.dll</HintPath>
51+
<HintPath>..\packages\QlikSense.NetSDK.2.2.3.0\lib\net452\Qlik.Engine.dll</HintPath>
52+
</Reference>
53+
<Reference Include="Qlik.Engine.Extensions">
54+
<HintPath>..\packages\QlikSense.NetSDK.2.2.3.0\lib\net452\Qlik.Engine.Extensions.dll</HintPath>
55+
</Reference>
56+
<Reference Include="Qlik.Engine.Extensions.WinForms">
57+
<HintPath>..\packages\QlikSense.NetSDK.2.2.3.0\lib\net452\Qlik.Engine.Extensions.WinForms.dll</HintPath>
4258
</Reference>
4359
<Reference Include="Qlik.Sense.Client">
44-
<HintPath>..\..\_shared\QlikSense.NetSDK.1.1.0\Qlik.Sense.Client.dll</HintPath>
60+
<HintPath>..\packages\QlikSense.NetSDK.2.2.3.0\lib\net452\Qlik.Sense.Client.dll</HintPath>
61+
</Reference>
62+
<Reference Include="Qlik.Sense.Communication">
63+
<HintPath>..\packages\QlikSense.NetSDK.2.2.3.0\lib\net452\Qlik.Sense.Communication.dll</HintPath>
64+
</Reference>
65+
<Reference Include="Qlik.Sense.ExtendedFramework">
66+
<HintPath>..\packages\QlikSense.NetSDK.2.2.3.0\lib\net452\Qlik.Sense.ExtendedFramework.dll</HintPath>
4567
</Reference>
4668
<Reference Include="System" />
4769
<Reference Include="System.Core" />
@@ -57,8 +79,12 @@
5779
<Compile Include="Properties\AssemblyInfo.cs" />
5880
</ItemGroup>
5981
<ItemGroup>
60-
<None Include="App.config" />
61-
<None Include="packages.config" />
82+
<None Include="App.config">
83+
<SubType>Designer</SubType>
84+
</None>
85+
<None Include="packages.config">
86+
<SubType>Designer</SubType>
87+
</None>
6288
</ItemGroup>
6389
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
6490
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.

CacheInitializer/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// Summary: This tool will "warm" the cache of a Qlik Sense server so that when using large apps the users get good performance right away.
1414
// You can use it to load all apps, a single app, and you can get it to just open the app to RAM or cycle through all the objects
1515
// so that it will pre calculate expressions so users get rapid performance. You can also pass in selections too.
16-
// Credits: Thanks to Oysein Kolsrud for helping with the Qlik Sense .net SDK steps
16+
// Credits: Thanks to Øystein Kolsrud for helping with the Qlik Sense .net SDK steps
1717
// Uses the commandline.codeplex.com for processing parameters
1818

1919

-199 KB
Binary file not shown.
-1.44 MB
Binary file not shown.
-12 KB
Binary file not shown.

CacheInitializer/bin/Debug/CacheInitializer.exe.config

Lines changed: 0 additions & 6 deletions
This file was deleted.
-19.5 KB
Binary file not shown.
-23.7 KB
Binary file not shown.

0 commit comments

Comments
 (0)