Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Package updates available for .NET 5 #95

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Accelist.FluentValidation.Blazor.sln
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29318.209
# Visual Studio Version 17
VisualStudioVersion = 17.2.32630.192
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Accelist.FluentValidation.Blazor", "FluentValidation.Blazor\Accelist.FluentValidation.Blazor.csproj", "{774DBB06-F9E7-495A-BE80-8BEE176B3194}"
EndProject
Expand Down
2 changes: 1 addition & 1 deletion Demo.Forms/Demo.Forms.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FluentValidation" Version="9.3.0" />
<PackageReference Include="FluentValidation" Version="11.1.0" />
</ItemGroup>

</Project>
10 changes: 5 additions & 5 deletions Demo/Demo.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FluentValidation" Version="9.3.0" />
<PackageReference Include="FluentValidation.DependencyInjectionExtensions" Version="9.3.0" />
<PackageReference Include="Serilog.AspNetCore" Version="3.4.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="3.1.1" />
<PackageReference Include="Serilog.Sinks.File" Version="4.1.0" />
<PackageReference Include="FluentValidation" Version="11.1.0" />
<PackageReference Include="FluentValidation.DependencyInjectionExtensions" Version="11.1.0" />
<PackageReference Include="Serilog.AspNetCore" Version="5.0.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="4.0.1" />
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,22 +25,23 @@ Validator parameter may also be passed directly to the component to inline the A
<RepositoryUrl>https://github.com/ryanelian/FluentValidation.Blazor</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>4.0.0</Version>
<Version>4.0.1</Version>
<PackageIcon>icon.png</PackageIcon>
<PackageReleaseNotes>
Version 4.0.0 BREAKING CHANGES:
- Package now targets .NET 5 project. If working with .NET Core 3.1 projects, use the version 3.0.0 package!
</PackageReleaseNotes>
<DebugType>embedded</DebugType>
</PropertyGroup>

<ItemGroup>
<None Include="img/icon.png" Pack="true" PackagePath="/" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="FluentValidation" Version="9.3.0" />
<PackageReference Include="Microsoft.AspNetCore.Components" Version="5.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.0.0" />
<PackageReference Include="FluentValidation" Version="11.1.0" />
<PackageReference Include="Microsoft.AspNetCore.Components" Version="5.0.17" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.0.17" />
</ItemGroup>

</Project>