Skip to content

Commit

Permalink
Benchmark: Fixes file not found from missing assembly CommandLinePars…
Browse files Browse the repository at this point in the history
…er (#2989)

CopyLocalLockFileAssemblies causes the .NET 6 project to fail at runtime. It throws a FileNotFoundException for the CommandLineParser assembly. Bumping the dependency to the latest version.
  • Loading branch information
j82w committed Jan 20, 2022
1 parent 85afdec commit 3e9bab6
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>CosmosBenchmark</RootNamespace>
<AssemblyName>CosmosBenchmark</AssemblyName>
<ServerGarbageCollection>true</ServerGarbageCollection>
<Optimize Condition="'$(Configuration)'=='Release'">true</Optimize>
<CopyLocalLockFileAssemblies>false</CopyLocalLockFileAssemblies>
<LangVersion>$(LangVersion)</LangVersion>
</PropertyGroup>
<ItemGroup>
Expand All @@ -18,8 +17,8 @@
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.5.0" />
<PackageReference Include="MathNet.Numerics" Version="4.12.0" />
<PackageReference Include="CommandLineParser" Version="2.8.0" />
<PackageReference Include="MathNet.Numerics" Version="4.15.0" />
<PackageReference Include="Microsoft.Azure.DocumentDB.Core" Version="*" />
</ItemGroup>

Expand Down

0 comments on commit 3e9bab6

Please sign in to comment.