Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cache bug #252

Merged
merged 4 commits into from
Oct 31, 2024
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
1 change: 1 addition & 0 deletions Build/ModulePackage.targets
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
<InstallInclude Include="**\*.bmp" Exclude="packages\**;node_modules\**;clientApp\**;client-app\**" />
<InstallInclude Include="**\*.xml" Exclude="packages\**;node_modules\**;clientApp\**;client-app\**;bin\**" />
<InstallInclude Include="**\web.config" Exclude="packages\**;node_modules\**;clientApp\**;client-app\**" />
<InstallInclude Include="**\*.xml.resources" Exclude="Config/ogConfig*.xml.resources;Config/ogSettings*.xml.resources"/>
</ItemGroup>

<CreateItem Include="$(DNNFileName).dnn">
Expand Down
21 changes: 18 additions & 3 deletions Modules/WillStrohl.OpenGraph/WillStrohl.Modules.OpenGraph.vbproj
Original file line number Diff line number Diff line change
Expand Up @@ -105,14 +105,29 @@
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="DotNetNuke, Version=9.4.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\packages\DotNetNuke.Core.9.4.0\lib\net45\DotNetNuke.dll</HintPath>
<Reference Include="DotNetNuke, Version=9.11.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\packages\DotNetNuke.Core.9.11.0\lib\net45\DotNetNuke.dll</HintPath>
</Reference>
<Reference Include="DotNetNuke.DependencyInjection, Version=9.11.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\packages\DotNetNuke.DependencyInjection.9.11.0\lib\netstandard2.0\DotNetNuke.DependencyInjection.dll</HintPath>
</Reference>
<Reference Include="DotNetNuke.Instrumentation, Version=9.11.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\packages\DotNetNuke.Instrumentation.9.11.0\lib\net45\DotNetNuke.Instrumentation.dll</HintPath>
</Reference>
<Reference Include="DotNetNuke.log4net, Version=3.0.2.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\packages\DotNetNuke.Instrumentation.9.11.0\lib\net45\DotNetNuke.log4net.dll</HintPath>
</Reference>
<Reference Include="DotNetNuke.Web">
<HintPath>..\..\References\DotNetNuke\DotNetNuke.Web.dll</HintPath>
</Reference>
<Reference Include="Microsoft.ApplicationBlocks.Data, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\packages\DotNetNuke.Core.9.4.0\lib\net45\Microsoft.ApplicationBlocks.Data.dll</HintPath>
<HintPath>..\..\packages\DotNetNuke.Core.9.11.0\lib\net45\Microsoft.ApplicationBlocks.Data.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Extensions.DependencyInjection, Version=2.1.1.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
<HintPath>..\..\packages\Microsoft.Extensions.DependencyInjection.2.1.1\lib\net461\Microsoft.Extensions.DependencyInjection.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Extensions.DependencyInjection.Abstractions, Version=2.1.1.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
<HintPath>..\..\packages\Microsoft.Extensions.DependencyInjection.Abstractions.2.1.1\lib\netstandard2.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll</HintPath>
</Reference>
<Reference Include="System">
<Name>System</Name>
Expand Down
2 changes: 1 addition & 1 deletion Modules/WillStrohl.OpenGraph/WillStrohl.OpenGraph.dnn
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<releaseNotes src="releasenotes.txt" />
<azureCompatible>True</azureCompatible>
<dependencies>
<dependency type="coreversion">09.04.00</dependency>
<dependency type="coreversion">09.11.00</dependency>
</dependencies>
<components>
<component type="Module">
Expand Down
6 changes: 5 additions & 1 deletion Modules/WillStrohl.OpenGraph/packages.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="DotNetNuke.Core" version="9.4.0" targetFramework="net472" />
<package id="DotNetNuke.Core" version="9.11.0" targetFramework="net472" />
<package id="DotNetNuke.DependencyInjection" version="9.11.0" targetFramework="net472" />
<package id="DotNetNuke.Instrumentation" version="9.11.0" targetFramework="net472" />
<package id="Microsoft.Extensions.DependencyInjection" version="2.1.1" targetFramework="net472" />
<package id="Microsoft.Extensions.DependencyInjection.Abstractions" version="2.1.1" targetFramework="net472" />
</packages>