Skip to content

Commit

Permalink
Fixed issue related to a reference to an incorrect package.
Browse files Browse the repository at this point in the history
  • Loading branch information
Federico Artioli committed Oct 21, 2024
1 parent 9085094 commit a89d4aa
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion MetasysServices/MetasysServices.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
<ItemGroup>
<PackageReference Include="3v.EvtSource" Version="2.0.0" />
<PackageReference Include="CredentialManagement.Standard" Version="1.0.4" />
<PackageReference Include="Flurl" Version="4.0.0" />
<PackageReference Include="Flurl" Version="2.8.2" />
<PackageReference Include="Flurl.Http" Version="2.4.2" />
<PackageReference Include="log4net" Version="3.0.1" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.1.2" />
Expand Down
4 changes: 2 additions & 2 deletions MetasysServicesCom.Tests/MetasysServicesCom.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@
<Reference Include="Castle.Core, Version=5.0.0.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc, processorArchitecture=MSIL">
<HintPath>..\packages\Castle.Core.5.1.1\lib\net462\Castle.Core.dll</HintPath>
</Reference>
<Reference Include="Flurl, Version=4.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Flurl.4.0.0\lib\net472\Flurl.dll</HintPath>
<Reference Include="Flurl, Version=2.8.2.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Flurl.2.8.2\lib\net40\Flurl.dll</HintPath>
</Reference>
<Reference Include="Flurl.Http, Version=2.4.2.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Flurl.Http.2.4.2\lib\net46\Flurl.Http.dll</HintPath>
Expand Down
2 changes: 1 addition & 1 deletion MetasysServicesCom.Tests/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<packages>
<package id="AutoMapper" version="10.1.1" targetFramework="net472" />
<package id="Castle.Core" version="5.1.1" targetFramework="net472" />
<package id="Flurl" version="4.0.0" targetFramework="net472" />
<package id="Flurl" version="2.8.2" targetFramework="net472" />
<package id="Flurl.Http" version="2.4.2" targetFramework="net472" />
<package id="log4net" version="3.0.1" targetFramework="net472" />
<package id="Microsoft.ApplicationInsights" version="2.22.0" targetFramework="net472" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Flurl, Version=4.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Flurl.4.0.0\lib\net472\Flurl.dll</HintPath>
<Reference Include="Flurl, Version=2.8.2.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Flurl.2.8.2\lib\net40\Flurl.dll</HintPath>
</Reference>
<Reference Include="Flurl.Http, Version=2.4.2.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Flurl.Http.2.4.2\lib\net46\Flurl.Http.dll</HintPath>
Expand Down
2 changes: 1 addition & 1 deletion MetasysServicesComExampleApp/packages.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Flurl" version="4.0.0" targetFramework="net472" />
<package id="Flurl" version="2.8.2" targetFramework="net472" />
<package id="Flurl.Http" version="2.4.2" targetFramework="net472" />
<package id="log4net" version="3.0.1" targetFramework="net472" />
<package id="Newtonsoft.Json" version="13.0.3" targetFramework="net472" />
Expand Down
4 changes: 2 additions & 2 deletions TestClient/TestClient.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
<Reference Include="EvtSource, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\3v.EvtSource.2.0.0\lib\netstandard2.0\EvtSource.dll</HintPath>
</Reference>
<Reference Include="Flurl, Version=4.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Flurl.4.0.0\lib\net472\Flurl.dll</HintPath>
<Reference Include="Flurl, Version=2.8.2.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Flurl.2.8.2\lib\net40\Flurl.dll</HintPath>
</Reference>
<Reference Include="Flurl.Http, Version=2.4.2.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Flurl.Http.2.4.2\lib\net46\Flurl.Http.dll</HintPath>
Expand Down
2 changes: 1 addition & 1 deletion TestClient/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<packages>
<package id="3v.EvtSource" version="2.0.0" targetFramework="net472" />
<package id="CredentialManagement.Standard" version="1.0.4" targetFramework="net472" />
<package id="Flurl" version="4.0.0" targetFramework="net472" />
<package id="Flurl" version="2.8.2" targetFramework="net472" />
<package id="Flurl.Http" version="2.4.2" targetFramework="net472" />
<package id="log4net" version="3.0.1" targetFramework="net472" />
<package id="Microsoft.Bcl.AsyncInterfaces" version="8.0.0" targetFramework="net472" />
Expand Down

0 comments on commit a89d4aa

Please sign in to comment.