Skip to content

Commit

Permalink
Cleaned up dependency references
Browse files Browse the repository at this point in the history
Signed-off-by: Christiaan Rakowski <[email protected]>
  • Loading branch information
csrakowski committed Dec 29, 2022
1 parent c0ddfdd commit efda616
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<Authors>Christiaan Rakowski</Authors>
<Copyright>Christiaan Rakowski - 2017-2023</Copyright>
<Version>1.7.0</Version>
<Version>1.7.1</Version>
<LangVersion>latest</LangVersion>
</PropertyGroup>

Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ await foreach (var result in resultStream)

# Release notes

### 1.7.1
* Updated to latest `CSRakowski.AsyncStreamsPreparations`, which uses `Microsoft.Bcl.AsyncInterfaces` (correctly...).

### 1.7.0
* Updated to latest `CSRakowski.AsyncStreamsPreparations`, which uses `Microsoft.Bcl.AsyncInterfaces`.

Expand Down
10 changes: 7 additions & 3 deletions src/CSRakowski.Parallel/CSRakowski.Parallel.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<PackageTags>Parallel, Async, Batching</PackageTags>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>CSRakowski.Parallel.snk</AssemblyOriginatorKeyFile>
<PackageReleaseNotes>* Updated to latest `CSRakowski.AsyncStreamsPreparations`, which uses `Microsoft.Bcl.AsyncInterfaces`.
<PackageReleaseNotes>* Updated to latest `CSRakowski.AsyncStreamsPreparations`, which uses `Microsoft.Bcl.AsyncInterfaces` (correctly...).
</PackageReleaseNotes>
<RootNamespace>CSRakowski.Parallel</RootNamespace>
<AssemblyName>CSRakowski.Parallel</AssemblyName>
Expand All @@ -25,8 +25,12 @@
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\CSRakowski.Parallel.xml</DocumentationFile>
</PropertyGroup>

<ItemGroup Condition="! ( '$(TargetFramework)' == 'net60' or '$(TargetFramework)' == 'net50' or '$(TargetFramework)' == 'netcoreapp3.1' or '$(TargetFramework)' == 'netstandard2.1' )">
<PackageReference Include="CSRakowski.AsyncStreamsPreparations" Version="1.5.0" />
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0' or '$(TargetFramework)' == 'net472'">
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="5.0.0" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net452' or '$(TargetFramework)' == 'netstandard1.1'">
<PackageReference Include="CSRakowski.AsyncStreamsPreparations" Version="1.5.1" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.13.3" />
<PackageReference Include="CSRakowski.AsyncStreamsPreparations" Version="1.5.0" />
<PackageReference Include="CSRakowski.AsyncStreamsPreparations" Version="1.5.1" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFrameworkIdentifier)' == '.NETFramework' ">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.1" />
<PackageReference Include="CSRakowski.AsyncStreamsPreparations" Version="1.5.0" />
<PackageReference Include="CSRakowski.AsyncStreamsPreparations" Version="1.5.1" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\src\CSRakowski.Parallel\CSRakowski.Parallel.csproj" />
</ItemGroup>
Expand Down
4 changes: 4 additions & 0 deletions tests/Profiling/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Microsoft.Bcl.AsyncInterfaces" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-7.0.0.0" newVersion="7.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
4 changes: 2 additions & 2 deletions tests/Profiling/Profiling.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="CSRakowski.AsyncStreamsPreparations, Version=1.5.0.0, Culture=neutral, PublicKeyToken=bcc9b3c2aebe1db5, processorArchitecture=MSIL">
<HintPath>..\..\packages\CSRakowski.AsyncStreamsPreparations.1.5.0\lib\netstandard2.0\CSRakowski.AsyncStreamsPreparations.dll</HintPath>
<Reference Include="CSRakowski.AsyncStreamsPreparations, Version=1.5.1.0, Culture=neutral, PublicKeyToken=bcc9b3c2aebe1db5, processorArchitecture=MSIL">
<HintPath>..\..\packages\CSRakowski.AsyncStreamsPreparations.1.5.1\lib\netstandard2.0\CSRakowski.AsyncStreamsPreparations.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Bcl.AsyncInterfaces, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>..\..\packages\Microsoft.Bcl.AsyncInterfaces.7.0.0\lib\net462\Microsoft.Bcl.AsyncInterfaces.dll</HintPath>
Expand Down
2 changes: 1 addition & 1 deletion tests/Profiling/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="CSRakowski.AsyncStreamsPreparations" version="1.5.0" targetFramework="net48" />
<package id="CSRakowski.AsyncStreamsPreparations" version="1.5.1" targetFramework="net48" />
<package id="Microsoft.Bcl.AsyncInterfaces" version="7.0.0" targetFramework="net48" />
<package id="System.Runtime.CompilerServices.Unsafe" version="6.0.0" targetFramework="net48" />
<package id="System.Threading.Tasks.Extensions" version="4.5.4" targetFramework="net48" />
Expand Down

0 comments on commit efda616

Please sign in to comment.