Skip to content

Commit

Permalink
Merge pull request #54 from pfpack/release/v2.0.1-rc.1.0.0
Browse files Browse the repository at this point in the history
release/v2.0.1-rc.1.0.0
  • Loading branch information
pmosk authored Jan 31, 2022
2 parents 01e8550 + 9d79918 commit 16a6763
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 18 deletions.
20 changes: 15 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
##
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore

# User-specific files
*.rsuser
Expand Down Expand Up @@ -206,9 +206,6 @@ PublishScripts/
*.nuget.props
*.nuget.targets

# Nuget personal access tokens and Credentials
# nuget.config

# Microsoft Azure Build Output
csx/
*.build.csdef
Expand Down Expand Up @@ -297,6 +294,17 @@ node_modules/
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
*.vbw

# Visual Studio 6 auto-generated project file (contains which files were open etc.)
*.vbp

# Visual Studio 6 workspace and project file (working project files containing files to include in project)
*.dsw
*.dsp

# Visual Studio 6 technical files
*.ncb
*.aps

# Visual Studio LightSwitch build output
**/*.HTMLClient/GeneratedArtifacts
**/*.DesktopClient/GeneratedArtifacts
Expand Down Expand Up @@ -353,6 +361,9 @@ ASALocalRun/
# Local History for Visual Studio
.localhistory/

# Visual Studio History (VSHistory) files
.vshistory/

# BeatPulse healthcheck temp database
healthchecksdb

Expand Down Expand Up @@ -384,5 +395,4 @@ FodyWeavers.xsd
*.msp

# JetBrains Rider
.idea/
*.sln.iml
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
6 changes: 3 additions & 3 deletions src/dependency-core/Core/Dependency.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
<RepositoryUrl>https://github.com/pfpack/pfpack-dependency</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.Core is a core library for .NET providing a functional programming based technology to build consistent dependency trees validated in the compile time.</Description>
<RootNamespace>PrimeFuncPack</RootNamespace>
<AssemblyName>PrimeFuncPack.Dependency.Core</AssemblyName>
<Version>2.0.0</Version>
<Version>2.0.1-rc.1.0.0</Version>
</PropertyGroup>

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

<ItemGroup>
<PackageReference Include="PrimeFuncPack.Core.Unit" Version="2.1.0" />
<PackageReference Include="PrimeFuncPack.Core.Unit" Version="2.1.2" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ private static Optional<T> InnerGetServiceOrAbsent<T>(IServiceProvider servicePr
var service = serviceProvider.GetService(typeof(T));

return service is not null
? Optional<T>.Present((T)service)
? new((T)service)
: default;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
<RepositoryUrl>https://github.com/pfpack/pfpack-dependency</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.ServiceProviderExtensions is a library for .NET providing useful extensions for the service provider.</Description>
<RootNamespace>PrimeFuncPack</RootNamespace>
<AssemblyName>PrimeFuncPack.Dependency.ServiceProviderExtensions</AssemblyName>
<Version>2.0.0-rc.1.0.0</Version>
<Version>2.0.1-rc.1.0.0</Version>
</PropertyGroup>

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

<ItemGroup>
<PackageReference Include="PrimeFuncPack.Core.Optional" Version="1.1.1" />
<PackageReference Include="PrimeFuncPack.Core.Optional" Version="2.0.0" />
</ItemGroup>

</Project>
</Project>
8 changes: 4 additions & 4 deletions src/dependency/Dependency/Dependency.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
<RepositoryUrl>https://github.com/pfpack/pfpack-dependency</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 is a framework for .NET providing a functional programming based technology to build consistent dependency trees validated in the compile time.</Description>
<RootNamespace>PrimeFuncPack</RootNamespace>
<AssemblyName>PrimeFuncPack.Dependency</AssemblyName>
<Version>2.0.0-rc.1.3.0</Version>
<Version>2.0.1-rc.1.0.0</Version>
</PropertyGroup>

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

<ItemGroup>
<PackageReference Include="PrimeFuncPack.Dependency.Core" Version="2.0.0" />
<PackageReference Include="PrimeFuncPack.Dependency.ServiceProviderExtensions" Version="2.0.0-rc.1.0.0" />
<PackageReference Include="PrimeFuncPack.Dependency.Core" Version="2.0.1-rc.1.0.0" />
<PackageReference Include="PrimeFuncPack.Dependency.ServiceProviderExtensions" Version="2.0.1-rc.1.0.0" />
</ItemGroup>

</Project>

0 comments on commit 16a6763

Please sign in to comment.