Skip to content

Commit

Permalink
Merge pull request #21 from pfpack/release/v2.0.0-rc.1.0.0
Browse files Browse the repository at this point in the history
release/v2.0.0-rc.1.0.0
  • Loading branch information
pmosk committed Feb 7, 2022
2 parents 9dfb082 + b7129ef commit 3b9927a
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 22 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
include-prerelease: true
include-prerelease: false

- name: Create Local NuGet Directory
run: mkdir ~/nuget
Expand All @@ -38,13 +38,13 @@ jobs:

- name: Pack DependencyRegistry
run: dotnet pack ./src/*/*/DependencyRegistry.csproj --no-restore -o ~/nuget -c Release

- name: Restore DependencyRegistry.Tests
run: dotnet restore ./src/*/*/DependencyRegistry.Tests.csproj

- name: Test DependencyRegistry.Tests
run: dotnet test ./src/*/*/DependencyRegistry.Tests.csproj --no-restore -c Release

- name: Push Packages
if: ${{ github.event_name == 'release' }}
run: dotnet nuget push "../../../nuget/*.nupkg" -s https://api.nuget.org/v3/index.json -k ${{ secrets.NuGetSourcePassword }} --skip-duplicate
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2020-2021 Andrei Sergeev, Pavel Moskovoy
Copyright (c) 2020-2022 Andrei Sergeev, Pavel Moskovoy

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="3.1.0">
<PackageReference Include="coverlet.collector" Version="3.1.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#nullable enable

using Microsoft.Extensions.DependencyInjection;
using System;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#nullable enable

using Microsoft.Extensions.DependencyInjection;

namespace PrimeFuncPack
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#nullable enable

using Microsoft.Extensions.DependencyInjection;

namespace PrimeFuncPack
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#nullable enable

using Microsoft.Extensions.DependencyInjection;

namespace PrimeFuncPack
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#nullable enable

using Microsoft.Extensions.DependencyInjection;
using System;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#nullable enable

using Microsoft.Extensions.DependencyInjection;
using System;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<InvariantGlobalization>true</InvariantGlobalization>
Expand All @@ -13,11 +13,11 @@
<RepositoryUrl>https://github.com/pfpack/pfpack-dependency-registry</RepositoryUrl>
<Company>pfpack</Company>
<Authors>Andrei Sergeev, Pavel Moskovoy</Authors>
<Copyright>Copyright © 2020-2021 Andrei Sergeev, Pavel Moskovoy</Copyright>
<Copyright>Copyright © 2020-2022 Andrei Sergeev, Pavel Moskovoy</Copyright>
<Description>PrimeFuncPack Dependency Registry is a library for .NET providing the dependency registrar targeted to both usual services and dependency trees built by PrimeFuncPack Dependency to register the dependencies in the .NET dependency injection mechanism.</Description>
<RootNamespace>PrimeFuncPack</RootNamespace>
<AssemblyName>PrimeFuncPack.DependencyRegistry</AssemblyName>
<Version>1.3.0-preview.1.0.0</Version>
<Version>2.0.0-rc.1.0.0</Version>
</PropertyGroup>

<ItemGroup>
Expand All @@ -32,8 +32,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="5.0.0" />
<PackageReference Include="PrimeFuncPack.Dependency.Core" Version="1.2.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="6.0.0" />
<PackageReference Include="PrimeFuncPack.Dependency.Core" Version="2.0.1" />
</ItemGroup>

</Project>

0 comments on commit 3b9927a

Please sign in to comment.