Skip to content

Commit

Permalink
close #246 - update downstream NuGet dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaronontheweb committed Jul 14, 2018
1 parent 95d3036 commit cb5aea0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 10 deletions.
14 changes: 7 additions & 7 deletions src/NBench/NBench.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@
</PropertyGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.6' ">
<PackageReference Include="System.Diagnostics.Contracts" Version="4.0.1" />
<PackageReference Include="System.Diagnostics.Process" Version="4.1.0" />
<PackageReference Include="System.Reflection.TypeExtensions" Version="4.1.0" />
<PackageReference Include="System.Runtime.Loader" Version="4.0.0" />
<PackageReference Include="System.Threading.Thread" Version="4.0.0" />
<PackageReference Include="Microsoft.Extensions.PlatformAbstractions" Version="1.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="1.1.0" />
<PackageReference Include="System.Diagnostics.Contracts" Version="4.3.0" />
<PackageReference Include="System.Diagnostics.Process" Version="4.3.0" />
<PackageReference Include="System.Reflection.TypeExtensions" Version="4.3.0" />
<PackageReference Include="System.Runtime.Loader" Version="4.3.0" />
<PackageReference Include="System.Threading.Thread" Version="4.3.0" />
<PackageReference Include="Microsoft.Extensions.PlatformAbstractions" Version="1.1.0" />
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="2.1.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ public NetCoreAssemblyRuntimeLoader(Assembly assembly, IBenchmarkOutput trace)
_resolver = new CompositeCompilationAssemblyResolver(new ICompilationAssemblyResolver[]{
new AppBaseCompilationAssemblyResolver(Path.GetDirectoryName(Assembly.CodeBase)),
new ReferenceAssemblyPathResolver(),
new PackageCacheCompilationAssemblyResolver(),
new PackageCompilationAssemblyResolver()});

_loadContext.Resolving += LoadContextOnResolving;
Expand All @@ -66,7 +65,6 @@ public NetCoreAssemblyRuntimeLoader(string path, IBenchmarkOutput trace)
_resolver = new CompositeCompilationAssemblyResolver(new ICompilationAssemblyResolver[]{
new AppBaseCompilationAssemblyResolver(Path.GetDirectoryName(path)),
new ReferenceAssemblyPathResolver(),
new PackageCacheCompilationAssemblyResolver(),
new PackageCompilationAssemblyResolver()});

_loadContext.Resolving += LoadContextOnResolving;
Expand Down
2 changes: 1 addition & 1 deletion src/common.props
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
https://github.com/petabridge/NBench/blob/dev/LICENSE
</PackageLicenseUrl>
<PackageTags>performance;benchmarking;benchmark;perf;testing;NBench</PackageTags>
<NoWarn>$(NoWarn);CS1591;NU1605</NoWarn>
<NoWarn>$(NoWarn);CS1591;</NoWarn>
<PackageIconUrl>https://github.com/petabridge/NBench/raw/dev/images/NBench_logo_square_140.png</PackageIconUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/petabridge/NBench</RepositoryUrl>
Expand Down

0 comments on commit cb5aea0

Please # to comment.