Skip to content

Commit dc1ba96

Browse files
committed
update packages and pack several targets
1 parent e4b1e5d commit dc1ba96

6 files changed

Lines changed: 12 additions & 10 deletions

File tree

samples/WorkerService/WorkerService.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Microsoft.Extensions.Hosting" Version="6.0.0" />
9+
<PackageReference Include="Microsoft.Extensions.Hosting" Version="6.0.1" />
1010
</ItemGroup>
1111

1212
<ItemGroup>

src/Directory.Packages.props

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
<Project>
22

3+
<PropertyGroup>
4+
<TargetFrameworks>netstandard2.1;netcoreapp3.1;net5;net6</TargetFrameworks>
5+
</PropertyGroup>
6+
37
<PropertyGroup>
48
<Authors>Alexander Salamatov</Authors>
59
<PackageProjectUrl>https://github.com/ch1seL/DistributedLock</PackageProjectUrl>

src/ch1seL.DistributedLock.Abstraction/ch1seL.DistributedLock.Abstraction.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2+
23

34
<PropertyGroup>
4-
<TargetFramework>netstandard2.1</TargetFramework>
55
<RootNamespace>Microsoft.Extensions.Caching.Distributed</RootNamespace>
66
</PropertyGroup>
77

src/ch1seL.DistributedLock.MemoryLock/ch1seL.DistributedLock.MemoryLock.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netstandard2.1</TargetFramework>
54
<RootNamespace>Microsoft.Extensions.Caching.Distributed</RootNamespace>
65
</PropertyGroup>
76

src/ch1seL.DistributedLock.RedisLock/ch1seL.DistributedLock.RedisLock.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netstandard2.1</TargetFramework>
54
<RootNamespace>Microsoft.Extensions.Caching</RootNamespace>
65
</PropertyGroup>
76

87
<ItemGroup>
9-
<PackageReference Include="RedLock.net" Version="2.3.1" />
8+
<PackageReference Include="RedLock.net" Version="2.3.2" />
109
</ItemGroup>
1110

1211
<ItemGroup>

tests/ch1seL.DistributedLock.Tests/ch1seL.DistributedLock.Tests.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="FluentAssertions" Version="6.2.0" />
10-
<PackageReference Include="JetBrains.DotMemoryUnit" Version="3.1.20200127.214830" />
9+
<PackageReference Include="FluentAssertions" Version="6.7.0" />
10+
<PackageReference Include="JetBrains.DotMemoryUnit" Version="3.2.20220510" />
1111
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
12-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
12+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" />
1313
<PackageReference Include="xunit" Version="2.4.1" />
14-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
14+
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
1515
<PrivateAssets>all</PrivateAssets>
1616
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1717
</PackageReference>
18-
<PackageReference Include="coverlet.collector" Version="3.1.0">
18+
<PackageReference Include="coverlet.collector" Version="3.1.2">
1919
<PrivateAssets>all</PrivateAssets>
2020
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2121
</PackageReference>

0 commit comments

Comments
 (0)