Skip to content

Commit

Permalink
Updated packages. (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
mgernand authored Apr 20, 2022
1 parent aba289a commit 6b3caa3
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 18 deletions.
1 change: 0 additions & 1 deletion Fluxera.ValueObject.sln
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".items", ".items", "{75AC41
.gitignore = .gitignore
azure-pipelines.yml = azure-pipelines.yml
GitVersion.yml = GitVersion.yml
global.json = global.json
icon.png = icon.png
LICENSE = LICENSE
README.md = README.md
Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ trigger:

variables:
BuildConfiguration: Release
DotNetCoreVersion: 6.0.201
DotNetCoreVersion: 6.0.x

stages:
- stage: BuildAndTest
Expand Down
5 changes: 0 additions & 5 deletions global.json

This file was deleted.

4 changes: 2 additions & 2 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<Nullable>disable</Nullable>
<ImplicitUsings>disable</ImplicitUsings>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
Expand All @@ -11,7 +11,7 @@
<PropertyGroup>
<Company>Fluxera Software Development GmbH</Company>
<Product>Fluxera Software Foundation</Product>
<Copyright>Copyright © 2014-2021 Fluxera Software Development GmbH. All rights reserved.</Copyright>
<Copyright>Copyright © 2014-2022 Fluxera Software Development GmbH. All rights reserved.</Copyright>
</PropertyGroup>

<PropertyGroup>
Expand Down
8 changes: 4 additions & 4 deletions src/Fluxera.ValueObject/Fluxera.ValueObject.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Fluxera.Guards" Version="6.0.11" />
<PackageReference Include="Fluxera.Utilities" Version="6.0.12" />
<PackageReference Include="GitVersion.MsBuild" Version="5.9.0">
<PackageReference Include="Fluxera.Guards" Version="6.0.13" />
<PackageReference Include="Fluxera.Utilities" Version="6.0.14" />
<PackageReference Include="GitVersion.MsBuild" Version="5.10.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="JetBrains.Annotations" Version="2021.3.0" />
<PackageReference Include="JetBrains.Annotations" Version="2022.1.0" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion src/Fluxera.ValueObject/PrimitiveValueObject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public abstract class PrimitiveValueObject<TValueObject, TValue> : ValueObject<T
static PrimitiveValueObject()
{
Type valueType = typeof(TValue);
bool isPrimitive = valueType.IsPrimitive(true, true);
bool isPrimitive = valueType.IsPrimitive(true);

Guard.Against.False(isPrimitive, nameof(Value), "The value of a primitive value object must be a primitive, string or enum value.");
}
Expand Down
4 changes: 2 additions & 2 deletions tests/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<Nullable>disable</Nullable>
<ImplicitUsings>disable</ImplicitUsings>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
Expand All @@ -11,7 +11,7 @@
<PropertyGroup>
<Company>Fluxera Software Development GmbH</Company>
<Product>Fluxera Software Foundation</Product>
<Copyright>Copyright © 2014-2021 Fluxera Software Development GmbH. All rights reserved.</Copyright>
<Copyright>Copyright © 2014-2022 Fluxera Software Development GmbH. All rights reserved.</Copyright>
</PropertyGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="FluentAssertions" Version="6.5.1" />
<PackageReference Include="Fluxera.Guards" Version="6.0.11" />
<PackageReference Include="FluentAssertions" Version="6.6.0" />
<PackageReference Include="Fluxera.Guards" Version="6.0.13" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1" />
Expand Down

0 comments on commit 6b3caa3

Please sign in to comment.