Skip to content
This repository has been archived by the owner on Nov 16, 2020. It is now read-only.

Commit

Permalink
Resolve DNN dependency via NuGet packages,
Browse files Browse the repository at this point in the history
update DNN dependency to v8.0.4
  • Loading branch information
roman-yagodin committed Jan 23, 2017
1 parent 8378c9c commit c223681
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 10 deletions.
19 changes: 10 additions & 9 deletions R7.HelpDesk/R7.HelpDesk.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<Optimize>false</Optimize>
<OutputPath>..\..\..\bin</OutputPath>
<OutputPath>..\bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
Expand All @@ -26,7 +26,7 @@
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin</OutputPath>
<OutputPath>..\bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
Expand All @@ -47,16 +47,16 @@
<Reference Include="System.DirectoryServices" />
<Reference Include="System.Web.Extensions" />
<Reference Include="DotNetNuke">
<HintPath>..\..\..\bin\DotNetNuke.dll</HintPath>
<HintPath>..\packages\DotNetNuke.Core.8.0.4.226\lib\net40\DotNetNuke.dll</HintPath>
</Reference>
<Reference Include="DotNetNuke.Web">
<HintPath>..\..\..\bin\DotNetNuke.Web.dll</HintPath>
<Reference Include="Microsoft.ApplicationBlocks.Data">
<HintPath>..\packages\DotNetNuke.Core.8.0.4.226\lib\net40\Microsoft.ApplicationBlocks.Data.dll</HintPath>
</Reference>
<Reference Include="DotNetNuke.WebControls">
<HintPath>..\..\..\bin\DotNetNuke.WebControls.dll</HintPath>
<Reference Include="DotNetNuke.Web">
<HintPath>..\packages\DotNetNuke.Web.8.0.4.226\lib\net40\DotNetNuke.Web.dll</HintPath>
</Reference>
<Reference Include="Telerik.Web.UI">
<HintPath>..\..\..\bin\Telerik.Web.UI.dll</HintPath>
<Reference Include="DotNetNuke.WebUtility">
<HintPath>..\packages\DotNetNuke.Web.8.0.4.226\lib\net40\DotNetNuke.WebUtility.dll</HintPath>
</Reference>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
Expand Down Expand Up @@ -99,6 +99,7 @@
<Content Include="images\world.png" />
<Content Include="images\world_delete.png" />
<Content Include="Upload\149_31OHXZ80GF.jpg" />
<Content Include="packages.config" />
</ItemGroup>
<ItemGroup>
<Compile Include="AdminSettings.ascx.cs">
Expand Down
2 changes: 1 addition & 1 deletion R7.HelpDesk/R7.HelpDesk.dnn
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<license src="License.txt" />
<releaseNotes src="ReleaseNotes.txt" />
<dependencies>
<dependency type="CoreVersion">07.04.02</dependency>
<dependency type="CoreVersion">08.00.04</dependency>
</dependencies>
<components>

Expand Down
5 changes: 5 additions & 0 deletions R7.HelpDesk/packages.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="DotNetNuke.Core" version="8.0.4.226" targetFramework="net40" />
<package id="DotNetNuke.Web" version="8.0.4.226" targetFramework="net40" />
</packages>

0 comments on commit c223681

Please sign in to comment.