Skip to content

Commit

Permalink
(GH-785) Add additonal project/nuget references
Browse files Browse the repository at this point in the history
When loading the Chocolatey GUI licensed extension, there are a couple
of additional project/nuget refereces that need to be in place.  These
are not strictly "required" by the CLI project, however, switching to
the assembly resolver class means that these need to be in place.  This
will help with debugging of the CLI project when the Chocolatey GUI
licensed extension is in place.
  • Loading branch information
gep13 committed Jul 13, 2020
1 parent c4db2d9 commit 0701d71
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Source/ChocolateyGuiCli/ChocolateyGuiCli.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,15 @@
<Reference Include="Autofac, Version=4.6.1.0, Culture=neutral, PublicKeyToken=17863af14b0044da, processorArchitecture=MSIL">
<HintPath>..\packages\Autofac.4.6.1\lib\net45\Autofac.dll</HintPath>
</Reference>
<Reference Include="Caliburn.Micro, Version=3.2.0.0, Culture=neutral, PublicKeyToken=8e5891231f2ed21f, processorArchitecture=MSIL">
<HintPath>..\packages\Caliburn.Micro.Core.3.2.0\lib\net45\Caliburn.Micro.dll</HintPath>
</Reference>
<Reference Include="Caliburn.Micro.Platform, Version=3.2.0.0, Culture=neutral, PublicKeyToken=8e5891231f2ed21f, processorArchitecture=MSIL">
<HintPath>..\packages\Caliburn.Micro.3.2.0\lib\net45\Caliburn.Micro.Platform.dll</HintPath>
</Reference>
<Reference Include="Caliburn.Micro.Platform.Core, Version=3.2.0.0, Culture=neutral, PublicKeyToken=8e5891231f2ed21f, processorArchitecture=MSIL">
<HintPath>..\packages\Caliburn.Micro.3.2.0\lib\net45\Caliburn.Micro.Platform.Core.dll</HintPath>
</Reference>
<Reference Include="chocolatey, Version=0.10.15.0, Culture=neutral, PublicKeyToken=79d02ea9cad655eb, processorArchitecture=MSIL">
<HintPath>..\packages\chocolatey.lib.0.10.15\lib\chocolatey.dll</HintPath>
</Reference>
Expand All @@ -77,6 +86,9 @@
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Windows.Interactivity, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Caliburn.Micro.3.2.0\lib\net45\System.Windows.Interactivity.dll</HintPath>
</Reference>
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
Expand Down Expand Up @@ -108,6 +120,10 @@
<Analyzer Include="..\packages\StyleCop.Analyzers.1.0.2\analyzers\dotnet\cs\StyleCop.Analyzers.dll" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ChocolateyGui.Common.Windows\ChocolateyGui.Common.Windows.csproj">
<Project>{4c2e05fe-3f4d-40be-873c-5d07c8729741}</Project>
<Name>ChocolateyGui.Common.Windows</Name>
</ProjectReference>
<ProjectReference Include="..\ChocolateyGui.Common\ChocolateyGui.Common.csproj">
<Project>{a3a40034-4e31-4d05-832a-351c416dccbb}</Project>
<Name>ChocolateyGui.Common</Name>
Expand Down
2 changes: 2 additions & 0 deletions Source/ChocolateyGuiCli/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
<packages>
<package id="Autofac" version="4.6.1" targetFramework="net452" />
<package id="BuildTools.FxCop" version="1.0.1" targetFramework="net452" />
<package id="Caliburn.Micro" version="3.2.0" targetFramework="net452" />
<package id="Caliburn.Micro.Core" version="3.2.0" targetFramework="net452" />
<package id="chocolatey.lib" version="0.10.15" targetFramework="net452" />
<package id="LiteDB" version="3.1.4" targetFramework="net452" />
<package id="log4net" version="2.0.3" targetFramework="net452" />
Expand Down

0 comments on commit 0701d71

Please sign in to comment.