Skip to content

Commit

Permalink
Updates to .Net5
Browse files Browse the repository at this point in the history
  • Loading branch information
jbomhold3 committed Nov 22, 2020
1 parent b05ed41 commit dfd2afe
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFrameworks>netstandard2.0;net5.0</TargetFrameworks>
<RazorLangVersion>3.0</RazorLangVersion>
<PackageId>BlazorStrap.Extensions.BSDataTable</PackageId>
<Version>1.5.0-preview-01</Version>
<Version>1.5.0-preview-02</Version>
<Authors>Chanan Braunstein; John Bomhold, Harold Collins</Authors>
<Title>Blazor BootStrap Extensions BSDataTable</Title>
<Description>A Datatable library for blazorstrap</Description>
Expand All @@ -15,8 +15,8 @@


<ItemGroup Condition=" '$(TargetFramework)' == 'net5.0' ">
<PackageReference Include="Microsoft.AspNetCore.Components" Version="5.0.0-rc.2.*" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.0.0-rc.2.*" />
<PackageReference Include="Microsoft.AspNetCore.Components" Version="5.*" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.*" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<PackageReference Include="Microsoft.AspNetCore.Components" Version="3.1.4" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<RazorLangVersion>3.0</RazorLangVersion>
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
<PackageId>BlazorStrap.Extensions.FluentValidation</PackageId>
<Version>1.5.0-preview-01</Version>
<Version>1.5.0-preview-02</Version>
<Authors>Chanan Braunstein; John Bomhold</Authors>
<Title>Blazor BootStrap Extensions FluentValidation</Title>
<Description>A FluentValidation component library for BlazorStrap</Description>
Expand All @@ -20,7 +20,7 @@
</PropertyGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net5.0' ">
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.0.0-rc.2.*" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.*" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="3.1.4" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<TargetFrameworks>netstandard2.0;net5.0</TargetFrameworks>
<RazorLangVersion>3.0</RazorLangVersion>
<PackageId>BlazorStrap.Extensions.SVGLoader</PackageId>
<Version>1.5.0-preview-01</Version>
<Version>1.5.0-preview-02</Version>
<Authors>Chanan Braunstein; John Bomhold, Harold Collins</Authors>
<Title>Blazor BootStrap Extensions SVGLoader</Title>
<Description>A SVGLoader library for blazorstrap</Description>
Expand All @@ -14,8 +14,8 @@


<ItemGroup Condition=" '$(TargetFramework)' == 'net5.0' ">
<PackageReference Include="Microsoft.AspNetCore.Components" Version="5.0.0-rc.2.*" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.0.0-rc.2.*" />
<PackageReference Include="Microsoft.AspNetCore.Components" Version="5.*" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.*" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<PackageReference Include="Microsoft.AspNetCore.Components" Version="3.1.4" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFrameworks>netstandard2.0;net5.0</TargetFrameworks>
<RazorLangVersion>3.0</RazorLangVersion>
<PackageId>BlazorStrap.Extensions.TreeView</PackageId>
<Version>1.5.0-preview-01</Version>
<Version>1.5.0-preview-02</Version>
<Authors>Chanan Braunstein; John Bomhold</Authors>
<Title>Blazor BootStrap Extensions TreeView</Title>
<Description>A treeview component library for BlazorStrap</Description>
Expand All @@ -16,8 +16,8 @@


<ItemGroup Condition=" '$(TargetFramework)' == 'net5.0' ">
<PackageReference Include="Microsoft.AspNetCore.Components" Version="5.0.0-rc.2.*" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.0.0-rc.2.*" />
<PackageReference Include="Microsoft.AspNetCore.Components" Version="5.*" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.*" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<PackageReference Include="Microsoft.AspNetCore.Components" Version="3.1.4" />
Expand Down
4 changes: 2 additions & 2 deletions src/BlazorStrap/BlazorStrap.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<RazorLangVersion>3.0</RazorLangVersion>
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
<PackageId>BlazorStrap</PackageId>
<Version>1.5.0-preview-01</Version>
<Version>1.5.0-preview-02</Version>
<Authors>Chanan Braunstein; John Bomhold</Authors>
<Title>Blazor BootStrap</Title>
<Description>A bootstrap4 component library for Blazor</Description>
Expand All @@ -18,7 +18,7 @@
</PropertyGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net5.0' ">
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.0.0-preview.9.*" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.*" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="3.1.4" />
Expand Down
6 changes: 3 additions & 3 deletions src/Sample/ClientSideSample.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="5.0.0-rc.2.*" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.0.0-rc.2.*" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="5.0.0-rc.2.*" PrivateAssets="all" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="5.*" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.*" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="5.*" PrivateAssets="all" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/SampleCore/SampleCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net5.0' ">
<PackageReference Include="Microsoft.AspNetCore.Components" Version="5.0.0-rc.2.*" />
<PackageReference Include="Microsoft.AspNetCore.Components" Version="5.*" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<PackageReference Include="Microsoft.AspNetCore.Components" Version="3.1.4" />
Expand Down

0 comments on commit dfd2afe

Please sign in to comment.