- update copyright and version numbers

master v4.3.1
Simon G. 1 year ago
parent 3f534a5eb8
commit b8541e3ae5
Signed by: SimonG
GPG Key ID: 0B82B964BA536523
  1. 4
      LightweightIocContainer.Validation/LightweightIocContainer.Validation.csproj
  2. 2
      LightweightIocContainer.Validation/README.md
  3. 4
      LightweightIocContainer/LightweightIocContainer.csproj
  4. 4
      README.md

@ -3,14 +3,14 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Authors>SimonG</Authors>
<Copyright>Copyright(c) 2022 SimonG. All Rights Reserved.</Copyright>
<Copyright>Copyright(c) 2024 SimonG. All Rights Reserved.</Copyright>
<Description>A lightweight IOC Container Validator.</Description>
<RepositoryUrl>https://github.com/SimonG96/LightweightIocContainer</RepositoryUrl>
<LangVersion>default</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<DocumentationFile>LightweightIocContainer.Validation.xml</DocumentationFile>
<VersionPrefix>4.3.0</VersionPrefix>
<VersionPrefix>4.3.1</VersionPrefix>
</PropertyGroup>
<PropertyGroup>

@ -5,7 +5,7 @@
The easiest way to [install](https://github.com/SimonG96/LghtweightIocContainer/wiki/Install-Lightweight-IOC-Container) the Lightweight IOC Container is by using [NuGet](https://www.nuget.org/packages/LightweightIocContainer.Validation/) through the [`.NET CLI`](https://github.com/SimonG96/LightweightIocContainer/wiki/Install-Lightweight-IOC-Container#net-cli):
```.net
> dotnet add package LightweightIocContainer.Validaton --version 4.3.0
> dotnet add package LightweightIocContainer.Validaton --version 4.3.1
```
### Validation

@ -3,14 +3,14 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Authors>SimonG</Authors>
<Copyright>Copyright(c) 2019 SimonG. All Rights Reserved.</Copyright>
<Copyright>Copyright(c) 2024 SimonG. All Rights Reserved.</Copyright>
<Description>A lightweight IOC Container that is powerful enough to do all the things you need it to do.</Description>
<RepositoryUrl>https://github.com/SimonG96/LightweightIocContainer</RepositoryUrl>
<LangVersion>default</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<DocumentationFile>LightweightIocContainer.xml</DocumentationFile>
<VersionPrefix>4.3.0</VersionPrefix>
<VersionPrefix>4.3.1</VersionPrefix>
</PropertyGroup>
<PropertyGroup>

@ -19,7 +19,7 @@ A lightweight IOC Container that is powerful enough to do all the things you nee
The easiest way to [install](https://github.com/SimonG96/LightweightIocContainer/wiki/Install-Lightweight-IOC-Container) the Lightweight IOC Container is by using [NuGet](https://www.nuget.org/packages/LightweightIocContainer/) through the [`.NET CLI`](https://github.com/SimonG96/LightweightIocContainer/wiki/Install-Lightweight-IOC-Container#net-cli):
```.net
> dotnet add package LightweightIocContainer --version 4.3.0
> dotnet add package LightweightIocContainer --version 4.3.1
```
### Example usage
@ -59,7 +59,7 @@ The easiest way to [install](https://github.com/SimonG96/LightweightIocContainer
There is the option to install the [LightweightIocContainer.Validation](https://www.nuget.org/packages/LightweightIocContainer.Validation/) package:
```.net
> dotnet add package LightweightIocContainer.Validaton --version 4.3.0
> dotnet add package LightweightIocContainer.Validaton --version 4.3.1
```
With this you can validate your `IocContainer` setup by using the `IocValidator` in a unit test:

Loading…
Cancel
Save