Skip to content

Commit

Permalink
added missing dependencies to acme.exe
Browse files Browse the repository at this point in the history
  • Loading branch information
oocx committed Nov 16, 2015
1 parent e7498c9 commit 3457dd1
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 4 deletions.
Binary file modified .vs/ACME.net/v14/.suo
Binary file not shown.
12 changes: 10 additions & 2 deletions src/Oocx.ACME.CLRConsole/App.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6"/>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6" />
</startup>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-7.0.0.0" newVersion="7.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
12 changes: 10 additions & 2 deletions src/Oocx.ACME.CLRConsole/Oocx.ACME.CLRConsole.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@
<HintPath>..\..\packages\CommandLineParser.2.0.275-beta\lib\net45\CommandLine.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Newtonsoft.Json, Version=7.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\..\packages\Newtonsoft.Json.7.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Oocx.ACME">
<HintPath>..\..\artifacts\bin\Oocx.ACME\Debug\net46\Oocx.ACME.dll</HintPath>
</Reference>
Expand All @@ -55,6 +59,10 @@
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Net.Http.Formatting, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\..\packages\Microsoft.AspNet.WebApi.Client.5.2.3\lib\net45\System.Net.Http.Formatting.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
Expand All @@ -78,9 +86,9 @@
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
</PropertyGroup>
</PropertyGroup>
<Error Condition="!Exists('..\..\packages\Fody.1.29.3\build\dotnet\Fody.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Fody.1.29.3\build\dotnet\Fody.targets'))" />
</Target>
</Target>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
Expand Down
2 changes: 2 additions & 0 deletions src/Oocx.ACME.CLRConsole/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@
<package id="CommandLineParser" version="2.0.275-beta" targetFramework="net46" />
<package id="Costura.Fody" version="1.3.5.0" targetFramework="net46" developmentDependency="true" />
<package id="Fody" version="1.29.3" targetFramework="net46" developmentDependency="true" />
<package id="Microsoft.AspNet.WebApi.Client" version="5.2.3" targetFramework="net46" />
<package id="Newtonsoft.Json" version="7.0.1" targetFramework="net46" />
</packages>

0 comments on commit 3457dd1

Please sign in to comment.