Skip to content

Commit c6d2dea

Browse files
committed
Changed most references to nuget
1 parent 1c7a791 commit c6d2dea

2 files changed

Lines changed: 23 additions & 13 deletions

File tree

Dnn.WebAnalytics.csproj

Lines changed: 20 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -29,53 +29,61 @@
2929
<DebugSymbols>true</DebugSymbols>
3030
<DebugType>full</DebugType>
3131
<Optimize>false</Optimize>
32-
<OutputPath>bin\</OutputPath>
32+
<OutputPath>..\..\bin\</OutputPath>
3333
<DefineConstants>DEBUG;TRACE</DefineConstants>
3434
<ErrorReport>prompt</ErrorReport>
3535
<WarningLevel>4</WarningLevel>
3636
</PropertyGroup>
3737
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
3838
<DebugType>pdbonly</DebugType>
3939
<Optimize>true</Optimize>
40-
<OutputPath>bin\</OutputPath>
40+
<OutputPath>..\..\bin\</OutputPath>
4141
<DefineConstants>TRACE</DefineConstants>
4242
<ErrorReport>prompt</ErrorReport>
4343
<WarningLevel>4</WarningLevel>
4444
</PropertyGroup>
4545
<ItemGroup>
46-
<Reference Include="DotNetNuke">
46+
<Reference Include="DotNetNuke, Version=8.0.0.809, Culture=neutral, processorArchitecture=MSIL">
47+
<HintPath>packages\DotNetNuke.Core.8.0.0.809\lib\net40\DotNetNuke.dll</HintPath>
4748
<SpecificVersion>False</SpecificVersion>
48-
<HintPath>..\..\bin\DotNetNuke.dll</HintPath>
4949
<Private>False</Private>
5050
</Reference>
51-
<Reference Include="DotNetNuke.Web">
51+
<Reference Include="DotNetNuke.Web, Version=8.0.0.809, Culture=neutral, processorArchitecture=MSIL">
52+
<HintPath>packages\DotNetNuke.Web.8.0.0.809\lib\net40\DotNetNuke.Web.dll</HintPath>
5253
<SpecificVersion>False</SpecificVersion>
53-
<HintPath>..\..\bin\DotNetNuke.Web.dll</HintPath>
5454
<Private>False</Private>
5555
</Reference>
56-
<Reference Include="DotNetNuke.Web.Client">
56+
<Reference Include="DotNetNuke.Web.Client, Version=8.0.0.809, Culture=neutral, processorArchitecture=MSIL">
57+
<HintPath>packages\DotNetNuke.Web.Client.8.0.0\lib\net40\DotNetNuke.Web.Client.dll</HintPath>
5758
<SpecificVersion>False</SpecificVersion>
58-
<HintPath>..\..\bin\DotNetNuke.Web.Client.dll</HintPath>
5959
<Private>False</Private>
6060
</Reference>
61-
<Reference Include="FiftyOne.Foundation">
61+
<Reference Include="DotNetNuke.WebUtility, Version=4.2.1.783, Culture=neutral, processorArchitecture=MSIL">
62+
<HintPath>packages\DotNetNuke.Web.8.0.0.809\lib\net40\DotNetNuke.WebUtility.dll</HintPath>
63+
<SpecificVersion>False</SpecificVersion>
64+
<Private>False</Private>
65+
</Reference>
66+
<Reference Include="FiftyOne.Foundation, Version=3.2.3.2, Culture=neutral, PublicKeyToken=e967ae578dabd98e, processorArchitecture=MSIL">
6267
<SpecificVersion>False</SpecificVersion>
6368
<HintPath>_LegacyReferences\FiftyOne.Foundation.dll</HintPath>
6469
<Private>True</Private>
6570
</Reference>
6671
<Reference Include="MaxMind.Db, Version=2.0.0.0, Culture=neutral, PublicKeyToken=66afa4cc5ae853ac, processorArchitecture=MSIL">
72+
<SpecificVersion>False</SpecificVersion>
6773
<HintPath>packages\MaxMind.Db.2.4.0\lib\net45\MaxMind.Db.dll</HintPath>
6874
<Private>True</Private>
6975
</Reference>
7076
<Reference Include="MaxMind.GeoIP2, Version=3.0.0.0, Culture=neutral, PublicKeyToken=66afa4cc5ae853ac, processorArchitecture=MSIL">
7177
<HintPath>packages\MaxMind.GeoIP2.3.0.0\lib\net45\MaxMind.GeoIP2.dll</HintPath>
78+
<SpecificVersion>False</SpecificVersion>
7279
<Private>True</Private>
7380
</Reference>
74-
<Reference Include="Microsoft.CSharp" />
75-
<Reference Include="Newtonsoft.Json, Version=11.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
76-
<HintPath>packages\Newtonsoft.Json.11.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
81+
<Reference Include="Microsoft.ApplicationBlocks.Data, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
82+
<HintPath>packages\DotNetNuke.Core.8.0.0.809\lib\net40\Microsoft.ApplicationBlocks.Data.dll</HintPath>
83+
<SpecificVersion>False</SpecificVersion>
7784
<Private>False</Private>
7885
</Reference>
86+
<Reference Include="Microsoft.CSharp" />
7987
<Reference Include="System" />
8088
<Reference Include="System.configuration" />
8189
<Reference Include="System.Data" />
@@ -182,7 +190,6 @@
182190
</ItemGroup>
183191
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
184192
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v14.0\WebApplications\Microsoft.WebApplication.targets" />
185-
<Import Project="$(MSBuildProjectDirectory)\MSBuild\Project.targets" />
186193
<ProjectExtensions>
187194
<VisualStudio>
188195
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">

packages.config

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3+
<package id="DotNetNuke.Core" version="8.0.0.809" targetFramework="net472" />
4+
<package id="DotNetNuke.Web" version="8.0.0.809" targetFramework="net472" />
5+
<package id="DotNetNuke.Web.Client" version="8.0.0" targetFramework="net472" />
36
<package id="DynamicQueryable" version="2.0.25" targetFramework="net472" />
47
<package id="Jokenizer.Net" version="1.1.0" targetFramework="net472" />
58
<package id="MaxMind.Db" version="2.4.0" targetFramework="net472" />

0 commit comments

Comments
 (0)